/**
 * Ad Campaign Landing page styles.
 *
 * @package Caterpillar_Care
 */

html {
	scroll-behavior: smooth;
}

.cc-landing-page .site-main {
	padding-top: 0;
}

@media (max-width: 991.98px) {
	.cc-landing-page {
		padding-bottom: 4.75rem;
	}
}

.cc-landing-page .cc-mobile-cta-banner {
	display: none !important;
}

.lp-main {
	background: var(--cc-light);
}

.lp-eyebrow {
	font-family: var(--cc-font-heading);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--cc-orange);
	margin-bottom: 0.75rem;
}

.lp-section-title {
	font-family: var(--cc-font-heading);
	font-weight: 700;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	line-height: 1.2;
	color: var(--cc-primary);
	margin-bottom: 0.75rem;
}

.lp-section-subtitle {
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--cc-text-muted);
	max-width: 42rem;
	margin-bottom: 0;
}

.lp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-family: var(--cc-font-heading);
	font-weight: 700;
	font-size: 1rem;
	padding: 0.85rem 1.5rem;
	border-radius: var(--cc-radius-full);
	border: 2px solid transparent;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	text-decoration: none;
}

.lp-btn--primary {
	background: var(--cc-primary);
	color: #fff;
	border-color: var(--cc-primary);
}

.lp-btn--primary:hover {
	background: var(--cc-primary-dark);
	border-color: var(--cc-primary-dark);
	color: #fff;
}

.lp-btn--outline {
	background: transparent;
	color: var(--cc-orange);
	border-color: var(--cc-orange);
}

.lp-btn--outline:hover {
	background: var(--cc-orange);
	color: #fff;
}

.lp-btn--whatsapp {
	background: #25d366;
	color: #fff;
	border-color: #25d366;
}

.lp-btn--whatsapp:hover {
	background: #1ebe57;
	border-color: #1ebe57;
	color: #fff;
}

.lp-btn--sm {
	padding: 0.55rem 1rem;
	font-size: 0.9375rem;
}

.lp-btn--google i {
	color: #4285f4;
}

.lp-header {
	background: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 16px rgba(45, 74, 52, 0.04);
	position: sticky;
	top: 0;
	z-index: 1030;
}

.lp-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.9rem 0;
}

@media (min-width: 992px) {
	.lp-header__inner {
		padding: 1rem 0;
		min-height: 5.5rem;
		gap: 1.25rem;
	}
}

.lp-header__nav {
	flex: 1 1 auto;
	justify-content: center;
	min-width: 0;
	padding: 0 0.5rem;
}

.lp-header__nav-list {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.15rem 0.35rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.lp-header__nav-link {
	display: inline-flex;
	align-items: center;
	padding: 0.4rem 0.65rem;
	border-radius: var(--cc-radius-full);
	font-family: var(--cc-font-heading);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--cc-dark);
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s ease, background 0.2s ease;
}

.lp-header__nav-link:hover,
.lp-header__nav-link.is-active {
	color: var(--cc-primary);
	background: rgba(63, 125, 10, 0.08);
}

@media (min-width: 1400px) {
	.lp-header__nav-link {
		padding: 0.45rem 0.8rem;
		font-size: 0.9375rem;
	}
}

.lp-header__brand {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	text-decoration: none;
	min-width: 0;
	flex: 0 1 auto;
}

.lp-header__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.lp-header__logo-img {
	display: block;
	width: auto;
	height: 3.35rem;
	max-width: 3.35rem;
	object-fit: contain;
}

@media (min-width: 992px) {
	.lp-header__logo-img {
		height: auto;
		max-width: 10.75rem;
	}
}

.lp-header__brand-copy {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	min-width: 0;
}

.lp-header__brand-name {
	font-family: var(--cc-font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.15;
	color: var(--cc-primary);
	white-space: nowrap;
}

@media (min-width: 992px) {
	.lp-header__brand-name {
		font-size: 1.45rem;
	}
}

.lp-header__brand-tagline {
	font-family: var(--cc-font-heading);
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--cc-orange);
	white-space: nowrap;
}

@media (max-width: 575.98px) {
	.lp-header__brand-name {
		font-size: 1.05rem;
	}

	.lp-header__brand-tagline {
		font-size: 0.62rem;
	}

	.lp-header__logo-img {
		height: auto;
		max-width: 10.75rem;
	}
}

@media (min-width: 992px) {
	.lp-header__brand-tagline {
		font-size: 0.78rem;
	}
}

.lp-header__desktop-contact {
	align-items: center;
	gap: 1.35rem;
	flex-shrink: 0;
}

.lp-header__phone {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	text-decoration: none;
	color: inherit;
	transition: opacity 0.2s ease;
}

.lp-header__phone:hover {
	opacity: 0.85;
	color: inherit;
}

.lp-header__phone-icon {
	width: 2.65rem;
	height: 2.65rem;
	border-radius: 50%;
	background: rgba(63, 125, 10, 0.1);
	color: var(--cc-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	flex-shrink: 0;
}

.lp-header__phone-copy {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	line-height: 1.25;
}

.lp-header__phone-number {
	font-family: var(--cc-font-heading);
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--cc-dark);
	white-space: nowrap;
}

.lp-header__phone-sub {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.78rem;
	color: var(--cc-text-muted);
	white-space: nowrap;
}

.lp-header__phone-sub i {
	font-size: 0.68rem;
	color: var(--cc-primary);
}

.lp-header__divider {
	width: 1px;
	height: 2.75rem;
	background: rgba(0, 0, 0, 0.1);
	flex-shrink: 0;
}

.lp-header__whatsapp {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	padding: 0.8rem 1.35rem;
	border-radius: var(--cc-radius-full);
	background: var(--cc-primary);
	color: #fff;
	font-family: var(--cc-font-heading);
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: 0 6px 18px rgba(63, 125, 10, 0.22);
	transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.lp-header__whatsapp:hover {
	background: var(--cc-primary-dark);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 8px 22px rgba(63, 125, 10, 0.28);
}

.lp-header__whatsapp i {
	font-size: 1.2rem;
}

.lp-header__menu-btn {
	border: none;
	background: transparent;
	padding: 0.5rem;
	flex-shrink: 0;
}

.lp-header__menu-icon,
.lp-header__menu-icon::before,
.lp-header__menu-icon::after {
	display: block;
	width: 1.35rem;
	height: 2px;
	background: var(--cc-primary);
	border-radius: 2px;
}

.lp-header__menu-icon {
	position: relative;
}

.lp-header__menu-icon::before,
.lp-header__menu-icon::after {
	content: "";
	position: absolute;
	left: 0;
}

.lp-header__menu-icon::before {
	top: -6px;
}

.lp-header__menu-icon::after {
	top: 6px;
}

.lp-header__contact-bar,
.lp-footer__contact-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	background: var(--cc-primary);
	color: #fff;
	padding: 0.7rem 0.85rem;
}

.lp-footer__contact-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1040;
	margin: 0;
	border-radius: 0;
	box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.12);
}

.lp-header__contact-bar-phone,
.lp-footer__contact-bar-phone {
	color: #fff;
	text-decoration: none;
	font-family: var(--cc-font-heading);
	font-weight: 600;
	font-size: 0.9375rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.lp-header__whatsapp--compact {
	padding: 0.55rem 1rem;
	font-size: 0.875rem;
	box-shadow: none;
	background: #fff;
	color: var(--cc-primary);
}

.lp-header__whatsapp--compact:hover {
	background: #fff;
	color: var(--cc-primary-dark);
	transform: none;
	box-shadow: none;
}

.lp-header__whatsapp--compact i {
	color: #25d366;
}

.lp-offcanvas__nav {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	margin-bottom: 1.5rem;
}

.lp-offcanvas__link {
	font-family: var(--cc-font-heading);
	font-size: 1.0625rem;
	font-weight: 600;
	color: var(--cc-dark);
	text-decoration: none;
	padding: 0.65rem 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	transition: color 0.2s ease;
}

.lp-offcanvas__link:hover,
.lp-offcanvas__link.is-active {
	color: var(--cc-primary);
}

.lp-offcanvas__contact {
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.lp-offcanvas__contact-title {
	font-family: var(--cc-font-heading);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--cc-text-muted);
	margin-bottom: 0.75rem;
}

.lp-offcanvas__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 1rem;
	padding: 0.85rem 1.25rem;
	border-radius: var(--cc-radius-full);
	background: var(--cc-primary);
	color: #fff;
	font-family: var(--cc-font-heading);
	font-weight: 700;
	text-decoration: none;
}

.lp-offcanvas__cta:hover {
	background: var(--cc-primary-dark);
	color: #fff;
}

.lp-offcanvas .offcanvas-body {
	display: flex;
	flex-direction: column;
}

[id^="lp-"] {
	scroll-margin-top: 6.5rem;
}

@media (min-width: 992px) {
	[id^="lp-"] {
		scroll-margin-top: 7rem;
	}
}

.lp-anchor {
	display: block;
	height: 0;
	scroll-margin-top: 7rem;
}

.lp-hero {
	padding: 2rem 0 1.5rem;
	background: #fdfbf7;
}

@media (min-width: 992px) {
	.lp-hero {
		padding: 2.5rem 0 3rem;
	}
}

.lp-hero__title {
	font-family: var(--cc-font-heading);
	font-weight: 700;
	font-size: clamp(2rem, 4.2vw, 2.75rem);
	line-height: 1.2;
	color: var(--cc-primary);
	margin-bottom: 0.85rem;
}

.lp-hero__title-highlight {
	color: var(--cc-orange);
}

.lp-hero__subheadline {
	font-family: var(--cc-font-body);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--cc-text);
	margin-bottom: 1.5rem;
	max-width: 34rem;
}

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

@media (min-width: 576px) {
	.lp-hero__actions {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1rem;
	}
}

.lp-hero-cta {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.9rem 1.1rem;
	border-radius: 12px;
	border: 2px solid transparent;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
	min-height: 4.5rem;
}

.lp-hero-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(63, 125, 10, 0.14);
}

.lp-hero-cta--primary {
	background: var(--cc-primary);
	border-color: var(--cc-primary);
	color: #fff;
}

.lp-hero-cta--primary:hover {
	background: var(--cc-primary-dark);
	border-color: var(--cc-primary-dark);
	color: #fff;
}

.lp-hero-cta--outline {
	background: #fff;
	border-color: var(--cc-orange);
	color: var(--cc-orange);
}

.lp-hero-cta--outline:hover {
	background: #fff;
	border-color: var(--cc-orange);
	color: var(--cc-orange);
}

.lp-hero-cta__icon {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 1.125rem;
}

.lp-hero-cta--primary .lp-hero-cta__icon {
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
}

.lp-hero-cta--outline .lp-hero-cta__icon {
	background: rgba(255, 122, 0, 0.1);
	color: var(--cc-orange);
}

.lp-hero-cta__text {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	min-width: 0;
}

.lp-hero-cta__label {
	font-family: var(--cc-font-heading);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.25;
}

.lp-hero-cta__sub {
	font-family: var(--cc-font-body);
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.35;
	opacity: 0.9;
}

.lp-hero-cta--outline .lp-hero-cta__sub {
	color: var(--cc-text-muted);
	opacity: 1;
}

.lp-hero__gallery {
	display: grid;
	grid-template-columns: 1.35fr 0.82fr 0.82fr;
	grid-template-rows: 1fr 1fr;
	gap: 0.75rem;
	margin-bottom: 0;
	min-height: 17.5rem;
}

.lp-hero__gallery-item {
	border-radius: 12px;
	overflow: hidden;
	background: rgba(63, 125, 10, 0.08);
}

.lp-hero__gallery-item--1 {
	grid-column: 1;
	grid-row: 1 / 3;
}

.lp-hero__gallery-item--2 {
	grid-column: 2 / 4;
	grid-row: 1;
}

.lp-hero__gallery-item--3 {
	grid-column: 2;
	grid-row: 2;
}

.lp-hero__gallery-item--4 {
	grid-column: 3;
	grid-row: 2;
}

.lp-hero__gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 575.98px) {
	.lp-hero__gallery {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: auto;
	}

	.lp-hero__gallery-item--1,
	.lp-hero__gallery-item--2,
	.lp-hero__gallery-item--3,
	.lp-hero__gallery-item--4 {
		grid-column: auto;
		grid-row: auto;
		min-height: 0;
		aspect-ratio: 1;
	}
}

.lp-hero__form-col {
	position: sticky;
	top: 7rem;
}

.lp-hero__form-mobile {
	margin-top: 1.5rem;
}

.lp-form-card--hero {
	padding: 1.75rem;
	border-radius: 16px;
	box-shadow: 0 12px 40px rgba(45, 74, 52, 0.1);
	border: 1px solid rgba(0, 0, 0, 0.04);
}

.lp-form-card--hero .lp-form-card__title {
	color: var(--cc-primary);
	font-size: 1.625rem;
	margin-bottom: 0.25rem;
}

.lp-form-card--hero .lp-form-card__subtitle {
	font-size: 0.9375rem;
	color: var(--cc-text-muted);
	margin-bottom: 1.35rem;
}

.lp-form-card--hero .lp-form-card__input,
.lp-form-card--hero .lp-form-card__select {
	border-radius: 10px;
	border-color: rgba(0, 0, 0, 0.1);
	padding-top: 0.85rem;
	padding-bottom: 0.85rem;
	background: #fff;
}

.lp-form-card--hero .lp-form-card__field--radio .lp-form-card__label {
	margin-bottom: 0.65rem;
}

.lp-form-card--hero .lp-form-card__radio-group {
	gap: 0.65rem 1.25rem;
}

.lp-form-card--hero .lp-form-card__submit {
	border-radius: 10px;
	padding: 0.95rem 1.25rem;
	font-size: 1.0625rem;
}

.lp-form-card--hero .lp-form-card__select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235c6b5c'%3E%3Cpath d='M4.5 6l3.5 3.5L11.5 6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.9rem center;
	background-size: 1rem;
	padding-right: 2.5rem;
}

.lp-form-card--hero .lp-form-card__input::placeholder {
	color: #9aa39a;
}

@media (min-width: 992px) {
	.lp-hero .row {
		align-items: stretch !important;
	}
}

.lp-form-card {
	background: #fff;
	border-radius: var(--cc-radius-xl);
	box-shadow: var(--cc-shadow-card);
	padding: 1.5rem;
}

.lp-form-card__title {
	font-family: var(--cc-font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--cc-dark);
	margin-bottom: 0.35rem;
}

.lp-form-card__subtitle {
	color: var(--cc-text-muted);
	margin-bottom: 1.25rem;
}

.lp-form-card__field {
	margin-bottom: 1rem;
}

.lp-form-card__label,
.lp-form-card__field legend {
	font-family: var(--cc-font-heading);
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--cc-dark);
	margin-bottom: 0.4rem;
}

.lp-form-card__input-wrap {
	position: relative;
}

.lp-form-card__input-icon {
	position: absolute;
	left: 0.9rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--cc-text-muted);
	pointer-events: none;
}

.lp-form-card__input,
.lp-form-card__select {
	width: 100%;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: var(--cc-radius-sm);
	padding: 0.8rem 0.9rem 0.8rem 2.5rem;
	font-size: 1rem;
	background: #fff;
	color: var(--cc-text);
}

.lp-form-card__input:focus,
.lp-form-card__select:focus {
	outline: none;
	border-color: var(--cc-primary);
	box-shadow: 0 0 0 3px rgba(63, 125, 10, 0.15);
}

.lp-form-card__radio-group {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
}

.lp-form-card__radio {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.9375rem;
	cursor: pointer;
}

.lp-form-card__radio input {
	accent-color: var(--cc-primary);
}

.lp-form-card__submit {
	width: 100%;
	margin-top: 0.5rem;
}

.lp-form-card__privacy {
	display: flex;
	align-items: flex-start;
	gap: 0.45rem;
	font-size: 0.8125rem;
	color: var(--cc-text-muted);
	margin: 0.85rem 0 0;
}

.lp-form-card__error {
	color: #b42318;
	font-size: 0.8125rem;
	margin: 0.35rem 0 0;
}

.lp-form-card__success {
	background: rgba(63, 125, 10, 0.08);
	border: 1px solid rgba(63, 125, 10, 0.2);
	border-radius: var(--cc-radius-sm);
	padding: 1rem;
	margin-bottom: 1rem;
}

.lp-form-card__success-text {
	margin: 0;
	color: var(--cc-primary);
	font-weight: 600;
}

.lp-form-card.is-submitted .lp-form-card__form {
	display: none;
}

.lp-trust {
	padding: 1.25rem 0 2rem;
}

.lp-trust__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.85rem;
	background: #fff;
	border-radius: var(--cc-radius-xl);
	box-shadow: var(--cc-shadow-soft);
	padding: 1rem;
}

@media (min-width: 768px) {
	.lp-trust__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	.lp-trust__grid {
		grid-template-columns: repeat(4, 1fr);
		padding: 1.25rem 1.5rem;
	}
}

.lp-trust__item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.lp-trust__icon {
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	background: rgba(63, 125, 10, 0.1);
	color: var(--cc-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.lp-trust__text {
	font-family: var(--cc-font-heading);
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--cc-dark);
	line-height: 1.35;
}

.lp-video {
	padding: 2.5rem 0;
}

.lp-video__content {
	color: var(--cc-text-muted);
	line-height: 1.7;
	margin-bottom: 1.25rem;
}

.lp-video__features {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
}

@media (min-width: 576px) {
	.lp-video__features {
		grid-template-columns: repeat(2, 1fr);
	}
}

.lp-video__feature {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	font-family: var(--cc-font-heading);
	font-weight: 600;
	color: var(--cc-dark);
}

.lp-video__feature-icon {
	color: var(--cc-primary);
}

.lp-video__players {
	width: 100%;
}

.lp-video__player-wrap--portrait {
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.lp-video__player-wrap--device-mobile {
	display: flex;
}

.lp-video__player-wrap--device-desktop {
	display: none;
}

@media (min-width: 768px) {
	.lp-video__player-wrap--device-mobile {
		display: none;
	}

	.lp-video__player-wrap--device-desktop {
		display: flex;
	}
}

.lp-video__player-wrap--device-desktop .lp-video__inline-video,
.lp-video__player-wrap--device-desktop .lp-video__embed--portrait {
	max-width: 100%;
	aspect-ratio: 16 / 9;
}

.lp-video__player-wrap--device-mobile .lp-video__inline-video,
.lp-video__player-wrap--device-mobile .lp-video__embed--portrait {
	max-width: 22rem;
	aspect-ratio: 9 / 16;
}

.lp-video__inline-video {
	display: block;
	width: 100%;
	max-width: 22rem;
	aspect-ratio: 9 / 16;
	height: auto;
	border-radius: 16px;
	background: #111;
	object-fit: contain;
	box-shadow: 0 14px 40px rgba(45, 74, 52, 0.14);
}

@media (min-width: 992px) {
	.lp-video__inline-video {
		max-width: 24rem;
	}
}

.lp-video__embed--portrait {
	width: 100%;
	max-width: 22rem;
	margin: 0 auto;
	aspect-ratio: 9 / 16;
	border-radius: 16px;
	overflow: hidden;
	background: #111;
	box-shadow: 0 14px 40px rgba(45, 74, 52, 0.14);
}

.lp-video__embed--portrait iframe,
.lp-video__embed--portrait .wp-block-embed__wrapper,
.lp-video__embed--portrait > * {
	width: 100% !important;
	height: 100% !important;
	min-height: 100%;
	border: 0;
}

.lp-video__embed--portrait .wp-block-embed__wrapper {
	position: relative;
}

.lp-video__placeholder {
	width: 100%;
	max-width: 22rem;
	aspect-ratio: 9 / 16;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(63, 125, 10, 0.12), rgba(255, 122, 0, 0.1));
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	text-align: center;
	color: var(--cc-text-muted);
	font-size: 0.9375rem;
}

.lp-campus {
	padding: 2.5rem 0;
}

.lp-campus__header {
	margin-bottom: 2rem;
}

.lp-campus__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 768px) {
	.lp-campus__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1200px) {
	.lp-campus__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.25rem;
	}
}

.lp-campus__card {
	background: #fff;
	border-radius: var(--cc-radius-xl);
	box-shadow: var(--cc-shadow-card);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

@media (min-width: 1200px) {
	.lp-campus__card {
		flex-direction: column;
	}
}

.lp-campus__card-media {
	position: relative;
	flex: none;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.lp-campus__card-media img,
.lp-campus__card-placeholder {
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
	display: block;
	background: rgba(63, 125, 10, 0.08);
}

.lp-campus__card-icon {
	position: absolute;
	left: 0.65rem;
	bottom: 0.65rem;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: var(--cc-primary);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
}

.lp-campus__card-body {
	padding: 1rem;
}

.lp-campus__card-title {
	font-family: var(--cc-font-heading);
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--cc-primary);
	margin-bottom: 0.35rem;
}

.lp-campus__card-text {
	font-size: 0.9375rem;
	line-height: 1.55;
	color: var(--cc-text-muted);
	margin: 0;
}

.lp-why {
	padding: 2.5rem 0;
}

.lp-why__header {
	margin-bottom: 2rem;
}

.lp-why__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 992px) {
	.lp-why__grid {
		grid-template-columns: repeat(5, 1fr);
		gap: 1rem;
	}
}

.lp-why__item {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

@media (min-width: 992px) {
	.lp-why__item {
		text-align: center;
	}
}

.lp-why__icon {
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	background: rgba(63, 125, 10, 0.1);
	color: var(--cc-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.35rem;
}

@media (min-width: 992px) {
	.lp-why__icon {
		margin-left: auto;
		margin-right: auto;
	}
}

.lp-why__title {
	font-family: var(--cc-font-heading);
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--cc-dark);
	margin-bottom: 0.5rem;
}

.lp-why__text {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--cc-text-muted);
	margin: 0;
}

.lp-why__media {
	border-radius: var(--cc-radius-lg);
	overflow: hidden;
}

.lp-why__media img {
	width: 100%;
	height: auto;
	display: block;
}

.lp-testimonials {
	padding: 2.5rem 0;
	background: #fff;
}

.lp-testimonials__header {
	margin-bottom: 2rem;
}

.lp-testimonials__badges {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	color: var(--cc-text-muted);
	font-size: 0.9375rem;
}

.lp-testimonials__badges .fa-star {
	color: #f4b400;
}

.lp-testimonials__badge-sep {
	width: 1px;
	height: 1.25rem;
	background: rgba(0, 0, 0, 0.15);
}

.lp-testimonials__slider-wrap {
	position: relative;
	padding: 0 2.5rem;
}

.lp-testimonials__slider .slick-list {
	margin: 0 -0.5rem;
}

.lp-testimonials__slider .slick-slide {
	padding: 0 0.5rem;
}

.lp-testimonials__card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: var(--cc-radius-xl);
	box-shadow: var(--cc-shadow-soft);
	padding: 1.25rem;
	min-height: 100%;
}

.lp-testimonials__card-top {
	display: flex;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
}

.lp-testimonials__avatar {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.lp-testimonials__avatar--placeholder {
	background: rgba(63, 125, 10, 0.1);
	color: var(--cc-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.lp-testimonials__name {
	display: block;
	font-family: var(--cc-font-heading);
	font-weight: 700;
	font-style: normal;
	color: var(--cc-dark);
}

.lp-testimonials__source {
	display: block;
	font-size: 0.8125rem;
	color: var(--cc-text-muted);
}

.lp-testimonials__stars {
	color: #f4b400;
	font-size: 0.8125rem;
}

.lp-testimonials__quote-icon {
	font-family: var(--cc-font-heading);
	font-size: 3rem;
	line-height: 1;
	color: var(--cc-primary);
	opacity: 0.35;
	display: block;
	margin-bottom: -0.5rem;
}

.lp-testimonials__text {
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--cc-text-muted);
	margin: 0;
}

.lp-testimonials__nav {
	position: absolute;
	top: 42%;
	transform: translateY(-50%);
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: #fff;
	color: var(--cc-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.lp-testimonials__nav--prev {
	left: 0;
}

.lp-testimonials__nav--next {
	right: 0;
}

.lp-testimonials__dots {
	margin-top: 1rem;
	text-align: center;
}

.lp-testimonials__dots .slick-dots {
	position: static;
	display: inline-flex !important;
	gap: 0.35rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.lp-testimonials__dots .slick-dots li button {
	width: 0.55rem;
	height: 0.55rem;
	padding: 0;
	border-radius: 50%;
	background: rgba(63, 125, 10, 0.25);
	border: none;
	font-size: 0;
}

.lp-testimonials__dots .slick-dots li.slick-active button {
	background: var(--cc-primary);
}

.lp-faq {
	padding: 2.5rem 0 3rem;
}

.lp-faq__header {
	margin-bottom: 2rem;
}

.lp-faq__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.85rem;
}

.lp-faq__item {
	background: #fff;
	border-radius: var(--cc-radius-lg);
	box-shadow: var(--cc-shadow-soft);
	overflow: hidden;
}

.lp-faq__question {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 1.1rem;
	border: none;
	background: transparent;
	text-align: left;
	cursor: pointer;
}

.lp-faq__icon {
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 50%;
	background: rgba(63, 125, 10, 0.1);
	color: var(--cc-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}


.lp-faq__question-text {
	font-family: var(--cc-font-heading);
	font-size: 1rem;
	font-weight: 700;
	color: var(--cc-dark);
	flex: 1;
}

.lp-faq__chevron {
	color: var(--cc-text-muted);
	transition: transform 0.2s ease;
}

.lp-faq__question.is-open .lp-faq__chevron {
	transform: rotate(180deg);
}

.lp-faq__answer {
	padding: 0 1.1rem 1rem 4rem;
	color: var(--cc-text-muted);
	line-height: 1.65;
	font-size: 0.9375rem;
}

.lp-faq__answer ul {
	padding-left: 1.1rem;
}

.lp-final-cta {
	padding: 2.5rem 0 3rem;
}

.lp-final-cta__media,
.lp-final-cta__img {
	border-radius: var(--cc-radius-xl);
	overflow: hidden;
}

.lp-final-cta__img {
	width: 100%;
	height: auto;
	display: block;
}

.lp-final-cta__img--placeholder {
	min-height: 16rem;
	background: linear-gradient(135deg, rgba(63, 125, 10, 0.12), rgba(255, 122, 0, 0.1));
}

.lp-final-cta__text {
	color: var(--cc-text-muted);
	line-height: 1.7;
	margin-bottom: 1.25rem;
}

.lp-final-cta__actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.lp-final-cta__actions .lp-btn {
	width: 100%;
}

.lp-final-cta .lp-form-card {
	box-shadow: none;
	padding: 0;
	background: transparent;
}

@media (max-width: 991.98px) {
	.lp-final-cta {
		position: relative;
		color: #fff;
		padding: 3rem 0;
	}

	.lp-final-cta::before {
		content: "";
		position: absolute;
		inset: 0;
		background-image: var(--lp-final-bg, none);
		background-size: cover;
		background-position: center;
		z-index: 0;
	}

	.lp-final-cta::after {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(180deg, rgba(45, 74, 52, 0.55), rgba(45, 74, 52, 0.85));
		z-index: 0;
	}

	.lp-final-cta .container {
		position: relative;
		z-index: 1;
	}

	.lp-final-cta__media {
		display: none;
	}

	.lp-final-cta .lp-section-title,
	.lp-final-cta__text {
		color: #fff;
	}
}

.lp-footer {
	background: var(--cc-primary-dark);
	color: rgba(255, 255, 255, 0.9);
	padding: 2.5rem 0 1.5rem;
}

.lp-footer .site-title {
	color: #fff !important;
}

.lp-footer__tagline {
	color: rgba(255, 255, 255, 0.75);
	margin-top: 0.5rem;
	font-size: 0.9375rem;
}

.lp-footer__heading {
	font-family: var(--cc-font-heading);
	font-size: 1.0625rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.75rem;
}

.lp-footer__text {
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 0.35rem;
}

.lp-footer__link {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.lp-footer__link:hover {
	color: #fff;
}

.lp-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-top: 2rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.lp-footer__copyright,
.lp-footer__legal {
	font-size: 0.8125rem;
	margin: 0;
}

.lp-footer__legal-link {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	margin-left: 1rem;
}

.lp-footer__legal-link:hover {
	color: #fff;
}
