/* ============================================================
   GAZE INSTITUTE — hoja de estilos principal
   Paleta: azul institucional claro sobre marfil, acento navy y oro
   ============================================================ */

@font-face {
	font-family: 'Fraunces';
	src: url('../assets/fonts/fraunces-var.woff2') format('woff2-variations');
	font-weight: 300 800;
	font-display: swap;
}
@font-face {
	font-family: 'Inter';
	src: url('../assets/fonts/inter-var.woff2') format('woff2-variations');
	font-weight: 100 900;
	font-display: swap;
}

:root {
	--blue: #2E6BE6;          /* azul principal, más claro y luminoso */
	--blue-dark: #1F4FBF;
	--blue-soft: #7FA8F2;
	--blue-ice: #EAF1FE;
	--navy: #0A1E3F;
	--navy-2: #102B57;
	--ink: #14213A;
	--muted: #5B6B85;
	--line: #DCE5F5;
	--bg: #FBFCFE;
	--white: #FFFFFF;
	--gold: #C9A86A;
	--gold-soft: #F4EBDB;
	--radius: 18px;
	--radius-sm: 12px;
	--shadow: 0 10px 34px rgba(16, 43, 87, .10);
	--shadow-lg: 0 24px 60px rgba(16, 43, 87, .16);
	--font-display: 'Fraunces', Georgia, serif;
	--font-body: 'Inter', -apple-system, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.65;
	color: var(--ink);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.14; color: var(--ink); letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.25rem; }
h1 em, h2 em { font-style: italic; color: var(--blue); }

.gz-container { width: min(1180px, 92vw); margin-inline: auto; }
.gz-container--narrow { width: min(820px, 92vw); }

/* ============ Botones ============ */
.gz-btn {
	display: inline-block;
	padding: 12px 26px;
	border-radius: 999px;
	font-weight: 600;
	font-size: .98rem;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
	text-align: center;
}
.gz-btn:hover { transform: translateY(-2px); }
.gz-btn--lg { padding: 15px 34px; font-size: 1.05rem; }
.gz-btn--primary { background: var(--blue); color: #fff; box-shadow: 0 8px 22px rgba(46, 107, 230, .35); }
.gz-btn--primary:hover { background: var(--blue-dark); color: #fff; }
.gz-btn--ghost { border-color: rgba(255, 255, 255, .55); color: #fff; }
.gz-btn--ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.gz-btn--light { background: #fff; color: var(--navy); }
.gz-btn--light:hover { color: var(--blue); }
.gz-btn--outline { border-color: var(--blue); color: var(--blue); }
.gz-btn--outline:hover { background: var(--blue); color: #fff; }
.gz-btn--gold { background: var(--gold); color: var(--navy); }
.gz-btn--gold:hover { background: #B89555; color: var(--navy); }
.gz-btn--text { border: 0; padding: 12px 6px; color: var(--blue); font-weight: 600; }

/* ============ Header ============ */
.gz-header {
	position: sticky; top: 0; z-index: 60;
	background: rgba(251, 252, 254, .92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--line);
}
.gz-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 0; }
.gz-logo { height: 42px; width: auto; }
.gz-logo--footer { height: 40px; filter: brightness(0) invert(1); opacity: .95; }
.gz-nav { display: flex; align-items: center; gap: 26px; }
.gz-nav__list { display: flex; list-style: none; gap: 26px; }
.gz-nav__list a { color: var(--ink); font-weight: 500; font-size: .97rem; }
.gz-nav__list a:hover { color: var(--blue); }
.gz-nav__cta { white-space: nowrap; }
.gz-burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.gz-burger span { display: block; width: 24px; height: 2.4px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .2s; }

/* ============ Hero ============ */
.gz-hero {
	background:
		radial-gradient(1100px 520px at 82% -10%, rgba(127, 168, 242, .34), transparent 60%),
		radial-gradient(720px 460px at -10% 110%, rgba(46, 107, 230, .28), transparent 55%),
		linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 58%, #16386E 100%);
	color: #fff;
	overflow: hidden;
}
.gz-hero__inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; padding: 84px 0 92px; }
.gz-hero h1 { color: #fff; }
.gz-hero h1 em { color: var(--blue-soft); }
.gz-hero__sub { margin: 22px 0 30px; font-size: 1.13rem; color: rgba(255, 255, 255, .82); max-width: 54ch; }
.gz-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.gz-hero__chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; padding: 0; }
.gz-hero__chips li {
	font-size: .86rem; font-weight: 500;
	padding: 7px 14px; border-radius: 999px;
	background: rgba(255, 255, 255, .10);
	border: 1px solid rgba(255, 255, 255, .18);
	color: rgba(255, 255, 255, .92);
}
.gz-hero__media { position: relative; justify-self: center; }
.gz-hero__frame {
	width: min(400px, 78vw);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	border: 1px solid rgba(255, 255, 255, .22);
	background: linear-gradient(180deg, rgba(127,168,242,.25), rgba(16,43,87,.4));
}
.gz-hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.gz-hero__card {
	position: absolute; left: -18px; bottom: 26px;
	background: #fff; color: var(--ink);
	padding: 14px 20px; border-radius: 14px;
	box-shadow: var(--shadow-lg);
	display: flex; flex-direction: column; gap: 2px;
}
.gz-hero__card strong { font-family: var(--font-display); font-size: 1.05rem; }
.gz-hero__card span { font-size: .82rem; color: var(--muted); }

.gz-kicker {
	display: inline-flex; align-items: center; gap: 10px;
	text-transform: uppercase; letter-spacing: .16em;
	font-size: .78rem; font-weight: 700; color: var(--blue);
	margin-bottom: 14px;
}
.gz-kicker--light { color: var(--blue-soft); }
.gz-kicker--gold { color: var(--gold); }
.gz-eye { width: 30px; height: auto; }

/* ============ Trust bar ============ */
.gz-trust { background: var(--white); border-bottom: 1px solid var(--line); }
.gz-trust__inner { display: flex; align-items: center; gap: 26px; padding: 18px 0; flex-wrap: wrap; }
.gz-trust__inner > span { font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); font-weight: 600; }
.gz-trust__items { display: flex; gap: 26px; flex-wrap: wrap; }
.gz-trust__item { font-family: var(--font-display); font-size: 1rem; color: var(--navy-2); font-weight: 500; }

/* ============ Secciones ============ */
.gz-section { padding: 84px 0; }
.gz-section--alt { background: var(--blue-ice); }
.gz-section__head { max-width: 720px; margin-bottom: 46px; }
.gz-section__head p:not(.gz-kicker) { color: var(--muted); margin-top: 12px; font-size: 1.06rem; }
.gz-section__head--light h2, .gz-section__head--light p:not(.gz-kicker) { color: #fff; }
.gz-section__head--light p:not(.gz-kicker) { color: rgba(255,255,255,.75); }
.gz-section__more { margin-top: 42px; text-align: center; }

.gz-grid { display: grid; gap: 26px; }
.gz-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ============ Cards ============ */
.gz-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform .18s ease, box-shadow .18s ease;
}
.gz-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.gz-card__link { display: flex; flex-direction: column; height: 100%; color: inherit; }
.gz-card__media { position: relative; aspect-ratio: 3 / 2; background: linear-gradient(140deg, var(--blue-ice), #D5E3FB); overflow: hidden; }
.gz-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gz-card:hover .gz-card__media img { transform: scale(1.045); }
.gz-card__placeholder { display: grid; place-items: center; height: 100%; color: var(--blue-soft); }
.gz-card__placeholder .gz-eye { width: 64px; }
.gz-badge--tag {
	position: absolute; top: 14px; left: 14px;
	background: var(--navy); color: #fff;
	font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
	padding: 6px 12px; border-radius: 999px;
}
.gz-card__body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.gz-card__meta { display: flex; gap: 14px; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--blue); font-weight: 700; }
.gz-card__meta--light { color: var(--blue-soft); justify-content: center; }
.gz-card__title { font-size: 1.22rem; }
.gz-card__excerpt { color: var(--muted); font-size: .95rem; }
.gz-card__foot { margin-top: auto; padding-top: 14px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 14px; border-top: 1px dashed var(--line); }
.gz-price { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--navy); }
.gz-installments { font-size: .84rem; color: var(--muted); }
.gz-card__cta { margin-left: auto; font-weight: 600; font-size: .92rem; color: var(--blue); }

/* Alumnas */
.gz-card--alumna { padding: 28px; display: flex; flex-direction: column; gap: 18px; }
.gz-card--alumna blockquote { font-family: var(--font-display); font-size: 1.08rem; font-style: italic; color: var(--navy-2); line-height: 1.5; }
.gz-card__person { display: flex; flex-direction: column; border-top: 1px solid var(--line); padding-top: 14px; }
.gz-card__person strong { font-weight: 700; }
.gz-card__person span { font-size: .86rem; color: var(--muted); }
.gz-card--alumna-full .gz-card__media { margin: -28px -28px 0; aspect-ratio: 16/10; }
.gz-stars { color: var(--gold); letter-spacing: .2em; font-size: .95rem; }

/* ============ Bandas ============ */
.gz-band { padding: 64px 0; color: #fff; }
.gz-band--blue { background: linear-gradient(130deg, var(--blue) 0%, var(--blue-dark) 100%); }
.gz-band--navy {
	background:
		radial-gradient(900px 420px at 90% 0%, rgba(127, 168, 242, .25), transparent 55%),
		linear-gradient(150deg, var(--navy), var(--navy-2));
}
.gz-band h2 { color: #fff; margin-bottom: 10px; }
.gz-band p { color: rgba(255, 255, 255, .85); max-width: 60ch; }
.gz-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.gz-band__cols { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: center; }
.gz-band__cols .gz-btn { margin-top: 22px; }
.gz-band__list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.gz-band__list li {
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: var(--radius-sm);
	padding: 14px 18px;
	font-size: .96rem;
}

/* ============ Features / método ============ */
.gz-feature { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.gz-feature__num { font-family: var(--font-display); font-size: .95rem; font-weight: 700; color: var(--blue-soft); letter-spacing: .1em; }
.gz-feature h3 { margin: 10px 0 8px; }
.gz-feature p { color: var(--muted); font-size: .95rem; }

/* ============ Split ============ */
.gz-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.gz-split--reverse { grid-template-columns: 1.1fr .9fr; }
.gz-split__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.gz-split__copy .gz-lead { font-size: 1.15rem; color: var(--navy-2); font-weight: 500; margin: 14px 0; }
.gz-split__copy p { margin-bottom: 14px; }
.gz-split__copy p:not(.gz-lead):not(.gz-kicker) { color: var(--muted); }
.gz-split__links { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-top: 10px; }

/* ============ Stats ============ */
.gz-stats { background: var(--navy); color: #fff; padding: 56px 0; }
.gz-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.gz-stat strong { display: block; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--blue-soft); }
.gz-stat span { font-size: .9rem; color: rgba(255, 255, 255, .75); }

/* ============ Premios ============ */
.gz-awards {
	padding: 84px 0;
	background:
		radial-gradient(800px 400px at 15% 0%, rgba(201, 168, 106, .16), transparent 60%),
		linear-gradient(155deg, var(--navy), var(--navy-2));
}
.gz-award {
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(201, 168, 106, .35);
	border-radius: var(--radius);
	padding: 30px 28px;
	color: #fff;
	text-align: center;
}
.gz-award__laurel { font-size: 2rem; display: block; margin-bottom: 12px; }
.gz-award h3, .gz-award h2 { color: #fff; font-size: 1.2rem; margin-bottom: 8px; }
.gz-award p { color: var(--gold); font-size: .9rem; letter-spacing: .04em; }
.gz-award--page { background: var(--white); border-color: var(--gold); color: var(--ink); }
.gz-award--page h2 { color: var(--ink); }
.gz-award--page .gz-award__entity { color: #A5813F; font-weight: 600; }
.gz-award__desc { margin-top: 12px; color: var(--muted); font-size: .93rem; text-align: left; }

/* ============ Pagos ============ */
.gz-checklist { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 20px 0 28px; }
.gz-checklist li { padding-left: 34px; position: relative; color: var(--muted); }
.gz-checklist li strong { color: var(--ink); }
.gz-checklist li::before {
	content: '✓';
	position: absolute; left: 0; top: 0;
	width: 24px; height: 24px; border-radius: 50%;
	background: var(--blue-ice); color: var(--blue);
	font-weight: 700; font-size: .85rem;
	display: grid; place-items: center;
}
.gz-checklist--light li { color: rgba(255, 255, 255, .8); }
.gz-checklist--light li strong { color: #fff; }
.gz-checklist--light li::before { background: rgba(255, 255, 255, .15); color: var(--blue-soft); }
.gz-payplan {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	padding: 34px 32px;
}
.gz-payplan h3 { margin-bottom: 20px; }
.gz-payplan__row { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px dashed var(--line); color: var(--muted); }
.gz-payplan__row strong { color: var(--ink); font-size: 1.05rem; }
.gz-payplan__row--hl { background: var(--blue-ice); margin: 6px -16px 0; padding: 14px 16px; border-radius: var(--radius-sm); border-bottom: 0; }
.gz-payplan__row--hl strong { color: var(--blue-dark); font-size: 1.25rem; font-family: var(--font-display); }
.gz-payplan__note { margin-top: 16px; font-size: .85rem; color: var(--muted); }

/* ============ FAQ ============ */
.gz-faq { display: flex; flex-direction: column; gap: 14px; }
.gz-faq__item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 24px; }
.gz-faq__item summary {
	cursor: pointer; list-style: none;
	font-weight: 600; font-size: 1.04rem;
	padding: 18px 34px 18px 0;
	position: relative;
}
.gz-faq__item summary::-webkit-details-marker { display: none; }
.gz-faq__item summary::after {
	content: '+'; position: absolute; right: 2px; top: 50%; transform: translateY(-50%);
	font-size: 1.5rem; color: var(--blue); font-weight: 400; transition: transform .2s;
}
.gz-faq__item[open] summary::after { content: '−'; }
.gz-faq__item p { padding: 0 0 20px; color: var(--muted); }

/* ============ Admisión ============ */
.gz-admission {
	background:
		radial-gradient(900px 500px at 110% 10%, rgba(127, 168, 242, .3), transparent 55%),
		linear-gradient(150deg, var(--navy) 10%, #16386E 100%);
	color: #fff;
	padding: 90px 0;
}
.gz-admission__inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: start; }
.gz-admission h2 { color: #fff; margin-bottom: 14px; }
.gz-admission__copy > p { color: rgba(255, 255, 255, .82); font-size: 1.08rem; }
.gz-form {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	padding: 36px;
	color: var(--ink);
	display: flex; flex-direction: column; gap: 18px;
}
.gz-form__row label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.gz-form__row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gz-form input[type=text], .gz-form input[type=email], .gz-form input[type=tel], .gz-form select, .gz-form textarea {
	width: 100%;
	padding: 13px 16px;
	border: 1.5px solid var(--line);
	border-radius: 10px;
	font: inherit;
	background: var(--bg);
	transition: border-color .15s;
}
.gz-form input:focus, .gz-form select:focus, .gz-form textarea:focus { outline: none; border-color: var(--blue); }
.gz-hp { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; }
.gz-form__rgpd { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; color: var(--muted); }
.gz-form__rgpd input { margin-top: 3px; }
.gz-form__submit { width: 100%; }
.gz-form__msg { min-height: 1.2em; font-size: .92rem; font-weight: 600; }
.gz-form__msg.ok { color: #157347; }
.gz-form__msg.err { color: #B42318; }

/* ============ Page head ============ */
.gz-pagehead {
	background:
		radial-gradient(900px 420px at 85% -20%, rgba(127, 168, 242, .3), transparent 60%),
		linear-gradient(155deg, var(--navy), var(--navy-2));
	color: #fff;
	padding: 72px 0 60px;
}
.gz-pagehead h1 { color: #fff; max-width: 20ch; }
.gz-pagehead--article h1 { max-width: 26ch; margin-inline: auto; }
.gz-pagehead--article { text-align: center; }
.gz-pagehead__sub { margin-top: 16px; color: rgba(255, 255, 255, .8); max-width: 62ch; font-size: 1.08rem; }
.gz-pagehead--article .gz-pagehead__sub { margin-inline: auto; }
.gz-pagehead--gold { background: radial-gradient(800px 400px at 15% 0%, rgba(201,168,106,.2), transparent 60%), linear-gradient(155deg, var(--navy), var(--navy-2)); }
.gz-catnav { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.gz-catnav a {
	padding: 8px 18px; border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .3);
	color: rgba(255, 255, 255, .85); font-size: .9rem; font-weight: 500;
}
.gz-catnav a:hover, .gz-catnav a.is-active { background: #fff; color: var(--navy); border-color: #fff; }

/* ============ Curso single ============ */
.gz-pagehead--curso { padding-bottom: 84px; }
.gz-cursohead { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: start; }
.gz-cursobox {
	background: var(--white); color: var(--ink);
	border-radius: var(--radius); box-shadow: var(--shadow-lg);
	padding: 32px;
}
.gz-cursobox__price { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--navy); }
.gz-cursobox__installments { color: var(--muted); margin-bottom: 6px; }
.gz-cursobox__installments strong { color: var(--blue-dark); }
.gz-cursobox__list { list-style: none; margin: 18px 0; display: flex; flex-direction: column; gap: 10px; font-size: .94rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 18px; }
.gz-cursobox__cta { width: 100%; }
.gz-cursobox__note { font-size: .82rem; color: var(--muted); margin-top: 12px; text-align: center; }
.gz-curso__content { padding-top: 56px; }

/* ============ Artículo ============ */
.gz-article__hero { margin-top: -34px; }
.gz-article__hero img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.gz-article__content { padding: 56px 0 12px; }
.gz-article__content h2 { margin: 40px 0 14px; font-size: 1.65rem; }
.gz-article__content h3 { margin: 28px 0 10px; font-size: 1.25rem; }
.gz-article__content p { margin-bottom: 16px; }
.gz-article__content ul, .gz-article__content ol { margin: 0 0 18px 22px; }
.gz-article__content li { margin-bottom: 8px; }
.gz-article__content blockquote {
	border-left: 4px solid var(--blue);
	background: var(--blue-ice);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	padding: 18px 24px; margin: 24px 0;
	font-family: var(--font-display); font-style: italic; color: var(--navy-2);
}
.gz-article__content table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: .94rem; }
.gz-article__content th, .gz-article__content td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; }
.gz-article__content th { background: var(--blue-ice); font-weight: 600; }
.gz-page__content { padding-bottom: 72px; }
.gz-article__cta { padding: 28px 0; }
.gz-inlinecta {
	background: var(--blue-ice);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 28px 32px;
	display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.gz-inlinecta h3 { margin-bottom: 4px; }
.gz-inlinecta p { color: var(--muted); margin: 0; }
.gz-inlinecta--mt { margin-top: 48px; }
.gz-article__related { padding: 40px 0 80px; }
.gz-article__related h2 { margin-bottom: 22px; }
.gz-minicard {
	display: flex; flex-direction: column; gap: 8px;
	background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
	padding: 20px; color: var(--ink); height: 100%;
	transition: transform .16s, box-shadow .16s;
}
.gz-minicard:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: var(--ink); }
.gz-minicard__cat { font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; color: var(--blue); font-weight: 700; }
.gz-minicard strong { font-family: var(--font-display); font-size: 1.02rem; line-height: 1.3; }

/* ============ Pagination ============ */
.gz-pagination { margin-top: 48px; text-align: center; }
.gz-pagination .nav-links { display: inline-flex; gap: 8px; }
.gz-pagination a, .gz-pagination span.current {
	padding: 9px 16px; border-radius: 10px; border: 1px solid var(--line);
	color: var(--ink); font-weight: 500; background: var(--white);
}
.gz-pagination span.current { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ============ Footer ============ */
.gz-footer { background: var(--navy); color: rgba(255, 255, 255, .78); padding: 64px 0 0; }
.gz-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 46px; }
.gz-footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.gz-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.gz-footer__col a { color: rgba(255, 255, 255, .72); font-size: .94rem; }
.gz-footer__col a:hover { color: var(--blue-soft); }
.gz-footer__col--brand p { font-size: .94rem; margin-top: 16px; max-width: 34ch; }
.gz-footer__addr { color: rgba(255, 255, 255, .55); font-size: .88rem !important; }
.gz-footer__bottom { border-top: 1px solid rgba(255, 255, 255, .12); padding: 22px 0; font-size: .85rem; color: rgba(255, 255, 255, .5); }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
	.gz-grid--3 { grid-template-columns: repeat(2, 1fr); }
	.gz-hero__inner, .gz-admission__inner, .gz-cursohead { grid-template-columns: 1fr; }
	.gz-split, .gz-split--reverse, .gz-band__cols { grid-template-columns: 1fr; }
	.gz-hero__media { justify-self: start; }
	.gz-stats__grid { grid-template-columns: repeat(2, 1fr); }
	.gz-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
	.gz-grid--3 { grid-template-columns: 1fr; }
	.gz-section { padding: 60px 0; }
	.gz-hero__inner { padding: 56px 0 64px; }
	.gz-form { padding: 26px 22px; }
	.gz-form__row--2 { grid-template-columns: 1fr; }
	.gz-nav {
		display: none;
		position: absolute; top: 100%; left: 0; right: 0;
		background: var(--white);
		border-bottom: 1px solid var(--line);
		padding: 22px 6vw 26px;
		flex-direction: column; align-items: flex-start; gap: 16px;
		box-shadow: var(--shadow);
	}
	.gz-nav.is-open { display: flex; }
	.gz-nav__list { flex-direction: column; gap: 14px; }
	.gz-burger { display: block; }
	.gz-hero__card { left: 8px; bottom: 12px; }
}
