.landing-page {
	--landing-primary: #0093B7;
	--landing-secondary: #33B8E8;
	--landing-text: #444;
	--landing-muted: #666;
}

.landing-hero {
	position: relative;
	color: #fff;
	padding: 0;
	overflow: hidden;
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.landing-hero-video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	max-width: none;
	max-height: none;
	z-index: 1;
	pointer-events: none;
	object-fit: cover;
	object-position: center center;
}

.landing-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(0, 147, 183, 0.85) 0%,
		rgba(51, 184, 232, 0.75) 50%,
		rgba(0, 147, 183, 0.85) 100%
	);
	z-index: 2;
}

.landing-hero-badge {
	position: absolute;
	bottom: 40px;
	right: 40px;
	width: 180px;
	z-index: 4;
	opacity: 0.98;
}

.landing-hero-badge img {
	width: 100%;
	height: auto;
}

.landing-hero-content {
	position: relative;
	z-index: 3;
	max-width: 900px;
	padding: 0 30px;
	text-align: center;
}

.landing-hero h1 {
	font-size: clamp(32px, 5vw, 56px);
	font-weight: 700;
	margin-bottom: 24px;
	line-height: 1.2;
	color: #fff;
	letter-spacing: -0.5px;
}

.landing-hero-title-line1 {
	white-space: nowrap;
}

.landing-hero p {
	font-size: clamp(16px, 2.5vw, 22px);
	line-height: 1.6;
	margin-bottom: 40px;
	max-width: 650px;
	margin-left: auto;
	margin-right: auto;
	color: rgba(255,255,255,0.95);
	font-weight: 400;
}

.landing-cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: var(--landing-primary);
	padding: 20px 48px !important;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 50px;
	border: 2px solid #fff;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.landing-cta-button::before,
.landing-cta-button::after {
	display: none !important;
}

.landing-cta-button__text {
	display: block;
	text-align: center;
}

.landing-cta-button:hover {
	background: transparent;
	color: #fff;
}

.landing-section-title {
	text-align: center;
	font-size: 40px;
	color: var(--landing-text);
	margin-bottom: 50px;
}

.landing-testimonials {
	padding: 80px 20px;
	background: #f8f8f8;
}

.landing-testimonials-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
}

.landing-testimonial-card {
	background: #fff;
	padding: 35px;
	border-radius: 8px;
	border: 1px solid #eee;
}

.landing-testimonial-stars {
	color: var(--landing-secondary);
	font-size: 20px;
	margin-bottom: 15px;
}

.landing-testimonial-text {
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 20px;
	font-style: italic;
	color: var(--landing-muted);
}

.landing-testimonial-author {
	font-weight: 700;
	color: var(--landing-primary);
	font-size: 16px;
}

.landing-testimonial-location {
	font-size: 14px;
	color: #888;
}

/* --- Video testimonials (YouTube Shorts) - best practice: aspect-ratio on iframe --- */
.landing-video-testimonials {
	padding: 80px 20px;
	background: #fff;
}

.landing-video-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	justify-items: center;
	max-width: 740px;
	margin: 50px auto 0;
}

.landing-video-container {
	width: 100%;
	max-width: 350px;
}

.landing-video-container.landing-youtube-wrap {
	overflow: hidden;
	border-radius: 8px;
	background: #000;
}

/* Shorts: iframe con aspect-ratio 9/16 (recomendado, sin hacks). Sin width/height en HTML. */
.landing-youtube-wrap iframe {
	display: block;
	width: 100%;
	aspect-ratio: 9 / 16;
	border: 0;
	border-radius: 8px;
	vertical-align: top;
}

.landing-video-container video {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 9 / 16;
	object-fit: cover;
}

.landing-video-placeholder {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: #999;
	font-size: 14px;
}

.landing-services {
	position: relative;
	padding-top: 80px;
	padding-bottom: 120px;
}

.landing-services-wave {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 120px;
	fill: rgb(150, 194, 226);
	pointer-events: none;
}

.landing-services-wave path:nth-child(1) { opacity: 0.1; }
.landing-services-wave path:nth-child(2) { opacity: 0.12; }
.landing-services-wave path:nth-child(3) { opacity: 0.18; }
.landing-services-wave path:nth-child(4) { opacity: 0.33; }
.landing-services-wave path:nth-child(5) { opacity: 0.4; }

.landing-services .landing-section-title {
	margin-top: 40px;
	margin-bottom: 50px;
}

/* Comprehensive Dental Services: responsive best practices */
.landing-services .container-fluid {
	width: 100%;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	box-sizing: border-box;
}

.landing-services .row {
	margin-left: -10px;
	margin-right: -10px;
}

.landing-services .col-12 {
	padding-left: 10px;
	padding-right: 10px;
	box-sizing: border-box;
}

.landing-why-choose {
	padding: 80px 20px;
	background: linear-gradient(135deg, rgba(0, 147, 183, 0.05) 0%, rgba(51, 184, 232, 0.05) 100%);
}

.landing-features-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.landing-feature-card {
	background: #fff;
	padding: 40px 30px;
	border-radius: 8px;
	text-align: center;
	border: 1px solid #eee;
}

.landing-feature-icon {
	font-size: 50px;
	margin-bottom: 20px;
}

.landing-feature-card h3 {
	color: var(--landing-primary);
	font-size: 22px;
	margin-bottom: 15px;
}

.landing-feature-card p {
	color: var(--landing-muted);
	font-size: 15px;
	line-height: 1.6;
}

.landing-form-section {
	--landing-primary: #0093B7;
	--landing-secondary: #33B8E8;
	padding: 80px 20px;
	background: #2c3e50;
	color: #fff;
}

.landing-form-container {
	max-width: 700px;
	margin: 0 auto;
}

.landing-form-title {
	text-align: center;
	font-size: 40px;
	color: #fff;
	margin-bottom: 20px;
}

.landing-form-subtitle {
	text-align: center;
	font-size: 18px;
	margin-bottom: 40px;
	color: rgba(255,255,255,0.9);
}

.landing-form-section .gform_wrapper label,
.landing-form-section .gform_wrapper .gfield_label {
	color: #fff;
}

.landing-form-section .gform_wrapper input[type="text"],
.landing-form-section .gform_wrapper input[type="email"],
.landing-form-section .gform_wrapper input[type="tel"],
.landing-form-section .gform_wrapper textarea {
	width: 100%;
	padding: 15px;
	font-size: 16px;
	border: none;
	border-radius: 8px;
}

.landing-form-section .gform_wrapper .gform_footer {
	width: 100%;
	text-align: center;
	margin-top: 24px;
	padding: 0;
}

.landing-form-section .gform_wrapper .gform_footer input[type="submit"],
.landing-form-section .gform_wrapper .button {
	width: 100%;
	display: block;
	background: var(--landing-secondary);
	color: #fff;
	padding: 18px;
	font-size: 18px;
	font-weight: 700;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.landing-form-section .gform_wrapper .gform_footer input[type="submit"]:hover,
.landing-form-section .gform_wrapper .button:hover {
	background: var(--landing-primary);
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

@media (max-width: 1024px) {
	.landing-hero-badge {
		width: 150px;
		bottom: 30px;
		right: 30px;
	}
}

@media (max-width: 768px) {
	.landing-hero {
		min-height: 50vh;
		min-height: 50svh;
		padding: 40px 0 32px;
	}
	
	.landing-hero-content {
		padding: 0 20px;
	}
	
	.landing-hero h1 {
		margin-bottom: 20px;
		font-size: 28px;
		line-height: 1.25;
	}
	
	.landing-hero-title-line1 {
		white-space: normal;
	}
	
	.landing-hero p {
		margin-bottom: 32px;
	}
	
	.landing-hero-badge {
		width: 100px;
		bottom: 24px;
		right: 15px;
	}
	
	.landing-cta-button {
		padding: 18px 40px;
		font-size: 16px;
		width: 100%;
		max-width: 320px;
	}
	
	.landing-form-title {
		font-size: 32px;
	}
	
	.landing-video-testimonials {
		padding: 40px 16px;
	}
	.landing-video-grid {
		grid-template-columns: 1fr;
		gap: 32px;
		margin-top: 24px;
		justify-items: center;
	}
	.landing-testimonials-grid,
	.landing-features-grid {
		grid-template-columns: 1fr;
	}
	.landing-section-title {
		font-size: 32px;
	}
	
	.landing-services {
		padding-top: 48px;
		padding-bottom: 64px;
	}
	
	.landing-services .container-fluid {
		padding-left: 16px;
		padding-right: 16px;
	}
	
	.landing-services .landing-section-title {
		margin-top: 24px;
		margin-bottom: 32px;
		font-size: 28px;
	}
	
	.landing-services .diamond-list {
		width: 100%;
		justify-content: center;
		gap: 20px;
	}
	
	.landing-services .diamond-list__item {
		max-width: 100%;
	}
}

@media (max-width: 480px) {
	.landing-hero h1 {
		font-size: 24px;
	}
	
	.landing-hero-badge {
		width: 80px;
		bottom: 16px;
		right: 10px;
	}
	
	.landing-services .container-fluid {
		padding-left: 12px;
		padding-right: 12px;
	}
	
	.landing-services .landing-section-title {
		font-size: 24px;
	}
}
