html {
	scroll-behavior: smooth;
	scroll-padding-top: 110px;
}

section[id],
footer[id] {
	scroll-margin-top: 110px;
}

#services {
	scroll-margin-top: -2.25rem;
}

#contact {
	scroll-margin-top: -1.5rem;
}

body {
	box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--charcoal: #1c1d25;
	--charcoal-light: #2a2b35;
	--tan-gold: #cda378;
	--tan-gold-dark: #b88f68;
	--white: #ffffff;
	--green-muted: #6b8068;
	--dark-bg: #15161d;
}

body {
	font-family: "Inter", sans-serif;
	background: var(--charcoal);
	color: var(--white);
	line-height: 1.6;
	overflow-x: hidden;
	width: 100%;
}

.nav-brand-text h1,
.hero h1,
.section-title,
.cta-section h2 {
	font-family: "Montserrat", sans-serif;
}

/* Main Content */
.main-content {
	width: 100%;
	padding-top: 100px;
}

/* Navigation */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(28, 29, 37, 0.98);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 1.5rem 0;
	border-bottom: 3px solid var(--tan-gold);
}

.nav-container {
	max-width: 100%;
	margin: 0 auto;
	padding: 0 4rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.nav-brand {
	display: flex;
	align-items: center;
	gap: 1rem;
	text-decoration: none;
	color: inherit;
}

.nav-logo {
	width: 60px;
	height: 60px;
}

.nav-brand-text h1 {
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--white);
	letter-spacing: 0.5px;
}

.nav-brand-text p {
	font-size: 0.75rem;
	color: var(--tan-gold);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.nav-menu {
	display: flex;
	gap: 3rem;
	list-style: none;
	align-items: center;
	margin-right: 2rem;
}

.nav-menu a {
	color: var(--white);
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	letter-spacing: 0.5px;
	transition: color 0.3s ease;
	text-transform: uppercase;
}

.nav-menu a:hover {
	color: var(--tan-gold);
}

.nav-cta {
	background: var(--tan-gold);
	color: var(--charcoal);
	padding: 0.8rem 1.8rem;
	border-radius: 50px;
	font-weight: 700;
	transition: all 0.3s ease;
	text-decoration: none;
}

.nav-cta:hover {
	background: var(--tan-gold-dark);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(201, 164, 92, 0.3);
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.nav-buttons {
	display: flex;
	align-items: center;
	gap: 0.9rem;
}

.nav-login {
	color: var(--white);
	text-decoration: none;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;

	padding: 0.8rem 1.4rem;
	border-radius: 50px;
	border: 2px solid rgba(255, 255, 255, 0.7);
	transition: all 0.3s ease;
}

.nav-login:hover {
	background: var(--white);
	color: var(--charcoal);
	transform: translateY(-2px);
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 2px solid rgba(255, 255, 255, 0.7);
	border-radius: 12px;
	background: transparent;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--white);
	border-radius: 999px;
	transition:
		transform 0.25s ease,
		opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-panel {
	display: none;
	position: absolute;
	top: calc(100% + 0.75rem);
	right: 0;
	width: auto;
	background: rgba(28, 29, 37, 0.98);
	border: 1px solid rgba(201, 164, 92, 0.25);
	border-radius: 16px;
	padding: 0.65rem;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
	z-index: 1100;
}

.mobile-nav-panel.is-open {
	display: grid;
	gap: 0.35rem;
}

.mobile-nav-panel a {
	color: var(--white);
	text-decoration: none;
	font-weight: 700;
	padding: 0.85rem 0.9rem;
	border-radius: 10px;
	text-align: center;
}

.mobile-nav-panel a:hover {
	background: rgba(201, 164, 92, 0.12);
	color: var(--tan-gold);
}

/* Hero */
.hero {
	min-height: calc(100vh - 100px);
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	align-items: start;
	margin-top: 0;
	background: linear-gradient(
		135deg,
		var(--charcoal) 0%,
		var(--charcoal-light) 100%
	);
}

.hero-left {
	padding: 2.25rem 4rem 6rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.hero-right {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 3.25rem 2.5rem 2.5rem;
}

.hero h1 {
	font-size: clamp(2.4rem, 4.2vw, 4rem);
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	letter-spacing: -2px;
}

.hero h1 .highlight {
	background: linear-gradient(135deg, var(--tan-gold) 0%, #d4af6a 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-description {
	font-size: clamp(1rem, 1.2vw, 1.2rem);
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.8;
	margin-bottom: 3rem;
	max-width: 500px;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 3rem;
	padding: 2rem 0;
	border-top: 1px solid rgba(201, 164, 92, 0.2);
	border-bottom: 1px solid rgba(201, 164, 92, 0.2);
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--tan-gold);
	display: block;
}

.stat-label {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.6);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.hero-buttons {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.btn {
	padding: 1.2rem 2.5rem;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.btn-primary {
	background: var(--tan-gold);
	color: var(--charcoal);
}

.btn-primary:hover {
	background: var(--tan-gold-dark);
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(201, 164, 92, 0.4);
}

.btn-outline {
	background: transparent;
	color: var(--white);
	border: 2px solid var(--white);
}

.btn-outline:hover {
	background: var(--white);
	color: var(--charcoal);
	transform: translateY(-3px);
}

.hero-image-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	height: 640px;
	width: 100%;
	max-width: 720px;
	gap: 2rem;
	padding: 0;
}

.hero-img-card {
	background: linear-gradient(135deg, var(--green-muted) 0%, #5a6d57 100%);
	border-radius: 20px;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
	transition: transform 0.3s ease;
	transform: scale(1.02);
	box-shadow: 0 5px 40px rgba(0, 0, 0, 0.5);
}

.hero-card-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;

	/* makes text readable + looks premium */
	opacity: 0.88;
	filter: saturate(1.05) contrast(1.05);
	transform: scale(1.01);
	transition: opacity 0.25s ease;
}

/* optional: brighten slightly on hover */
.hero-img-card:hover .hero-card-video {
	opacity: 0.9;
}

.hero-img-card:hover {
	transform: scale(1.05);
}

.hero-img-card:first-child {
	grid-row: span 2;
}

.hero-img-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		transparent 35%,
		rgba(26, 26, 26, 0.72) 100%
	);
	display: flex;
	align-items: flex-end;
	padding: 1.5rem;
	opacity: 1;
	transition: opacity 0.3s ease;
}

.hero-img-card:hover .hero-img-overlay {
	opacity: 1;
}

.hero-img-label {
	color: var(--white);
	font-weight: 700;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

/* Services */
.services {
	padding: 8rem 3rem;
	background: var(--charcoal-light);
}

.services-container {
	max-width: 1600px;
	margin: 0 auto;
}

.section-title-wrapper {
	text-align: center;
	margin-bottom: 5rem;
}

.section-title {
	font-size: clamp(2.2rem, 3.5vw, 3.5rem);
	font-weight: 900;
	margin-bottom: 1rem;
	letter-spacing: -1px;
}

.section-subtitle {
	font-size: 1.2rem;
	color: var(--tan-gold);
	max-width: 600px;
	margin: 0 auto;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

.service-card {
	background: var(--charcoal);
	border-radius: 20px;
	padding: 3rem;
	position: relative;
	overflow: hidden;
	border: 2px solid transparent;
	transition: all 0.4s ease;
}

.service-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(90deg, var(--tan-gold) 0%, #d4af6a 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-card:hover {
	border-color: rgba(201, 164, 92, 0.3);
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.service-icon-wrapper {
	width: 80px;
	height: 80px;
	background: linear-gradient(
		135deg,
		rgba(201, 164, 92, 0.2) 0%,
		rgba(201, 164, 92, 0.05) 100%
	);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	border: 2px solid rgba(201, 164, 92, 0.3);
	transition: all 0.4s ease;
}

.service-card:hover .service-icon-wrapper {
	transform: rotateY(360deg);
	background: var(--tan-gold);
}

.service-card h3 {
	font-size: 1.6rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.service-card p {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.8;
	margin-bottom: 2rem;
}

.service-desc-mobile {
	display: none;
}

.service-link {
	color: var(--tan-gold);
	text-decoration: none;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 1px;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: gap 0.3s ease;
}

.service-link:hover {
	gap: 1rem;
}

/* Before/After */
.before-after {
	padding: 8rem 3rem;
	background: var(--charcoal);
}

.before-after-container {
	max-width: 1400px;
	margin: 0 auto;
}

.ba-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin-top: 4rem;
}

.ba-slider-wrapper {
	position: relative;
	overflow: hidden;
	cursor: ew-resize;
	user-select: none;
	width: 100%;
	aspect-ratio: 4 / 3;
	min-height: 420px;
	border-radius: 24px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.ba-after-img,
.ba-before-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ba-before-layer {
	position: absolute;
	inset: 0;
	width: 50%;
	overflow: hidden;
	z-index: 2;
}

.ba-slider-line {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 2px;
	background: rgba(255, 255, 255, 0.9);
	transform: translateX(-50%);
	z-index: 3;
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.35);
}

.ba-slider-handle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 54px;
	height: 54px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.9);
	background: var(--tan-gold);
	color: var(--charcoal);
	font-size: 1.2rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: ew-resize;
	z-index: 4;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.ba-badge {
	position: absolute;
	top: 1rem;
	padding: 0.45rem 0.75rem;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	z-index: 4;
	background: rgba(28, 29, 37, 0.8);
	color: var(--white);
	backdrop-filter: blur(6px);
}

.ba-badge-before {
	left: 1rem;
}

.ba-badge-after {
	right: 1rem;
}

.ba-image {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 6rem;
}

.ba-text {
	padding-left: 2rem;
}

.ba-text h2 {
	font-size: 3rem;
	margin-bottom: 2rem;
	font-weight: 900;
}

.ba-feature {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 2rem;
}

.ba-feature-icon {
	width: 50px;
	height: 50px;
	background: rgba(201, 164, 92, 0.15);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	flex-shrink: 0;
	border: 1px solid rgba(201, 164, 92, 0.3);
}

.ba-feature-text h4 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	font-weight: 700;
}

.ba-feature-text p {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.7;
}

/* Testimonials */
.testimonials {
	padding: 8rem 3rem;
	background: var(--charcoal-light);
}

.testimonials-container {
	max-width: 1600px;
	margin: 0 auto;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2.5rem;
	margin-top: 4rem;
}

.testimonial-card {
	background: var(--charcoal);
	padding: 3rem;
	border-radius: 20px;
	position: relative;
	border: 2px solid rgba(201, 164, 92, 0.1);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.testimonial-card:hover {
	border-color: var(--tan-gold);
	transform: translateY(-5px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.testimonial-header {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.testimonial-avatar {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, var(--tan-gold) 0%, #d4af6a 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: 800;
	color: var(--charcoal);
	flex-shrink: 0;
}

.testimonial-info h4 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 0.3rem;
}

.testimonial-role {
	color: var(--tan-gold);
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
}

.testimonial-stars {
	color: var(--tan-gold);
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
}

.testimonial-text {
	font-size: 1.05rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.85);
	font-style: italic;
	margin-top: auto;
}

.quote-mark {
	position: absolute;
	top: 2rem;
	right: 2rem;
	font-size: 5rem;
	color: rgba(201, 164, 92, 0.1);
	font-family: Georgia, serif;
}

.testimonial-review-cta {
	text-align: center;
	margin: 0 0 2.5rem;
}

/* CTA */
.cta-section {
	padding: 8rem 3rem;
	background: linear-gradient(
		135deg,
		var(--tan-gold-dark) 0%,
		var(--tan-gold) 100%
	);
}

.cta-container {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.cta-section h2 {
	font-size: clamp(2.2rem, 3.5vw, 3.5rem);
	color: var(--charcoal);
	margin-bottom: 1.5rem;
	font-weight: 900;
}

.cta-section .section-subtitle {
	color: rgba(26, 26, 26, 0.8);
	margin-bottom: 3rem;
	font-size: 1.3rem;
}

.cta-title-mobile,
.cta-sub-mobile {
	display: none;
}

.cta-form {
	background: var(--charcoal);
	padding: 4rem;
	border-radius: 20px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.form-field {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.form-field.full {
	grid-column: span 2;
}

.form-field label {
	color: var(--tan-gold);
	font-weight: 700;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.form-field input,
.form-field select,
.form-field textarea {
	padding: 1.2rem;
	background: var(--charcoal-light);
	border: 2px solid rgba(201, 164, 92, 0.2);
	border-radius: 10px;
	color: var(--white);
	font-size: 1rem;
	font-family: inherit;
	transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	outline: none;
	border-color: var(--tan-gold);
	background: var(--charcoal);
}

.form-field textarea {
	resize: vertical;
	min-height: 150px;
}

.form-submit-btn {
	width: 100%;
	padding: 1.5rem;
	background: var(--tan-gold);
	color: var(--charcoal);
	border: none;
	border-radius: 10px;
	font-size: 1.1rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 1rem;
}

.form-submit-btn:hover {
	background: var(--tan-gold-dark);
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(201, 164, 92, 0.4);
}

/* Footer */
footer {
	background: var(--dark-bg);
	padding: 5rem 3rem 2rem;
	border-top: 3px solid var(--tan-gold);
}

.footer-container {
	max-width: 1600px;
	margin: 0 auto;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 4rem;
	margin-bottom: 4rem;
}

.footer-brand h3 {
	font-size: 1.8rem;
	font-weight: 800;
	margin-bottom: 1rem;
}

.footer-brand p {
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.8;
	margin-bottom: 2rem;
}

.footer-social {
	display: flex;
	gap: 1rem;
}

.social-link {
	width: 45px;
	height: 45px;
	background: rgba(201, 164, 92, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--tan-gold);
	text-decoration: none;
	font-size: 1.2rem;
	transition: all 0.3s ease;
	border: 1px solid rgba(201, 164, 92, 0.2);
}

.social-link:hover {
	color: var(--charcoal);
	transform: translateY(-3px);
}

.footer-section h4 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--tan-gold);
}

.footer-section ul {
	list-style: none;
}

.footer-section li {
	margin-bottom: 0.8rem;
}

.footer-section a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section a:hover {
	color: var(--tan-gold);
}

.footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	color: rgba(255, 255, 255, 0.5);
}

.footer-section:last-child li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.footer-contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	line-height: 1;
}

.mobile-call-btn {
	display: none;
	transition: opacity 0.3s ease;
}

/* Responsive */

@media (min-width: 1400px) {
	.services {
		padding: 4.5rem 4rem;
	}

	.services-container {
		max-width: 1500px;
	}

	.services .section-title-wrapper {
		margin-bottom: 3rem;
	}

	.services .section-subtitle {
		max-width: 700px;
	}

	.services-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.5rem;
		align-items: stretch;
	}

	.service-card {
		padding: 2.25rem;
		min-height: 320px;
		display: flex;
		flex-direction: column;
	}

	.service-icon-wrapper {
		width: 72px;
		height: 72px;
		font-size: 2.2rem;
		margin-bottom: 1.25rem;
	}

	.service-card h3 {
		font-size: 1.85rem;
		margin-bottom: 0.85rem;
		line-height: 1.15;
	}

	.service-card p {
		font-size: 1rem;
		line-height: 1.7;
		margin-bottom: 1.5rem;
	}

	.service-link {
		margin-top: auto;
	}

	.before-after {
		padding: 5.5rem 4rem;
	}

	.before-after-container {
		max-width: 1500px;
	}

	.before-after .section-title-wrapper {
		margin-bottom: 2.5rem;
	}

	.ba-content {
		gap: 3rem;
		margin-top: 2.5rem;
		align-items: center;
	}

	.ba-text {
		padding-left: 1rem;
	}

	.ba-text h2 {
		font-size: 3.1rem;
		margin-bottom: 1.5rem;
		line-height: 1.15;
	}

	.ba-feature {
		margin-bottom: 1.4rem;
	}

	.testimonials {
		padding: 4rem 4rem 3.5rem;
	}

	.testimonials-container {
		max-width: 1500px;
	}

	.testimonials .section-title-wrapper {
		margin-bottom: 2rem;
	}

	.testimonials-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.5rem;
		margin-top: 2rem;
		align-items: stretch;
	}

	.testimonial-card {
		padding: 2rem;
		min-height: 300px;
	}

	.testimonial-header {
		gap: 1rem;
		margin-bottom: 1.25rem;
	}

	.testimonial-avatar {
		width: 58px;
		height: 58px;
		font-size: 1.6rem;
	}

	.testimonial-info h4 {
		font-size: 1.1rem;
	}

	.testimonial-role {
		font-size: 0.8rem;
	}

	.testimonial-stars {
		font-size: 1rem;
		margin-bottom: 1rem;
	}

	.testimonial-text {
		font-size: 0.98rem;
		line-height: 1.65;
	}

	.cta-section {
		padding: 3.25rem 2rem 3rem;
	}

	.cta-container {
		max-width: 1100px;
	}

	.cta-section h2 {
		font-size: 2.75rem;
		line-height: 1.05;
		margin-bottom: 0.5rem;
	}

	.cta-section .section-subtitle {
		font-size: 1rem;
		line-height: 1.45;
		margin-bottom: 1.1rem;
	}

	.cta-form {
		max-width: 940px;
		margin: 0 auto;
		width: 100%;
		box-sizing: border-box;
	}

	.form-grid {
		gap: 0.9rem;
		margin-bottom: 0.9rem;
	}

	.form-field textarea {
		min-height: 130px;
	}

	.form-submit-btn {
		margin-top: 0.25rem;
	}
}
/* Short desktop heights */
@media (max-height: 900px) and (min-width: 1025px) {
	.hero-left {
		padding: 4rem 3rem;
	}

	.hero-stats {
		margin-bottom: 2rem;
		padding: 1.5rem 0;
	}

	.hero-description {
		margin-bottom: 2rem;
	}

	.hero-image-grid {
		height: 560px;
		gap: 1.5rem;
	}

	/*SERVICES*/
	.services {
		padding: 4rem 8rem 3.5rem;
	}

	.services .section-title-wrapper {
		margin-bottom: 1.5rem;
	}

	.services .section-label {
		margin-bottom: 0.45rem;
		font-size: 0.8rem;
		letter-spacing: 2px;
	}

	.services .section-title {
		font-size: 2.7rem;
		margin-bottom: 0.45rem;
		line-height: 1.05;
	}

	.services .section-subtitle {
		font-size: 1rem;
		line-height: 1.5;
		max-width: 620px;
	}

	.services-grid {
		gap: 1.1rem;
	}

	.service-card {
		padding: 1.4rem;
		border-radius: 18px;
		min-height: 0;
	}

	.service-icon-wrapper {
		width: 58px;
		height: 58px;
		margin-bottom: 0.75rem;
		border-radius: 14px;
		font-size: 1.8rem;
	}

	.service-card h3 {
		font-size: 1.2rem;
		margin-bottom: 0.45rem;
		line-height: 1.15;
	}

	.service-card p {
		font-size: 0.95rem;
		line-height: 1.5;
		margin-bottom: 0.85rem;
	}

	.service-link {
		font-size: 0.78rem;
		padding-top: 0.35rem;
	}

	/* BEFORE / AFTER */
	.before-after {
		padding: 4rem 8rem 3.5rem;
	}

	.before-after .section-title-wrapper {
		margin-bottom: 1.75rem;
	}

	.before-after .section-label {
		margin-bottom: 0.45rem;
		font-size: 0.8rem;
		letter-spacing: 2px;
	}

	.before-after .section-title {
		font-size: 2.7rem;
		margin-bottom: 0.45rem;
		line-height: 1.05;
	}

	.before-after .section-subtitle {
		font-size: 1rem;
		line-height: 1.5;
		max-width: 700px;
	}

	.ba-content {
		gap: 2rem;
		margin-top: 1.5rem;
		align-items: start;
	}

	.ba-slider-wrapper {
		height: 420px;
		border-radius: 20px;
	}

	.ba-image {
		font-size: 5.5rem;
	}

	.ba-text {
		padding-left: 0;
	}

	.ba-text h2 {
		font-size: 2.6rem;
		line-height: 1.05;
		margin-bottom: 1rem;
	}

	.ba-feature {
		gap: 0.85rem;
		margin-bottom: 1rem;
		align-items: flex-start;
	}

	.ba-feature-icon {
		width: 46px;
		height: 46px;
		font-size: 1.25rem;
		border-radius: 12px;
		flex-shrink: 0;
	}

	.ba-feature-text h4 {
		font-size: 1.1rem;
		margin-bottom: 0.2rem;
	}

	.ba-feature-text p {
		font-size: 0.96rem;
		line-height: 1.5;
	}

	/* TESTIMONIALS */
	.testimonials {
		padding: 3.5rem 8rem 3rem;
	}

	.testimonials .section-title-wrapper {
		margin-bottom: 1.5rem;
	}

	.testimonials .section-label {
		margin-bottom: 0.45rem;
		font-size: 0.8rem;
		letter-spacing: 2px;
	}

	.testimonials .section-title {
		font-size: 2.7rem;
		margin-bottom: 0.45rem;
		line-height: 1.05;
	}

	.testimonials .section-subtitle {
		font-size: 1rem;
		line-height: 1.5;
		max-width: 700px;
	}

	.testimonials-grid {
		gap: 1.1rem;
		margin-top: 1.5rem;
	}

	.testimonial-card {
		padding: 1.5rem;
		border-radius: 18px;
		min-height: 0;
	}

	.testimonial-header {
		gap: 0.85rem;
		margin-bottom: 0.85rem;
	}

	.testimonial-avatar {
		width: 58px;
		height: 58px;
		font-size: 1.65rem;
	}

	.testimonial-info h4 {
		font-size: 1.1rem;
		margin-bottom: 0.15rem;
	}

	.testimonial-role {
		font-size: 0.8rem;
		letter-spacing: 1px;
	}

	.testimonial-stars {
		font-size: 1rem;
		margin-bottom: 0.85rem;
	}

	.testimonial-text {
		font-size: 0.98rem;
		line-height: 1.65;
	}

	.quote-mark {
		font-size: 3.5rem;
		top: 1rem;
		right: 1rem;
	}

	/* CTA */
	.cta-section {
		padding: 3rem 2rem 3rem;
	}

	.cta-section h2 {
		font-size: 2.9rem;
		line-height: 1.05;
		margin-bottom: 0.65rem;
	}

	.cta-section .section-subtitle {
		font-size: 1rem;
		line-height: 1.5;
		margin-bottom: 1.4rem;
	}

	.cta-form {
		padding: 1.75rem;
		border-radius: 20px;
		max-width: 940px;
	}

	.form-grid {
		gap: 1rem;
		margin-bottom: 1rem;
	}

	.form-field {
		gap: 0.35rem;
	}

	.form-field label {
		font-size: 0.8rem;
		letter-spacing: 1px;
		margin-bottom: 0.15rem;
	}

	.form-field input,
	.form-field select,
	.form-field textarea {
		padding: 0.95rem 1rem;
		font-size: 0.96rem;
		border-radius: 10px;
	}

	.form-field textarea {
		min-height: 140px;
	}

	.form-submit-btn {
		padding: 1rem;
		font-size: 0.95rem;
		border-radius: 10px;
		margin-top: 0.35rem;
	}
}

/* Tablet + small laptop stacking */
@media (max-width: 1024px) {
	.nav-container {
		padding: 0 1.5rem;
	}

	.hero {
		grid-template-columns: 1fr;
	}

	.hero-left {
		padding: 4.5rem 1.75rem 2.25rem;
	}

	.hero-right {
		padding: 1.5rem 1.75rem 3rem;
		min-height: auto;
	}

	.hero-image-grid {
		max-width: 800px;
		height: auto;
		gap: 1.25rem;
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
		height: auto;
	}
}

/* Mobile/tablet nav stays longer */
@media (max-width: 900px) {
	.main-content {
		padding-top: 80px;
	}

	.nav-menu {
		display: none;
	}

	.nav-toggle {
		display: inline-flex;
	}

	.nav-container {
		position: relative;
		padding: 0 1rem;
	}

	.nav-actions,
	.nav-buttons {
		gap: 0.55rem;
	}

	.nav-cta,
	.nav-login {
		padding: 0.7rem 1rem;
		font-size: 0.82rem;
		text-decoration: none;
	}

	.nav-logo {
		width: 48px;
		height: 48px;
	}

	.nav-brand-text h1 {
		font-size: 1.15rem;
	}

	.nav-brand-text p {
		font-size: 0.62rem;
	}

	.cta-section .cta-title-mobile {
		display: block;
		font-family: "Montserrat", sans-serif;
		font-size: 1.5rem;
		font-weight: 800;
	}

	.cta-title-desktop,
	.cta-sub-desktop {
		display: none;
	}
}

/* Desktop nav only when there is room */
@media (min-width: 901px) {
	.nav-menu {
		display: flex;
	}

	.nav-toggle {
		display: none;
	}
}

@media (min-width: 901px) and (max-width: 1024px) {
	.nav-container {
		padding: 0 1.25rem;
	}

	.nav-menu {
		gap: 2rem;
	}

	.nav-menu a {
		font-size: 0.9rem;
	}

	.nav-actions,
	.nav-buttons {
		gap: 0.7rem;
	}

	.nav-cta {
		padding: 0.75rem 1.35rem;
		font-size: 0.9rem;
		white-space: nowrap;
		text-decoration: none;
	}

	.nav-login {
		padding: 0.75rem 1.15rem;
		font-size: 0.9rem;
		white-space: nowrap;
	}

	.nav-logo {
		width: 54px;
		height: 54px;
	}

	.nav-brand-text h1 {
		font-size: 1.25rem;
	}

	.nav-brand-text p {
		font-size: 0.68rem;
	}
}

/* Tablet layout: bigger mobile, tighter than desktop */
@media (min-width: 601px) and (max-width: 1024px) {
	.main-content {
		padding-top: 80px;
	}

	.services,
	.before-after,
	.testimonials,
	.cta-section,
	footer {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
		padding-top: 3rem;
		padding-bottom: 3rem;
	}

	.section-title-wrapper {
		margin-bottom: 2.5rem;
	}

	.section-title {
		font-size: 2.3rem;
	}

	.section-subtitle {
		font-size: 1.05rem;
		max-width: 700px;
	}

	.hero-left {
		padding: 3rem 1.5rem 2rem;
	}

	.hero-right {
		padding: 1rem 1.5rem 2.5rem;
		min-height: auto;
	}

	.hero h1 {
		font-size: 2.6rem;
		line-height: 1.08;
		margin-bottom: 1rem;
		letter-spacing: -1px;
	}

	.hero-description {
		font-size: 1rem;
		line-height: 1.65;
		margin-bottom: 1.75rem;
		max-width: 700px;
	}

	.hero-stats {
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem;
		margin-bottom: 2rem;
		padding: 1.25rem 0;
	}

	.stat-number {
		font-size: 2rem;
	}

	.hero-buttons {
		gap: 0.9rem;
	}

	.btn {
		padding: 1rem 1.4rem;
		font-size: 0.92rem;
	}

	.hero-image-grid {
		gap: 1rem;
		height: auto;
	}

	.hero-img-card:first-child {
		min-height: 220px;
	}

	.hero-img-card {
		min-height: 180px;
	}

	.services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.25rem;
	}

	.service-card {
		padding: 1.4rem;
		display: flex;
		flex-direction: column;
	}

	.service-icon-wrapper {
		width: 62px;
		height: 62px;
		margin-bottom: 0.8rem;
		border-radius: 16px;
		font-size: 2rem;
	}

	.service-card h3 {
		font-size: 1.2rem;
		margin-bottom: 0.45rem;
		line-height: 1.2;
		text-wrap: balance;
	}

	.service-card p {
		font-size: 0.92rem;
		line-height: 1.5;
		margin-bottom: 0.9rem;
	}

	.service-link {
		margin-top: auto;
		padding-top: 0.5rem;
		font-size: 0.78rem;
	}

	.service-desc-desktop {
		display: none;
	}

	.service-desc-mobile {
		display: block;
	}

	.before-after .section-title-wrapper {
		margin-bottom: 2rem;
	}

	.ba-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		margin-top: 2rem;
	}

	.ba-slider-wrapper {
		height: 300px;
		border-radius: 18px;
	}

	.ba-image {
		font-size: 5rem;
	}

	.ba-text {
		padding-left: 0;
	}

	.ba-text h2 {
		font-size: 2.2rem;
		line-height: 1.15;
		margin-bottom: 1.25rem;
	}

	.ba-feature {
		gap: 0.9rem;
		margin-bottom: 1.1rem;
	}

	.ba-feature-icon {
		width: 44px;
		height: 44px;
		font-size: 1.2rem;
		border-radius: 10px;
	}

	.ba-feature-text h4 {
		font-size: 1.05rem;
		margin-bottom: 0.2rem;
	}

	.ba-feature-text p {
		font-size: 0.95rem;
		line-height: 1.55;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
		gap: 1.25rem;
		margin-top: 2rem;
	}

	.testimonial-card {
		padding: 1.5rem;
		border-radius: 18px;
	}

	.testimonial-header {
		gap: 1rem;
		margin-bottom: 1rem;
	}

	.testimonial-avatar {
		width: 54px;
		height: 54px;
		font-size: 1.5rem;
	}

	.testimonial-info h4 {
		font-size: 1.05rem;
	}

	.testimonial-role {
		font-size: 0.78rem;
	}

	.testimonial-stars {
		font-size: 1rem;
		margin-bottom: 0.85rem;
	}

	.testimonial-text {
		font-size: 0.96rem;
		line-height: 1.6;
	}

	.quote-mark {
		font-size: 4rem;
		top: 1.2rem;
		right: 1.2rem;
	}

	.cta-section h2 {
		font-size: 2.3rem;
		margin-bottom: 0.8rem;
	}

	.cta-section .section-subtitle {
		font-size: 1.05rem;
		margin-bottom: 1.5rem;
	}

	.cta-form {
		padding: 1.5rem;
		border-radius: 18px;
	}

	.form-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
		margin-bottom: 1rem;
	}

	.form-field {
		gap: 0.35rem;
	}

	.form-field.full {
		grid-column: auto;
	}

	.form-field label {
		font-size: 0.8rem;
	}

	.form-field input,
	.form-field select,
	.form-field textarea {
		padding: 1rem;
		font-size: 0.95rem;
	}

	.form-field textarea {
		min-height: 120px;
	}

	.form-submit-btn {
		padding: 1rem;
		font-size: 0.95rem;
		margin-top: 0.5rem;
	}

	footer {
		padding: 3rem 1.5rem 1.5rem;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 1.75rem 1.5rem;
		margin-bottom: 2rem;
	}

	.footer-brand {
		grid-column: 1 / -1;
	}

	.footer-brand h3 {
		font-size: 1.4rem;
		margin-bottom: 0.75rem;
	}

	.footer-brand p {
		font-size: 1rem;
		line-height: 1.6;
		margin-bottom: 1rem;
	}

	.footer-section h4 {
		font-size: 1.05rem;
		margin-bottom: 0.7rem;
	}

	.footer-section li,
	.footer-section a {
		font-size: 0.95rem;
		line-height: 1.45;
	}

	.footer-section:last-child {
		grid-column: 1 / -1;
	}

	.footer-bottom {
		padding-top: 1rem;
		font-size: 0.9rem;
	}
}

/* Phone / large phone */
@media (max-width: 600px) {
	.main-content {
		padding-top: 86px;
	}

	nav {
		padding: 1rem 0;
	}

	.nav-container {
		padding: 0 0.85rem;
		gap: 0.55rem;
	}

	.nav-brand {
		gap: 0.65rem;
		min-width: 0;
	}

	.nav-logo {
		width: 42px;
		height: 42px;
		flex-shrink: 0;
	}

	.nav-brand-text h1 {
		font-size: 1rem;
		line-height: 1.05;
	}

	.nav-brand-text p {
		font-size: 0.56rem;
		letter-spacing: 0.6px;
	}

	.nav-actions,
	.nav-buttons {
		gap: 0.45rem;
	}

	.nav-cta,
	.nav-login {
		padding: 0.68rem 0.85rem;
		font-size: 0.78rem;
		white-space: nowrap;
		text-decoration: none;
	}

	.nav-toggle {
		width: 40px;
		height: 40px;
		border-radius: 10px;
	}

	.hero-left {
		padding: 2rem 1rem 1.25rem;
	}

	.hero h1 {
		font-size: 2.15rem;
		line-height: 1.08;
		letter-spacing: -1px;
		margin-bottom: 1rem;
	}

	.hero-description {
		font-size: 0.98rem;
		line-height: 1.65;
		margin-bottom: 1.75rem;
	}

	.hero-stats {
		grid-template-columns: 1fr;
		gap: 1.1rem;
		margin-bottom: 1.75rem;
		padding: 1.25rem 0;
	}

	.stat-number {
		font-size: 2rem;
	}

	.stat-label {
		font-size: 0.76rem;
	}

	.hero-buttons {
		gap: 0.85rem;
	}

	.btn {
		width: 100%;
		justify-content: center;
		padding: 1rem 1.2rem;
		font-size: 0.92rem;
	}

	.hero-right {
		padding: 0.5rem 1rem 2rem;
		min-height: auto;
	}

	.hero-image-grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		gap: 0.9rem;
		height: auto;
	}

	.hero-img-card:first-child {
		grid-row: auto;
		min-height: 180px;
	}

	.hero-img-card {
		min-height: 160px;
		border-radius: 16px;
	}

	.hero-img-overlay {
		opacity: 1;
		padding: 1rem;
	}

	.hero-img-label {
		font-size: 0.82rem;
	}

	.services,
	.before-after,
	.testimonials,
	.cta-section,
	footer {
		padding-left: 1rem;
		padding-right: 1rem;
		padding-top: 2rem;
		padding-bottom: 2rem;
	}

	.section-title-wrapper {
		margin-bottom: 2rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.section-subtitle {
		font-size: 1rem;
	}

	.services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1rem;
	}

	.service-card {
		padding: 1rem;
		display: flex;
		flex-direction: column;
	}

	.service-card h3 {
		font-size: 1.05rem;
		margin-bottom: 0.35rem;
		line-height: 1.2;
		text-wrap: balance;
	}

	.service-card p {
		font-size: 0.82rem;
		line-height: 1.4;
		margin-bottom: 0.7rem;
	}

	.service-icon-wrapper {
		width: 54px;
		height: 54px;
		margin-bottom: 0.6rem;
		border-radius: 14px;
	}

	.service-link {
		font-size: 0.72rem;
		margin-top: auto;
		padding-top: 0.6rem;
	}

	.service-desc-desktop {
		display: none;
	}

	.service-desc-mobile {
		display: block;
	}

	.ba-content {
		grid-template-columns: 1fr;
		gap: 1.75rem;
		margin-top: 2rem;
	}

	.before-after .section-title-wrapper {
		margin-bottom: 2rem;
	}

	.ba-slider-wrapper {
		height: 220px;
		border-radius: 16px;
	}

	.ba-image {
		font-size: 4.5rem;
	}

	.ba-text {
		padding-left: 0;
	}

	.ba-text h2 {
		font-size: 1.9rem;
		line-height: 1.15;
		margin-bottom: 1.25rem;
	}

	.ba-feature {
		gap: 0.85rem;
		margin-bottom: 1.25rem;
	}

	.ba-feature-icon {
		width: 42px;
		height: 42px;
		font-size: 1.2rem;
		border-radius: 10px;
	}

	.ba-feature-text h4 {
		font-size: 1.02rem;
		margin-bottom: 0.2rem;
	}

	.ba-feature-text p {
		font-size: 0.92rem;
		line-height: 1.55;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
		gap: 1.2rem;
		margin-top: 2rem;
	}

	.testimonial-card {
		padding: 1.25rem;
		border-radius: 16px;
	}

	.testimonial-header {
		gap: 0.9rem;
		margin-bottom: 1rem;
	}

	.testimonial-avatar {
		width: 48px;
		height: 48px;
		font-size: 1.4rem;
	}

	.testimonial-info h4 {
		font-size: 1rem;
	}

	.testimonial-role {
		font-size: 0.75rem;
	}

	.testimonial-stars {
		font-size: 1rem;
		margin-bottom: 0.8rem;
	}

	.testimonial-text {
		font-size: 0.92rem;
		line-height: 1.55;
	}

	.testimonial-review-cta {
		margin-bottom: 2rem;
	}

	.cta-section h2 {
		font-size: 2rem;
		line-height: 1.1;
		margin-bottom: 0.75rem;
		max-width: 320px;
		margin-left: auto;
		margin-right: auto;
	}

	.cta-section .section-subtitle {
		font-size: 1rem;
		margin-bottom: 1.5rem;
		line-height: 1.5;
	}

	.cta-form {
		padding: 1.1rem;
		border-radius: 16px;
	}

	.form-grid {
		grid-template-columns: 1fr;
		gap: 0.9rem;
		margin-bottom: 0.9rem;
	}

	.form-field {
		gap: 0.35rem;
	}

	.form-field.full {
		grid-column: auto;
	}

	.form-field label {
		font-size: 0.78rem;
		letter-spacing: 0.8px;
	}

	.form-field input,
	.form-field select,
	.form-field textarea {
		padding: 0.95rem;
		font-size: 0.95rem;
		border-radius: 10px;
	}

	.form-field textarea {
		min-height: 110px;
	}

	.form-submit-btn {
		padding: 1rem;
		font-size: 0.95rem;
		margin-top: 0.5rem;
		border-radius: 10px;
	}

	footer {
		padding: 2rem 1rem 1.25rem;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 1.5rem 1.25rem;
	}

	.footer-brand {
		grid-column: 1 / -1;
	}

	.footer-brand h3 {
		font-size: 1.25rem;
		line-height: 1.2;
		margin-bottom: 0.75rem;
	}

	.footer-brand p {
		font-size: 0.95rem;
		line-height: 1.65;
		margin-bottom: 1rem;
	}

	.footer-social {
		gap: 0.75rem;
	}

	.social-link {
		width: 45px;
		height: 45px;
		background: rgba(201, 164, 92, 0.1);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		text-decoration: none;
		transition: all 0.3s ease;
		border: 1px solid rgba(201, 164, 92, 0.2);
		overflow: hidden;
	}

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

	.footer-section h4 {
		font-size: 1.1rem;
		margin-bottom: 0.75rem;
	}

	.footer-section li {
		margin-bottom: 0.55rem;
	}

	.footer-section a,
	.footer-section li {
		font-size: 0.98rem;
		line-height: 1.45;
	}

	.footer-section:last-child {
		grid-column: 1 / -1;
	}

	.footer-section:last-child ul {
		display: grid;
		gap: 0.45rem;
	}

	.footer-section:last-child li {
		display: flex;
		align-items: flex-start;
		gap: 0.45rem;
		margin-bottom: 0;
	}

	.footer-section a {
		color: inherit;
		text-decoration: none;
	}

	.footer-section a:hover {
		color: #cca278;
	}

	.footer-bottom {
		padding-top: 1rem;
		font-size: 0.9rem;
	}

	.mobile-call-btn {
		position: fixed;
		right: 1rem;
		bottom: 1.5rem;
		display: inline-flex;
		align-items: center;
		gap: 0.5rem;
		padding: 0.8rem 1.1rem;
		background: var(--tan-gold);
		color: var(--charcoal);
		text-decoration: none;
		font-weight: 800;
		font-size: 0.9rem;
		border-radius: 999px;
		box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
		z-index: 1100;
	}

	.mobile-call-btn:hover {
		background: var(--tan-gold-dark);
		transform: scale(1.05);
	}

	.mobile-call-icon {
		font-size: 0.9rem;
		line-height: 1;
	}
}

@media (max-width: 480px) {
	.cta-section .cta-title-mobile {
		font-size: 1.35rem;
	}

	.mobile-call-btn {
		right: 0.75rem;
		bottom: 1rem;
		padding: 0.75rem 1rem;
		font-size: 0.85rem;
	}
}
