*,
*::before,
*::after {
	box-sizing: border-box;
}

:root {
	--font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-family-raleway: "Raleway", sans-serif;
	--font-weight-light: 300;
	--font-weight-regular: 400;
	--font-weight-medium: 500;
	--font-weight-semibold: 600;
	--font-weight-bold: 700;
	--site-header-height: 72px;
}

html {
	scroll-padding-top: var(--site-header-height);
}

body {
	margin: 0;
	font-family: var(--font-family);
	font-weight: var(--font-weight-regular);
	line-height: 1.5;
	color: #1a1a1a;
	background: #fff;
}

a {
	text-decoration: none;
	color: inherit;
}

.site-header {
	--header-btn-hover-shift: 8px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1002;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: var(--site-header-height);
	border-bottom: 1px solid #e5e5e5;
	background: #ffffff;
	box-shadow: 0 2px 16px rgba(34, 76, 137, 0.08);
}

.site-header__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border: none;
	background: #4478C4;
	color: #ffffff;
	text-decoration: none;
	font-family: var(--font-family);
	font-size: 16px;
	font-weight: var(--font-weight-bold);
	line-height: 1;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	cursor: pointer;
	transition:
		width 0.25s ease,
		margin 0.25s ease,
		padding 0.25s ease;
}

.site-header__btn--menu {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	padding: 20px 28px 20px 22px;
	border-radius: 0 50px 50px 0;
}

.site-header__btn--menu:hover,
.site-header__btn--menu:focus-visible {
	padding-left: calc(22px + var(--header-btn-hover-shift));
}

.site-header__hamburger {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 24px;
	height: 18px;
}

.site-header__hamburger span {
	display: block;
	height: 2px;
	border-radius: 1px;
	background: #ffffff;
}

.site-logo {
	position: relative;
	z-index: 1;
	text-decoration: none;
}

.site-logo img {
	display: block;
	height: 48px;
	width: auto;
}

.site-header__btn--cta {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	padding: 20px 40px 20px 32px;
	border-radius: 50px 0 0 50px;
}

.site-header__btn--cta:hover,
.site-header__btn--cta:focus-visible {
	padding-right: calc(40px + var(--header-btn-hover-shift));
}

@media (max-width: 768px) {
	:root {
		--site-header-height: 64px;
	}

	.site-header {
		min-height: var(--site-header-height);
	}

	.site-header__btn--menu {
		padding: 16px 20px 16px 16px;
	}

	.site-header__btn--menu:hover,
	.site-header__btn--menu:focus-visible {
		padding-left: calc(16px + var(--header-btn-hover-shift));
	}

	.site-header__btn--cta {
		padding: 16px 24px 16px 20px;
		font-size: 13px;
	}

	.site-header__btn--cta:hover,
	.site-header__btn--cta:focus-visible {
		padding-right: calc(24px + var(--header-btn-hover-shift));
	}

	.site-logo img {
		height: 40px;
	}
}

/* Slide-out site menu */
body.site-menu-open {
	overflow: hidden;
}

.site-nav {
	visibility: hidden;
	pointer-events: none;
}

.site-nav.is-open {
	visibility: visible;
	pointer-events: auto;
}

.site-nav__overlay {
	position: fixed;
	inset: 0;
	z-index: 1000;
	background: rgba(34, 76, 137, 0.45);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.site-nav.is-open .site-nav__overlay {
	opacity: 1;
}

.site-nav__panel {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1001;
	display: flex;
	flex-direction: column;
	width: min(360px, 88vw);
	height: 100%;
	padding: 28px 32px 40px;
	background: #F7EFD9;
	border-radius: 0 24px 24px 0;
	box-shadow: 8px 0 32px rgba(34, 76, 137, 0.15);
	transform: translateX(-100%);
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	overflow-y: auto;
}

.site-nav.is-open .site-nav__panel {
	transform: translateX(0);
}

.site-nav__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 40px;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(34, 76, 137, 0.2);
}

.site-nav__logo img {
	display: block;
	height: 40px;
	width: auto;
}

.site-nav__close {
	position: relative;
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid #224C89;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}

.site-nav__close span {
	position: absolute;
	left: 50%;
	top: 50%;
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 1px;
	background: #224C89;
}

.site-nav__close span:first-child {
	transform: translate(-50%, -50%) rotate(45deg);
}

.site-nav__close span:last-child {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.site-nav__list {
	margin: 0;
	padding: 0;
	list-style: none;
	flex: 1;
}

.site-nav__item {
	margin: 0;
}

.site-nav__link {
	display: block;
	padding: 16px 0;
	font-size: 22px;
	line-height: 1.35;
	font-weight: var(--font-weight-light);
	color: #224C89;
	text-decoration: none;
	border-bottom: 1px solid rgba(34, 76, 137, 0.15);
	transition: color 0.2s ease, font-weight 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
	color: #4478C4;
	font-weight: var(--font-weight-medium);
}

.site-nav__link.is-active {
	font-weight: var(--font-weight-medium);
	color: #4478C4;
}

.site-nav__actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	margin-top: 32px;
}

.site-nav__cta {
	text-align: center;
}

.site-nav__phone {
	font-size: 18px;
	font-weight: var(--font-weight-medium);
	color: #224C89;
	text-decoration: none;
}

.site-nav__phone:hover,
.site-nav__phone:focus-visible {
	color: #4478C4;
}

.site-nav__social {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px 16px;
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid rgba(34, 76, 137, 0.2);
}

.site-nav__social-label {
	font-size: 16px;
	font-weight: var(--font-weight-medium);
	color: #224C89;
}

.site-nav__social .footer-icon-img {
	width: 28px;
	height: 28px;
}

.site-header__btn--menu[aria-expanded="true"] .site-header__hamburger span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.site-header__btn--menu[aria-expanded="true"] .site-header__hamburger span:nth-child(2) {
	opacity: 0;
}

.site-header__btn--menu[aria-expanded="true"] .site-header__hamburger span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

.site-header__hamburger span {
	transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (prefers-reduced-motion: reduce) {
	.site-nav__overlay,
	.site-nav__panel,
	.site-header__hamburger span {
		transition: none;
	}
}

.site-main {
	padding-top: var(--site-header-height);
}


.hero-container {
	position: relative;
	width: 100%;
	height: 800px;
	
	background-image: url(../img/hero.jpg);
	background-position: center;
	background-size: cover;
}

.hero-container .hero-content {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: 0;
	color: #F7EFD9;
	/* max-width: 700px; */
}

.hero-container .hero-content h1 {
	font-size: 50px;
	line-height: 60px;
	font-weight: 700;
	margin: 0;
	letter-spacing: 0.5px;
	/* text-shadow: 0 0 10px rgba(0, 0, 0, 0.5); */
}

.hero-container .hero-content p {
	font-size: 18px;
	font-weight: 400;
	/* text-shadow: 0 0 10px rgba(0, 0, 0, 0.5); */
}

.hero-container--inner {
	height: 420px;
}

.hero-container--inner .hero-content {
	transform: translate(-50%, -50%);
	width: min(900px, calc(100% - 48px));
	text-align: center;
}

.hero-breadcrumb {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
	font-size: 14px;
	font-weight: var(--font-weight-medium);
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.hero-breadcrumb a {
	color: #F7EFD9;
	text-decoration: none;
	opacity: 0.85;
}

.hero-breadcrumb a:hover,
.hero-breadcrumb a:focus-visible {
	opacity: 1;
	text-decoration: underline;
}

.hero-breadcrumb span:last-child {
	opacity: 0.75;
}

.cta-container {
	--cta-hover-shift: 12px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	padding: 25px 0;
	text-transform: uppercase;
	overflow: visible;
}

.cta-container .cta-heading {
	display: flex;
	align-items: center;
	gap: 16px;
}

.cta-container h2 {
	margin: 0;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.cta-container .cta-icon {
	display: block;
	width: 40px;
	height: auto;
	flex-shrink: 0;
}

.cta-container .cta-content {
	display: flex;
	flex: 0 0 auto;
	text-decoration: none;
	color: inherit;
	transition:
		width 0.25s ease,
		margin 0.25s ease,
		padding 0.25s ease;
}

.cta-container .cta-content-left {
	justify-content: flex-end;
	width: 550px;
	max-width: 50%;
	margin-left: 0;
	padding: 30px 80px;
	background: #F7EFD9;
	color: #4478C4;
	border-radius: 0 90px 90px 0;
}

.cta-container .cta-content-left:hover,
.cta-container .cta-content-left:focus-visible {
	width: calc(550px + var(--cta-hover-shift));
}

.cta-container .cta-content-right {
	justify-content: flex-start;
	width: 500px;
	max-width: 50%;
	margin-left: auto;
	margin-right: 0;
	padding: 30px 80px;
	background: #4478C4;
	color: #ffffff;
	border-radius: 90px 0 0 90px;
}

.cta-container .cta-content-right:hover,
.cta-container .cta-content-right:focus-visible {
	width: calc(500px + var(--cta-hover-shift));
}

.help-section {
	background: #3c6196;
	color: #F7EFD9;
}

.help-section__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 120px;
	max-width: 1400px;
	margin: 0 auto;
	padding: 60px 100px;
}

.help-section__title {
	flex: 0 0 auto;
	margin: 0;
	font-size: 42px;
	line-height: 1.2;
	font-weight: 400;
	letter-spacing: 0.5px;
}

.help-section__grid {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px 5px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.help-section__item {
	font-family: var(--font-family);
	font-size: 18px;
	font-weight: var(--font-weight-light);
	line-height: 1.4;
	/* color: rgba(255, 255, 255, 0.55); */
}

.help-section--specialty {
	background: #F7EFD9;
	color: #224C89;
}

.help-section--specialty .help-section__title {
	margin: 0;
	padding: 0;
	color: #224C89;
	font-weight: var(--font-weight-medium);
}

.help-section--specialty .help-section__grid {
	gap: 20px 16px;
}

.help-section--specialty .help-section__item {
	display: flex;
	width: 100%;
}

.help-section--specialty .help-section__pill {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 44px;
	padding: 10px 16px;
	border-radius: 999px;
	background: #4478C4;
	color: #ffffff;
	font-size: 16px;
	font-weight: var(--font-weight-light);
	line-height: 1.3;
	text-align: center;
}

.section-title {
	max-width: 800px;
	margin: 0 auto 48px;
	text-align: center;
	font-size: 26px;
	line-height: 1.4;
	font-weight: var(--font-weight-medium);
	color: #1B4986;
}

.specialties-section {
	position: relative;
	overflow: hidden;
	padding: 80px 100px 100px;
	color: #4478C4;
}

.specialties-section__pattern {
	position: absolute;
    right: 0;
    top: 50%;
    z-index: 0;
    width: 100%;
    max-width: 1190px;
    pointer-events: none;
    transform: translate(20%, -50%);
}

.specialties-section__pattern img {
	display: block;
	width: 100%;
	height: auto;
	max-width: none;
	/* opacity: 0.35; */
}

.specialties-section .section-title,
.specialties-section__box {
	position: relative;
	z-index: 1;
}

.specialties-section__box {
	max-width: 1200px;
	margin: 0 auto;
	padding: 48px 80px 56px;
	background: #F7EFD9;
	border-radius: 20px;
}

.specialties-section__title {
	margin: 0 0 10px;
	font-size: 32px;
	font-weight: var(--font-weight-medium);
	color: #224C89;
}

.specialties-section__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 80px;
}

.specialties-section__column {
	margin: 0;
	padding: 0;
	list-style: none;
}

.specialties-section__item {
	margin: 0;
}

.specialties-section__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 0 10px;
	text-decoration: none;
	color: inherit;
	transition: opacity 0.2s ease;
}

a.specialties-section__row:hover,
a.specialties-section__row:focus-visible {
	opacity: 0.75;
}

.specialties-section__name {
	font-size: 20px;
	font-weight: var(--font-weight-light);
	line-height: 1.35;
	color: #224C89;
}

.specialties-section__toggle {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border: 1px solid #224C89;
	border-radius: 50%;
	font-size: 20px;
	line-height: 1;
	font-weight: var(--font-weight-regular);
	color: #224C89;
}

.specialties-section__line {
	height: 1px;
	/* background: rgba(68, 120, 196, 0.35); */
	background: #224C89;
}

.specialties-section__actions {
	margin-top: 48px;
	text-align: center;
}

.specialties-cards-section {
	position: relative;
	overflow: hidden;
	padding: 80px 100px 100px;
	background: #ffffff;
}

.specialties-cards-section__inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
}

.specialties-cards-section__header {
	max-width: 900px;
	margin: 0 auto 56px;
	text-align: center;
}

.specialties-cards-section__title {
	margin: 0 0 20px;
	font-size: 32px;
	line-height: 1.3;
	font-weight: var(--font-weight-medium);
	color: #224C89;
}

.specialties-cards-section__subtitle {
	margin: 0;
	font-size: 18px;
	line-height: 1.5;
	font-weight: var(--font-weight-light);
	color: #1B4986;
}

.specialties-cards-section__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.specialty-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: 100%;
	padding: 32px 28px 28px;
	background: #F7EFD9;
	border-radius: 20px;
}

.specialty-card__title {
	margin: 0 0 12px;
	font-size: 18px;
	line-height: 1.35;
	font-weight: var(--font-weight-medium);
	color: #224C89;
}

.specialty-card__text {
	flex: 1;
	margin: 0 0 24px;
	font-size: 14px;
	line-height: 1.4;
	font-weight: var(--font-weight-light);
	color: #1B4986;
	max-width: 240px;
}

.btn.specialty-card__btn {
	margin-top: auto;
	font-size: 14px;
}

.btn {
	display: inline-block;
    padding: 5px 56px;
    background: #224C89;
    color: #F7EFD9;
    border-radius: 999px;
    font-size: 18px;
    font-weight: var(--font-weight-light);
    text-decoration: none;
    transition: background 0.2s ease;
    min-width: 180px;
    text-align: center;
}

.btn.shorter {
	min-width: initial;
	padding-left: 30px;
	padding-right: 30px;
}

.btn:hover,
.btn:focus-visible {
	background: #3c6196;
}

.btn.inverse {
	background: #F7EFD9;
	color: #224C89;
}

.btn.inverse:hover,
.btn.inverse:focus-visible {
	background: #E5E5E5;
}

.space-gallery-section {
	padding: 80px 0 100px;
}

.space-gallery-section .section-title {
	margin-bottom: 56px;
}

.space-gallery {
	--gallery-max-width: 1400px;
	--gallery-row-ratio: 0.2;
	--gallery-row-max: calc(var(--gallery-max-width) * var(--gallery-row-ratio));
	container-type: inline-size;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(3, minmax(80px, min(calc(var(--gallery-row-ratio) * 100cqw), var(--gallery-row-max))));
	width: 100%;
	max-width: var(--gallery-max-width);
	margin: 0 auto;
}

@supports not (width: 1cqw) {
	.space-gallery {
		grid-template-rows: repeat(3, minmax(80px, min(calc(var(--gallery-row-ratio) * 100vw), var(--gallery-row-max))));
	}
}

.space-gallery__item {
	margin: 0;
	overflow: hidden;
	min-height: 0;
}

.space-gallery__item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.space-gallery__item--1 { grid-column: 1 / 3; grid-row: 1 / 2; }
.space-gallery__item--2 { grid-column: 3 / 4; grid-row: 1 / 2; }
.space-gallery__item--3 { grid-column: 4 / 6; grid-row: 1 / 2; }
.space-gallery__item--4 { grid-column: 1 / 2; grid-row: 2 / 4; }
.space-gallery__item--5 { grid-column: 2 / 3; grid-row: 2 / 3; }
.space-gallery__item--6 { grid-column: 3 / 4; grid-row: 2 / 4; }
.space-gallery__item--7 { grid-column: 4 / 5; grid-row: 2 / 3; }
.space-gallery__item--8 { grid-column: 5 / 6; grid-row: 2 / 3; }
.space-gallery__item--9 { grid-column: 2 / 3; grid-row: 3 / 4; }
.space-gallery__item--10 { grid-column: 4 / 5; grid-row: 3 / 4; }
.space-gallery__item--11 { grid-column: 5 / 6; grid-row: 3 / 4; }

.quote-section {
	padding: 20px 100px 40px;
	background: #ffffff;
}

.quote-section__inner {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 0;
	max-width: 900px;
	margin: 0 auto;
}

.quote-section__text {
	position: relative;
	z-index: 2;
	margin: 0 -70px 0 0;
	padding: 0;
	border: none;
}

.quote-section__text p {
	margin: 0;
	font-size: 24px;
	line-height: 1.35;
	font-weight: var(--font-weight-light);
	color: #224C89;
}

.quote-section__text strong {
	font-weight: var(--font-weight-bold);
}

.quote-section__media {
	flex-shrink: 0;
	width: min(380px, 32vw);
	aspect-ratio: 3 / 4;
	margin: 0;
	overflow: hidden;
	background: #E8F1FA;
	/* border: 1px solid #4478C4; */
}

.quote-section__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Team masonry (based on volup.app/about-us .press-masonry) */
.team-section {
	padding: 80px 24px 100px;
	background: #ffffff;
}

.team-section .section-title {
	margin-bottom: 56px;
}

.team-masonry.press-masonry {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 200px;
	gap: 16px;
	max-width: 1200px;
	margin: 0 auto;
}

.team-masonry .press-card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	background: #9aadbe;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-masonry .press-card::before {
	display: none;
}

.team-masonry .press-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(34, 76, 137, 0.18);
}

.team-masonry .press-card.mt {
	margin: 45px 0 -45px;
}

.team-masonry .press-card-medium {
	grid-column: span 1;
	grid-row: span 2;
}

.team-card__name {
	position: absolute;
	top: 18px;
	left: 18px;
	right: 18px;
	z-index: 2;
	margin: 0;
	font-size: 18px;
	font-weight: var(--font-weight-bold);
	line-height: 1.3;
	color: #224C89;
}

.team-card--placeholder .team-card__name {
	font-size: 14px;
	font-weight: var(--font-weight-medium);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #ffffff;
}

.team-card__media {
	position: absolute;
	inset: 0;
}

.team-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team-card__specialty {
	position: absolute;
    left: 8px;
    right: 8px;
    bottom: 8px;
    z-index: 2;
    padding: 18px 14px;
    background: #224C89;
    border-radius: 10px;
    font-size: 12px;
    font-weight: var(--font-weight-medium);
    line-height: 1.2;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
}

@media (max-width: 1024px) {
	.team-masonry.press-masonry {
		grid-template-columns: repeat(3, 1fr);
		grid-auto-rows: 180px;
	}

	.team-masonry .press-card.mt {
		margin: 0;
	}

	.team-masonry .press-card:nth-child(3n + 2) {
		margin: 45px 0 -45px;
	}
}

@media (max-width: 767px) {
	.team-masonry.press-masonry {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 200px;
		gap: 12px;
	}

	.team-masonry .press-card:nth-child(3n + 2) {
		margin: 0;
	}

	.team-masonry .press-card-medium {
		grid-row: span 2;
	}
}

@media (max-width: 900px) {
	.specialties-section {
		padding: 60px 24px 80px;
	}

	.specialties-section__pattern {
		width: 75%;
		max-width: 480px;
		transform: translate(30%, -50%);
	}

	.specialties-section__box {
		padding: 32px 24px 40px;
	}

	.specialties-section__grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.specialties-cards-section {
		padding: 60px 24px 80px;
	}

	.specialties-cards-section__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.space-gallery-section {
		padding: 60px 16px 80px;
	}

	.space-gallery {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: auto;
	}

	.space-gallery__item {
		grid-column: auto !important;
		grid-row: auto !important;
		min-height: 200px;
	}

	.space-gallery__item:nth-child(1) {
		grid-column: 1 / 3 !important;
	}

	.space-gallery__item:nth-child(3) {
		grid-column: 1 / 3 !important;
	}

	.space-gallery__item:nth-child(4),
	.space-gallery__item:nth-child(6) {
		grid-row: span 2;
		min-height: 280px;
	}

	.quote-section {
		padding: 60px 24px 80px;
	}

	.quote-section__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.quote-section__text {
		margin-right: 0;
	}

	.quote-section__media {
		width: 100%;
		max-width: 380px;
		justify-self: center;
	}

	.quote-section__text p {
		font-size: 20px;
	}

	.team-section {
		padding: 60px 16px 80px;
	}

	.team-masonry .press-card.mt,
	.team-masonry .press-card:nth-child(3n + 2) {
		margin: 0;
	}

	.help-section--specialty .help-section__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 40px;
		padding: 48px 24px;
	}

	.help-section--specialty .help-section__title {
		font-size: 32px;
		text-align: center;
	}

	.help-section--specialty .help-section__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.consultation-steps-section {
		--steps-gutter: 24px;
		padding: 60px 0 80px;
	}

	.consultation-steps-section__title {
		margin-bottom: 32px;
		font-size: 32px;
	}

	.consultation-step-card {
		flex: 0 0 min(420px, 82vw);
	}

	.specialty-intro-section {
		padding: 60px 16px 80px;
	}

	.specialty-intro-section__text {
		font-size: 16px;
	}

	.testimonials-section {
		padding: 60px 16px 80px;
	}

	.testimonials-slide__quote {
		font-size: 18px;
	}
}

/* Consultation steps (horizontal scroll, full viewport width) */
.consultation-steps-section {
	--steps-gutter: 100px;
	--steps-offset: max(var(--steps-gutter), calc((100vw - 1400px) / 2 + var(--steps-gutter)));
	position: relative;
	overflow: hidden;
	padding: 80px 0 100px;
	background: #ffffff;
}

.consultation-steps-section__title {
	position: relative;
	z-index: 1;
	margin: 0 0 40px;
	padding: 0 var(--steps-gutter) 0 var(--steps-offset);
	font-size: 42px;
	line-height: 1.2;
	font-weight: var(--font-weight-medium);
	color: #224C89;
}

.consultation-steps-section__viewport {
	position: relative;
	z-index: 1;
	width: calc(100vw - var(--steps-offset));
	margin-left: var(--steps-offset);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	cursor: grab;
}

.consultation-steps-section__viewport::-webkit-scrollbar {
	display: none;
}

.consultation-steps-section__viewport.is-dragging {
	cursor: grabbing;
	scroll-behavior: auto;
	scroll-snap-type: none;
}

.consultation-steps-section__track {
	display: flex;
	gap: 24px;
	width: max-content;
	padding-right: var(--steps-gutter);
}

.consultation-step-card {
	flex: 0 0 420px;
	scroll-snap-align: start;
	padding: 32px 28px 36px;
	background: #4478C4;
	border-radius: 20px;
	color: #ffffff;
}

.consultation-step-card__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	margin-bottom: 24px;
	border-radius: 50%;
	background: #224C89;
	font-size: 16px;
	font-weight: var(--font-weight-bold);
	line-height: 1;
}

.consultation-step-card__title {
	margin: 0 0 12px;
	font-size: 22px;
	line-height: 1.3;
	font-weight: var(--font-weight-bold);
	color: #ffffff;
}

.consultation-step-card__text {
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
	font-weight: var(--font-weight-light);
	color: #ffffff;
}

/* Specialty team grid / mobile slider */
.specialty-team-section {
	padding: 80px 0 0;
	background: #ffffff;
}

.specialty-team-section__title {
	margin-bottom: 48px;
	color: #224C89;
}

.specialty-team-section__panel {
	background: linear-gradient(90deg, #4478C4 0%, #224C89 100%);
	padding: 48px 100px 56px;
}

.specialty-team-section__slider {
	max-width: 1400px;
	margin: 0 auto;
}

.specialty-team-section__track {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.specialty-team-section__slider.is-slider {
	overflow: hidden;
}

.specialty-team-section__slider.is-slider .specialty-team-section__track {
	display: flex;
	gap: 0;
	transition: transform 0.35s ease;
}

.specialty-team-section__slider.is-slider .specialty-team-card {
	flex: 0 0 100%;
}

.specialty-team-card {
	position: relative;
	min-height: 420px;
	border-radius: 16px;
	overflow: hidden;
	background: #9aadbe;
}

.specialty-team-card__name {
	position: absolute;
	top: 18px;
	left: 18px;
	right: 18px;
	z-index: 2;
	margin: 0;
	font-size: 18px;
	line-height: 1.3;
	font-weight: var(--font-weight-bold);
	color: #224C89;
}

.specialty-team-card--placeholder .specialty-team-card__name {
	font-size: 14px;
	font-weight: var(--font-weight-medium);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #ffffff;
}

.specialty-team-card__media {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.specialty-team-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.specialty-team-card__specialty {
	position: absolute;
	left: 8px;
	right: 8px;
	bottom: 8px;
	z-index: 2;
	padding: 16px 14px;
	background: #224C89;
	border-radius: 10px;
	font-size: 12px;
	font-weight: var(--font-weight-medium);
	line-height: 1.2;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #ffffff;
}

.specialty-team-section__dots {
	display: none;
	justify-content: center;
	gap: 10px;
	margin-top: 28px;
}

.specialty-team-section__slider.is-slider .specialty-team-section__dots {
	display: flex;
}

.specialty-team-section__dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.45);
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.specialty-team-section__dot.is-active {
	background: #ffffff;
	transform: scale(1.15);
}

@media (max-width: 1200px) {
	.specialty-team-section__track {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 900px) {
	.specialty-team-section__panel {
		padding: 40px 48px 48px;
	}

	.specialty-team-section__track {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.specialty-team-section {
		padding-top: 60px;
	}

	.specialty-team-section__panel {
		padding: 32px 24px 40px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.specialty-team-section__slider.is-slider .specialty-team-section__track {
		transition: none;
	}
}

/* Specialty intro (testimonials-style, no slider) */
.specialty-intro-section {
	padding: 80px 24px 100px;
	background: #C7D2E9;
}

.specialty-intro-section__inner {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.specialty-intro-section .section-title {
	margin-bottom: 32px;
	color: #224C89;
}

.specialty-intro-section__text {
	margin: 0;
	font-size: 18px;
	line-height: 1.65;
	font-weight: var(--font-weight-light);
	color: #224C89;
}

/* Testimonials slider */
.testimonials-section {
	padding: 80px 24px 100px;
	background: #C7D2E9;
}

.testimonials-section .section-title {
	margin-bottom: 56px;
	color: #224C89;
}

.testimonials-slider {
	max-width: 1200px;
	margin: 0 auto;
}

.testimonials-slider__track {
	display: grid;
	grid-template: 1fr / 1fr;
}

.testimonials-slide {
	grid-area: 1 / 1;
	margin: 0;
	padding: 0;
	border: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.45s ease, visibility 0.45s ease;
	pointer-events: none;
}

.testimonials-slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
	pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
	.testimonials-slide {
		transition: none;
	}
}

.testimonials-slide__quote {
	margin: 0 0 28px;
	font-size: 22px;
	line-height: 1.55;
	font-weight: var(--font-weight-light);
	font-style: italic;
	color: #224C89;
}

.testimonials-slide__meta {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.testimonials-slide__author {
	font-size: 18px;
	font-weight: var(--font-weight-bold);
	font-style: normal;
	color: #224C89;
}

.testimonials-slide__source {
	font-size: 16px;
	font-weight: var(--font-weight-regular);
	color: #224C89;
}

.testimonials-slider__nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 32px;
	margin-top: 56px;
}

.testimonials-slider__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
	border: none;
	background: transparent;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.testimonials-slider__arrow img {
	display: block;
	width: 32px;
	height: auto;
}

.testimonials-slider__arrow:hover,
.testimonials-slider__arrow:focus-visible {
	opacity: 0.65;
}

/* FAQ accordion */
.faq-section {
	padding: 80px 24px 100px;
	background: #F7EFD9;
}

.faq-section .section-title {
	margin-bottom: 56px;
	color: #224C89;
}

.faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 1200px;
	margin: 0 auto;
}

.faq-item {
	border: 1px solid #224C89;
	background: #F7EFD9;
}

.faq-item__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
	padding: 10px 28px;
	border: none;
	background: transparent;
	text-align: left;
	cursor: pointer;
	color: #224C89;
}

.faq-item__question {
	font-size: 16px;
	font-weight: var(--font-weight-medium);
	line-height: 1.4;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.faq-item__icon {
	position: relative;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #224C89;
}

.faq-item__icon::before,
.faq-item__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 2px;
	background: #ffffff;
	transform: translate(-50%, -50%);
	transition: transform 0.25s ease;
}

.faq-item__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-item__icon::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.faq-item.is-open .faq-item__icon::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.faq-item__panel {
	padding: 0 28px 28px;
	max-width: 55%;
}

.faq-item__panel p {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	font-weight: var(--font-weight-light);
	color: #224C89;
}

@media (max-width: 900px) {
	.faq-section {
		padding: 60px 16px 80px;
	}

	.faq-item__trigger {
		padding: 18px 20px;
	}

	.faq-item__panel {
		max-width: none;
		padding: 0 20px 22px;
	}

	.faq-item__question {
		font-size: 14px;
	}
}

/* WhatsApp CTA banner */
.whatsapp-cta {
	position: relative;
	overflow: hidden;
	background-color: #223C62;
	background-image:
		url("../img/whatsapp-pattern-bg.png"),
		linear-gradient(90deg, #223C62 0%, #4478C4 100%);
	background-repeat: no-repeat, no-repeat;
	background-position: -40px center, center;
	background-size: 25% auto, 100% 100%;
}

.whatsapp-cta__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 50px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 48px;
}

.whatsapp-cta__text {
	margin: 0;
	font-family: var(--font-family-raleway);
	font-size: 40px;
	font-weight: var(--font-weight-semibold);
	line-height: 1.4;
	color: #F7EFD9;
	letter-spacing: 1px;
}

.whatsapp-cta__btn {
	flex-shrink: 0;
	font-weight: var(--font-weight-medium);
}

@media (max-width: 768px) {
	.whatsapp-cta__inner {
		flex-direction: column;
		align-items: flex-start;
		padding: 32px 24px;
	}

	.whatsapp-cta__text {
		font-size: 20px;
	}
}

/* Tagline marquee + social */
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.tagline-section {
	position: relative;
	overflow: hidden;
	min-height: 320px;
	padding: 48px 0 100px;
	background: #ffffff;
}

.tagline-marquee {
	overflow: hidden;
	width: 100%;
	margin-bottom: 40px;
}

.tagline-marquee__track {
	display: flex;
	width: max-content;
	animation: tagline-marquee-scroll 25s linear infinite;
}

.tagline-marquee__text {
	font-family: var(--font-family-raleway);
	font-size: 150px;
	font-weight: var(--font-weight-semibold);
	line-height: 1;
	letter-spacing: -0.02em;
	color: #224C89;
	white-space: nowrap;
}

@keyframes tagline-marquee-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.tagline-section__social {
	position: absolute;
	right: 48px;
	bottom: 48px;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 20px;
}

.tagline-section__social-label {
	font-family: var(--font-family-raleway);
	font-size: 22px;
	font-weight: var(--font-weight-semibold);
	line-height: 1;
	color: #224C89;
}

.tagline-section__social .footer-icon {
	margin-bottom: 0;
	gap: 12px;
}

/* Footer social icons (same as https://www.osteoparque.pt/) */
.footer-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
}

.footer-icon-img {
	width: 28px;
	height: 28px;
	display: block;
	object-fit: contain;
}

.footer-icon a {
	color: inherit;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.footer-icon a:hover,
.footer-icon a:focus-visible {
	opacity: 0.7;
}

/* Site footer */
.site-footer {
	position: relative;
	overflow: hidden;
	background-color: #1B4986;
	background-image: radial-gradient(circle at 20% 50%, #4478C4 0%, #1B4986 100%);
	color: #ffffff;
	padding: 64px 48px 20px;
}

.site-footer__pattern {
	position: absolute;
    right: -60px;
    bottom: -220px;
    z-index: 0;
    width: 65%;
    max-width: 850px;
    pointer-events: none;
    transform: translate(18%, 22%);
}

.site-footer__pattern img {
	display: block;
	width: 100%;
	height: auto;
	max-width: none;
}

.site-footer__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.15fr 0.85fr 0.85fr 1.15fr;
	gap: 40px 32px;
	align-items: start;
	max-width: 1400px;
	margin: 0 auto;
}

.site-footer__heading {
	margin: 0 0 20px;
	font-family: var(--font-family-raleway);
	font-size: 18px;
	font-weight: var(--font-weight-semibold);
	line-height: 1.3;
	color: #ffffff;
}

.site-footer__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__list li {
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: var(--font-weight-light);
	line-height: 1.2;
}

.site-footer__list a {
	color: #ffffff;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.site-footer__list a:hover,
.site-footer__list a:focus-visible {
	opacity: 0.75;
}

.site-footer__col--brand {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	text-align: right;
}

.site-footer__brand {
	display: inline-block;
	text-decoration: none;
}

.site-footer__logo {
	display: block;
	width: min(100%, 320px);
	height: auto;
}

.site-footer__tagline {
	margin: 16px 0 0;
	font-family: var(--font-family-raleway);
	font-size: 11px;
	font-weight: var(--font-weight-semibold);
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: #ffffff;
}

@media (max-width: 1024px) {
	.site-footer__inner {
		grid-template-columns: 1fr 1fr;
		gap: 40px 24px;
	}

	.site-footer__col--brand {
		grid-column: 1 / -1;
		align-items: center;
		text-align: center;
	}
}

@media (max-width: 640px) {
	.specialties-cards-section__grid {
		grid-template-columns: 1fr;
	}

	.site-footer {
		padding: 48px 24px 64px;
	}

	.site-footer__pattern {
		width: 85%;
		max-width: 420px;
		transform: translate(25%, 30%);
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
	}
}

/* Partners */
.partners-section {
	padding: 80px 24px 100px;
	background: #F7EFD9;
}

.partners-section .section-title {
	margin-bottom: 56px;
	color: #224C89;
}

.partners-section__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 40px 56px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.partners-section__logo {
	display: block;
	text-decoration: none;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.partners-section__logo:hover,
.partners-section__logo:focus-visible {
	transform: scale(1.04);
	opacity: 0.9;
}

.partners-section__logo-placeholder {
	display: block;
	width: 140px;
	height: 140px;
	border: 1px solid #224C89;
	border-radius: 50%;
	background: #ffffff;
}

.partners-section__logo img {
	display: block;
	width: 140px;
	height: 140px;
	border: 1px solid #224C89;
	border-radius: 50%;
	object-fit: contain;
	background: #ffffff;
}

@media (max-width: 768px) {
	.partners-section {
		padding: 60px 16px 80px;
	}

	.partners-section__list {
		gap: 24px 32px;
	}

	.partners-section__logo-placeholder,
	.partners-section__logo img {
		width: 100px;
		height: 100px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tagline-marquee__track {
		animation: none;
		flex-wrap: wrap;
		justify-content: center;
		width: 100%;
	}
}

@media (max-width: 1200px) {
	.tagline-marquee__text {
		font-size: clamp(64px, 16vw, 200px);
	}

	.tagline-section {
		min-height: 240px;
		padding-bottom: 88px;
	}
}

@media (max-width: 768px) {
	.tagline-section__social {
		position: static;
		justify-content: flex-end;
		padding: 24px 24px 0;
	}

	.tagline-section {
		padding: 32px 0 40px;
	}

	.tagline-section__social-label {
		font-size: 18px;
	}
}

/* Scroll reveal */
.scroll-reveal {
	opacity: 0;
	transition:
		opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--scroll-reveal-delay, 0ms);
	will-change: opacity, transform;
}

.scroll-reveal:not(.scroll-reveal--fade) {
	transform: translateY(28px);
}

.scroll-reveal--visible {
	opacity: 1;
}

.scroll-reveal--visible:not(.scroll-reveal--fade) {
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.scroll-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}