:root {
	--bg: #050505;
	--bg-soft: #111111;
	--panel: rgba(255, 255, 255, 0.06);
	--panel-strong: rgba(255, 255, 255, 0.1);
	--surface: #f4f4f4;
	--surface-alt: #e8e8e8;
	--text: #f7f4ee;
	--muted: #a4a4a4;
	--dark-text: #141414;
	--line: rgba(255, 255, 255, 0.12);
	--accent: #d7d7d7;
	--accent-strong: #7a7a7a;
	--whatsapp: #25d366;
	--shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
	--radius-lg: 32px;
	--radius-md: 22px;
	--radius-sm: 16px;
	--container: 1240px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	min-height: 100vh;
	font-family: "Sora", sans-serif;
	color: var(--text);
	background:
		radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 30%),
		linear-gradient(180deg, #020202 0%, #060606 45%, #030303 100%);
	overflow-x: hidden;
	width: 100%;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font: inherit;
}

img {
	max-width: 100%;
	display: block;
}

.container {
	width: min(calc(100% - 40px), var(--container));
	margin: 0 auto;
}

.section {
	position: relative;
	padding: 110px 0;
}

.section-light {
	background:
		radial-gradient(circle at top left, rgba(0, 0, 0, 0.05), transparent 22%),
		linear-gradient(180deg, var(--surface) 0%, #fbfbfb 100%);
	color: var(--dark-text);
}

.section-dark {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 50%),
		linear-gradient(180deg, #080808 0%, #111111 100%);
}

.section-heading {
	max-width: 760px;
	margin: 0 auto 56px;
	text-align: center;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.82rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--accent-strong);
	margin-bottom: 18px;
}

.eyebrow::before,
.eyebrow::after {
	content: "";
	width: 28px;
	height: 1px;
	background: currentColor;
}

.eyebrow-light {
	color: var(--accent);
}

h1,
h2,
h3 {
	font-family: "Cormorant Garamond", serif;
	line-height: 0.98;
	letter-spacing: -0.02em;
}

h2 {
	font-size: clamp(2.4rem, 5vw, 4.6rem);
	margin-bottom: 18px;
}

.section-heading p,
.about-copy p,
.about-panel-card p,
.lawyer-details p,
.site-footer p,
.site-footer li,
.cta-strip p {
	font-size: 1rem;
	line-height: 1.8;
}

.hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 0;
	isolation: isolate;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.hero-backdrop,
.hero-grid {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.hero-backdrop {
	background:
		radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.09), transparent 18%),
		radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.05), transparent 20%),
		radial-gradient(circle at 82% 75%, rgba(255, 255, 255, 0.04), transparent 26%);
	z-index: -2;
}

.hero-grid {
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 96%);
	z-index: -1;
}

.hero-content {
	position: relative;
	display: grid;
	place-items: center;
	gap: 24px;
	text-align: center;
}

.hero-logo {
	width: min(82vw, 600px);
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.55));
}

.hero-scroll-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 22px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.05);
	color: var(--text);
	transition: transform 0.25s ease, background-color 0.25s ease;
}

.hero-scroll-link:hover {
	transform: translateY(-3px);
	background: rgba(255, 255, 255, 0.09);
}

.cards-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
}

.service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 290px;
	padding: 24px 22px 22px;
	border-radius: var(--radius-md);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 245, 245, 0.98) 100%);
	box-shadow: 0 18px 40px rgba(12, 12, 12, 0.08);
	overflow: hidden;
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
	border: 1px solid rgba(0, 0, 0, 0.06);
	backdrop-filter: blur(10px);
	grid-column: span 2;
	cursor: pointer;
}

.service-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), transparent 44%);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.32s ease;
}

.service-card::after {
	content: "";
	position: absolute;
	left: 22px;
	right: 22px;
	top: 0;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, #111111 0%, #5e5e5e 100%);
	opacity: 0.14;
	pointer-events: none;
	transition: opacity 0.32s ease, transform 0.32s ease;
	animation: topLinePulse 5.8s ease-in-out infinite;
}

.service-card:hover {
	transform: translateY(-14px) scale(1.01);
	box-shadow: 0 34px 70px rgba(12, 12, 12, 0.16);
	border-color: rgba(0, 0, 0, 0.16);
}

.service-card:hover::before {
	opacity: 1;
}

.service-card:hover::after {
	opacity: 1;
	transform: scaleX(1.02);
}

.service-card:nth-child(2)::after,
.service-card:nth-child(4)::after {
	animation-delay: -1.2s;
}

.service-card:nth-child(3)::after,
.service-card:nth-child(5)::after {
	animation-delay: -2.4s;
}

.service-card:nth-child(4) {
	grid-column: 2 / span 2;
}

.service-card:nth-child(5) {
	grid-column: 4 / span 2;
}

.card-icon {
	width: 56px;
	height: 56px;
	display: grid;
	place-items: center;
	border-radius: 16px;
	margin-bottom: 18px;
	background: linear-gradient(145deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.04));
	color: #202020;
	font-size: 1.15rem;
	transition: transform 0.3s ease, background 0.3s ease;
}

.service-card:hover .card-icon {
	transform: translateY(-4px) scale(1.12);
	background: linear-gradient(145deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.07));
}

.service-card h3 {
	font-size: 1.55rem;
	margin-bottom: 10px;
	color: #141414;
	line-height: 1.05;
}

.service-card p {
	color: #4f4b44;
	flex: 1;
	font-size: 0.9rem;
	line-height: 1.7;
	margin-bottom: 18px;
}

.service-card a,
.primary-cta,
.secondary-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 3;
	pointer-events: auto;
	gap: 10px;
	width: fit-content;
	min-width: 214px;
	padding: 15px 24px;
	border-radius: 999px;
	border: 0;
	font-weight: 600;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.service-card a {
	width: 100%;
	min-width: 0;
	padding: 11px 14px;
	font-size: 0.88rem;
	line-height: 1.2;
	font-weight: 700;
	box-shadow: 0 8px 20px rgba(37, 211, 102, 0.16);
	animation: none;
}

.service-card a,
.primary-cta,
.secondary-cta,
.floating-whatsapp {
	background: var(--whatsapp);
	color: #ffffff;
	box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.66);
	animation: whatsappPulse 2.6s infinite;
}

.service-card a:hover,
.primary-cta:hover,
.secondary-cta:hover,
.floating-whatsapp:hover {
	transform: scale(1.04);
}

.service-card a:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(37, 211, 102, 0.24);
}

.service-card-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.service-card-actions--single {
	grid-template-columns: 1fr;
}

.service-card-actions a {
	width: 100%;
	padding: 11px 10px;
	min-width: 0;
	font-size: 0.82rem;
}

.service-card-page-link {
	background: #121212 !important;
	color: #ffffff !important;
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.26) !important;
	animation: none !important;
}

.service-card-page-link:hover {
	background: #1a1a1a !important;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3) !important;
}

.about-layout {
	display: grid;
	grid-template-columns: 1.25fr 0.75fr;
	gap: 22px;
	align-items: center;
}

.about-copy h2 {
	font-size: clamp(2.05rem, 3.2vw, 3.1rem);
	line-height: 1.04;
	margin-bottom: 14px;
}

.about-section {
	padding: 80px 0;
}

.about-copy p {
	max-width: 620px;
	font-size: 0.95rem;
	line-height: 1.72;
	color: rgba(247, 244, 238, 0.84);
}

@media (min-width: 1025px) {
	.about-copy .primary-cta {
		margin-top: 12px;
	}
}

.about-points {
	display: grid;
	gap: 16px;
	margin: 20px 0;
}

.about-points div {
	padding: 18px 20px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-points strong {
	display: block;
	margin-bottom: 6px;
	font-size: 0.98rem;
}

.about-points span {
	color: rgba(247, 244, 238, 0.72);
	line-height: 1.55;
	font-size: 0.92rem;
}

.about-panel-card {
	padding: 0;
	border-radius: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
	display: grid;
	place-items: center;
	min-height: 220px;
}

.about-panel-logo {
	width: min(100%, 280px);
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.35));
}

.service-card a i,
.primary-cta i,
.secondary-cta i {
	font-size: 0.9em;
	line-height: 1;
}

.panel-label {
	display: inline-flex;
	padding: 9px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--accent);
	margin-bottom: 20px;
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.about-panel-card h3 {
	font-size: 2rem;
	margin-bottom: 16px;
}

.about-panel-card p {
	color: rgba(247, 244, 238, 0.78);
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 28px;
}

.about-stats div {
	padding: 18px 14px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.05);
	text-align: center;
}

.about-stats strong {
	display: block;
	font-size: 2rem;
	color: var(--accent);
	margin-bottom: 8px;
}

.about-stats span {
	color: rgba(247, 244, 238, 0.74);
	font-size: 0.92rem;
}

.lawyers-showcase {
	display: grid;
	gap: 26px;
}

.lawyers-stage {
	position: relative;
	min-height: 520px;
}

.lawyer-slide {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 28px;
	align-items: center;
	padding: 28px;
	border-radius: var(--radius-lg);
	border: 1.5px solid rgba(0, 0, 0, 0.68);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 238, 0.92));
	box-shadow: 0 20px 44px rgba(0, 0, 0, 0.2), 0 6px 16px rgba(0, 0, 0, 0.14);
	opacity: 0;
	pointer-events: none;
	transform: translateY(18px) scale(0.985);
	transition: opacity 0.45s ease, transform 0.45s ease;
}

.lawyer-slide.is-active {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0) scale(1);
}

.lawyer-photo {
	position: relative;
	width: 420px;
	height: 420px;
	flex-shrink: 0;
	align-self: center;
	justify-self: center;
	border-radius: 999px;
	overflow: hidden;
	display: grid;
	place-items: center;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 0.92rem;
	border: 4px solid rgba(0, 0, 0, 0.62);
	box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08), 0 14px 30px rgba(0, 0, 0, 0.18);
}

.lawyer-photo::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.48) 100%);
}

.lawyer-photo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.lawyer-photo span {
	position: relative;
	z-index: 1;
	padding: 14px 18px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.34);
	border: 1px solid rgba(255, 255, 255, 0.18);
}

.photo-one {
	background:
		radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.16), transparent 24%),
		linear-gradient(160deg, #1b1b1b 0%, #2a2a2a 45%, #101010 100%);
}

.photo-two {
	background:
		radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.16), transparent 24%),
		linear-gradient(160deg, #151515 0%, #303030 50%, #0c0c0c 100%);
}

.lawyer-details {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 10px 8px;
}

.lawyer-role {
	display: inline-flex;
	width: fit-content;
	margin-bottom: 16px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.08);
	color: #404040;
	font-size: 0.82rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.lawyer-details h3 {
	font-size: clamp(2.3rem, 4vw, 3.6rem);
	margin-bottom: 16px;
}

.lawyer-details p {
	max-width: 560px;
	color: #4d4841;
}

.lawyer-controls {
	display: flex;
	justify-content: center;
	gap: 12px;
}

.lawyer-control {
	min-width: 140px;
	padding: 13px 18px;
	border-radius: 999px;
	border: 1px solid rgba(17, 17, 17, 0.1);
	background: rgba(17, 17, 17, 0.05);
	color: #2b2925;
	cursor: pointer;
	transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.lawyer-control.is-active,
.lawyer-control:hover {
	background: #111111;
	color: #ffffff;
	transform: translateY(-2px);
}

.cta-strip {
	padding: 84px 0;
}

.cta-strip-layout {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.cta-strip__logo {
	width: min(100%, 470px);
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.4));
	flex-shrink: 0;
	margin-left: clamp(16px, 4vw, 64px);
}

.cta-strip__title {
	display: grid;
	gap: 8px;
	max-width: 680px;
}

.cta-strip__title p {
	display: block;
	margin: 0;
	text-wrap: balance;
}

.cta-strip__title p:first-child {
	max-width: 22ch;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(1.92rem, 3.4vw, 2.95rem);
	line-height: 1.04;
	letter-spacing: -0.03em;
}

.cta-strip__title p:last-child {
	max-width: 30ch;
	font-size: 0.98rem;
	line-height: 1.68;
	color: rgba(247, 244, 238, 0.82);
}

.site-footer {
	padding: 80px 0 28px;
	background: #020202;
	color: rgba(247, 244, 238, 0.82);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.footer-grid > div {
	padding-left: 18px;
}

.footer-grid > div:first-child {
	padding-left: 0;
}

.footer-grid > div:not(:first-child) {
	border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer h3 {
	position: relative;
	font-size: 1.8rem;
	margin-bottom: 18px;
	color: #ffffff;
}

.site-footer h3::after {
	content: "";
	display: block;
	width: 36px;
	height: 1px;
	margin-top: 10px;
	background: rgba(255, 255, 255, 0.28);
}

.site-footer ul {
	list-style: none;
	display: grid;
	gap: 12px;
}

.site-footer li,
.site-footer a,
.site-footer p {
	color: rgba(247, 244, 238, 0.72);
}

.site-footer a:hover {
	color: #ffffff;
}

.contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.contact-list i {
	color: var(--accent);
	margin-top: 4px;
}

.footer-bottom {
	margin-top: 46px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	text-align: center;
}

.footer-bottom p {
	font-size: 0.92rem;
	letter-spacing: 0.03em;
	color: rgba(247, 244, 238, 0.68);
}

.floating-whatsapp,
.back-to-top {
	position: fixed;
	z-index: 1000;
	width: 60px;
	height: 60px;
	display: grid;
	place-items: center;
	border-radius: 50%;
}

.floating-whatsapp {
	left: 22px;
	bottom: 22px;
	font-size: 1.8rem;
}

.back-to-top {
	right: 22px;
	bottom: 22px;
	border: 1px solid rgba(255, 255, 255, 0.26);
	background: rgba(8, 8, 8, 0.82);
	color: #ffffff;
	backdrop-filter: blur(16px);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
	opacity: 0;
	visibility: hidden;
	transform: translateY(16px);
	transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
	cursor: pointer;
}

.back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.back-to-top:hover {
	background: rgba(8, 8, 8, 0.92);
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.4);
}

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.service-card.reveal.is-visible:hover {
	transform: translateY(-14px) scale(1.01);
}

@keyframes whatsappPulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.68);
	}

	70% {
		box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
	}
}

@keyframes topLinePulse {
	0%,
	100% {
		opacity: 0.14;
		transform: scaleX(0.94);
	}

	50% {
		opacity: 0.34;
		transform: scaleX(1);
	}
}

@media (min-width: 1440px) {
	:root {
		--container: 1380px;
	}

	.section {
		padding: 124px 0;
	}

	.hero-logo {
		width: min(54vw, 760px);
	}

	.cards-grid {
		gap: 28px;
	}

	.service-card {
		min-height: 320px;
		padding: 28px 26px 24px;
	}

	.about-layout {
		grid-template-columns: 1.1fr 0.9fr;
		gap: 40px;
	}

	.about-copy p {
		max-width: 680px;
	}

	.about-panel-logo {
		width: min(100%, 300px);
	}

	.lawyers-stage {
		min-height: 560px;
	}

	.lawyer-slide {
		grid-template-columns: 0.95fr 1.05fr;
		padding: 34px;
	}

	.footer-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 36px;
	}
}

@media (max-width: 1200px) {
	.section {
		padding: 96px 0;
	}

	.hero-logo {
		width: min(78vw, 520px);
	}

	.cards-grid {
		gap: 20px;
	}

	.service-card {
		min-height: 0;
	}

	.about-layout {
		grid-template-columns: 1.1fr 0.9fr;
		gap: 28px;
	}

	.about-panel-logo {
		width: min(100%, 260px);
	}

	.lawyers-stage {
		min-height: 540px;
	}

	.lawyer-slide {
		gap: 22px;
		padding: 24px;
	}

	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 1024px) {
	.cards-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.service-card {
		grid-column: auto;
	}

	.service-card:nth-child(4),
	.service-card:nth-child(5) {
		grid-column: auto;
	}

	.about-layout,
	.lawyer-slide,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-grid > div {
		padding-left: 0;
		border-left: 0;
	}

	.about-copy {
		max-width: 720px;
	}

	.about-panel-card {
		min-height: 0;
	}

	.about-panel-logo {
		width: min(100%, 240px);
	}

	.lawyers-stage {
		min-height: 680px;
	}

	.lawyer-slide {
		gap: 24px;
	}

	.cta-strip-layout {
		flex-direction: column;
		align-items: center;
	}
}

@media (min-width: 821px) and (max-width: 1180px) {
	.site-footer {
		padding: 72px 0 24px;
	}

	.about-layout {
		grid-template-columns: 1.08fr 0.92fr;
		gap: 24px;
	}

	.lawyer-slide {
		grid-template-columns: 0.95fr 1.05fr;
		gap: 20px;
	}

	.footer-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 18px;
	}

	.footer-grid > div {
		padding-left: 12px;
		border-left: 1px solid rgba(255, 255, 255, 0.12);
	}

	.footer-grid > div:first-child {
		padding-left: 0;
		border-left: 0;
	}

	.site-footer h3 {
		font-size: 1.45rem;
		margin-bottom: 14px;
	}

	.site-footer li,
	.site-footer a,
	.site-footer p {
		font-size: 0.9rem;
	}

	.footer-bottom {
		margin-top: 34px;
	}

	.cta-strip-layout {
		flex-direction: row;
		align-items: center;
		gap: 18px;
	}

	.cta-strip__logo {
		width: min(100%, 320px);
		margin-left: 0;
	}

	.cta-strip__title p:first-child {
		max-width: 24ch;
	}

	.cta-strip__title p:last-child {
		max-width: 34ch;
	}
}

@media (max-width: 820px) {
	.section-heading {
		margin-bottom: 42px;
	}

	.about-layout {
		gap: 34px;
	}

	.lawyers-stage {
		min-height: 0;
	}

	.lawyer-slide {
		position: static;
		display: none;
		padding: 22px;
		transform: none;
	}

	.lawyer-slide.is-active {
		display: grid;
	}

	.lawyer-photo {
		width: 320px;
		height: 320px;
	}

	.cta-strip-layout {
		gap: 24px;
	}

	.cta-strip__logo {
		width: min(100%, 260px);
		margin-left: 0;
	}

	.cta-strip__title {
		gap: 10px;
		text-align: center;
	}

	.cta-strip__title p:first-child,
	.cta-strip__title p:last-child {
		max-width: 100%;
	}
}

@media (max-width: 720px) {
	.section {
		padding: 84px 0;
	}

	.container {
		width: min(calc(100% - 28px), var(--container));
	}

	.hero-logo {
		width: min(88vw, 360px);
	}

	.hero-scroll-link {
		padding: 12px 18px;
		font-size: 0.92rem;
	}

	.cards-grid,
	.about-stats {
		grid-template-columns: 1fr;
	}

	.service-card {
		min-height: 0;
	}

	.service-card,
	.lawyer-slide,
	.about-panel-card {
		padding: 22px;
	}

	.about-copy h2 {
		font-size: clamp(1.8rem, 8vw, 2.4rem);
	}

	.about-copy p {
		font-size: 0.92rem;
	}

	.cta-strip__title {
		gap: 8px;
	}

	.cta-strip__title p:first-child {
		font-size: clamp(1.64rem, 6.4vw, 2.18rem);
	}

	.cta-strip__title p:last-child {
		max-width: 28ch;
		font-size: 0.9rem;
		line-height: 1.58;
	}

	.about-points div {
		padding: 16px 18px;
	}

	.about-panel-logo {
		width: min(100%, 220px);
	}

	.lawyers-stage {
		min-height: 0;
	}

	.lawyer-controls {
		flex-direction: column;
	}

	.lawyer-control,
	.service-card a,
	.primary-cta,
	.secondary-cta {
		width: 100%;
	}

	.floating-whatsapp,
	.back-to-top {
		width: 54px;
		height: 54px;
		bottom: 18px;
	}

	.floating-whatsapp {
		left: 18px;
	}

	.back-to-top {
		right: 18px;
	}
}

@media (max-width: 560px) {
	.container {
		width: min(calc(100% - 22px), var(--container));
	}

	.section {
		padding: 72px 0;
	}

	.eyebrow {
		gap: 8px;
		font-size: 0.72rem;
		letter-spacing: 0.18em;
	}

	.eyebrow::before,
	.eyebrow::after {
		width: 18px;
	}

	.h2,
	h2 {
		font-size: clamp(1.72rem, 9vw, 2.24rem);
	}

	.lawyer-photo {
		width: 260px;
		height: 260px;
	}

	.cta-strip__title p:first-child {
		font-size: clamp(1.44rem, 7.8vw, 1.88rem);
		line-height: 1.08;
	}

	.cta-strip__title p:last-child {
		max-width: 100%;
		font-size: 0.88rem;
		line-height: 1.52;
	}

	.cta-strip__title p:last-child {
		font-size: 0.9rem;
		line-height: 1.55;
	}

	.service-card,
	.lawyer-slide,
	.about-panel-card {
		padding: 18px;
		border-radius: 20px;
	}

	.service-card a,
	.primary-cta,
	.secondary-cta {
		min-width: 0;
		padding: 13px 16px;
		font-size: 0.84rem;
	}

	.lawyer-details h3 {
		font-size: clamp(1.9rem, 10vw, 2.5rem);
	}

	.site-footer {
		padding-top: 64px;
	}

	.floating-whatsapp,
	.back-to-top {
		width: 50px;
		height: 50px;
		bottom: 14px;
	}

	.floating-whatsapp {
		left: 14px;
		font-size: 1.55rem;
	}

	.back-to-top {
		right: 14px;
	}
}
