/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 14px 28px;
	font-weight: 800;
	border-radius: 4px;
	text-decoration: none !important;
	letter-spacing: 0.01em;
	border: 1px solid transparent;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
	cursor: pointer;
	line-height: 1.2;
}

.btn:hover,
.btn:focus {
	text-decoration: none !important;
}

.btn--primary {
	background-color: var(--color-secondary);
	color: #fff;
	border: 1px solid var(--color-secondary);
	box-shadow: 0 14px 28px rgba(184, 137, 67, 0.18);
}

.btn--primary:hover,
.btn--primary:focus {
	background-color: #c79b3d;
	color: #fff;
	border-color: #d3ad58;
	box-shadow: 0 16px 34px rgba(184, 137, 67, 0.24);
}

.btn--outline {
	background-color: transparent;
	color: var(--color-text-base);
	border: 1px solid rgba(23, 33, 31, 0.4);
}

.btn--outline:hover,
.btn--outline:focus {
	background-color: var(--color-ink);
	color: var(--color-text-light);
	border-color: var(--color-ink);
}

/* Hero Section */
.st-hero {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 80vh;
	display: flex;
	align-items: center;
	padding: var(--spacing-16) 0;
	background-color: var(--color-bg-dark);
}

.st-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(15, 42, 42, 0.94) 0%, rgba(15, 42, 42, 0.88) 100%);
	z-index: 1;
}

.st-hero__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--spacing-12);
	align-items: center;
}

@media (min-width: 992px) {
	.st-hero__grid {
		grid-template-columns: 1.1fr 0.9fr;
	}
}

.st-hero__content {
	color: var(--color-text-light);
}

.st-hero__eyebrow {
	color: var(--color-secondary);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: var(--spacing-4);
}

.st-hero__title {
	font-family: var(--font-family-heading);
	font-size: clamp(2.5rem, 4.5vw, 4rem);
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: var(--spacing-4);
	color: var(--color-text-light);
}

.st-hero__subtitle-highlight {
	color: var(--color-secondary);
	font-size: clamp(1.25rem, 2vw, 1.75rem);
	font-weight: 600;
	margin-bottom: var(--spacing-4);
}

.st-hero__description {
	font-size: 1.125rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: var(--spacing-8);
	max-width: 90%;
}

.st-hero__mini-benefits {
	display: flex;
	flex-wrap: wrap;
	gap: var(--spacing-6);
	margin-top: var(--spacing-8);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: var(--spacing-6);
}

.st-hero__mini-benefit {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-3);
	max-width: 140px;
}

.st-hero__mini-benefit i {
	color: var(--color-secondary);
	font-size: 1.5rem;
}

.st-hero__mini-benefit span {
	font-size: 0.875rem;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.9);
}

.st-hero__form-wrapper {
	display: flex;
	justify-content: center;
}

@media (min-width: 992px) {
	.st-hero__form-wrapper {
		justify-content: flex-end;
	}
}

.st-hero__form-card {
	background: #ffffff;
	padding: var(--spacing-8);
	border-radius: var(--radius-lg);
	width: 100%;
	max-width: 440px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.st-hero__form-title {
	color: var(--color-bg-dark);
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: var(--spacing-2);
	text-align: center;
}

.st-hero__form-subtitle {
	color: var(--color-text-base);
	font-size: 1rem;
	margin-bottom: var(--spacing-6);
	text-align: center;
}

/* Form Elements */
.st-form__group {
	position: relative;
	margin-bottom: var(--spacing-4);
}

.st-form__group i {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--color-text-light-alt);
}

.st-form__group input,
.st-form__group select {
	width: 100%;
	padding: 14px 16px 14px 44px;
	border: 1px solid #e2e8f0;
	border-radius: var(--radius-sm);
	font-size: 1rem;
	color: var(--color-text-base);
	background: #fff;
	transition: var(--transition-base);
	appearance: none;
}

.st-form__group select {
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
}

.st-form__group input:focus,
.st-form__group select:focus {
	outline: none;
	border-color: var(--color-bg-dark);
}

.st-form__submit {
	width: 100%;
	padding: 16px;
	font-size: 1.125rem;
	background-color: var(--color-bg-dark);
	color: #ffffff;
	border: none;
	margin-top: var(--spacing-2);
}

.st-form__submit:hover {
	background-color: var(--color-secondary);
	color: var(--color-bg-dark);
}

.st-form__privacy {
	text-align: center;
	font-size: 0.75rem;
	color: var(--color-text-light-alt);
	margin-top: var(--spacing-4);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

/* V2 Component System */
.st-section--bg-white {
	background: #fff;
	color: var(--color-text-base);
}

.st-section--bg-light {
	background: var(--color-bg-light);
	color: var(--color-text-base);
}

.st-section--bg-mist {
	background: var(--color-bg-alt);
	color: var(--color-text-base);
}

.st-section--bg-dark {
	background: var(--color-bg-dark);
	color: var(--color-text-light);
}

.st-section--spacing-compact {
	padding-top: var(--spacing-6);
	padding-bottom: var(--spacing-6);
}

.st-section--spacing-spacious {
	padding-top: var(--spacing-12);
	padding-bottom: var(--spacing-12);
}

.st-eyebrow {
	margin: 0 0 var(--spacing-3);
	color: var(--color-secondary);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.st-component-header {
	max-width: 780px;
	margin-bottom: var(--spacing-5);
}

.st-component-header--compact {
	margin-bottom: 0;
}

.st-component-header__title {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: clamp(2rem, 3vw, 3.15rem);
	line-height: 1.08;
	color: inherit;
}

.st-component-header__intro {
	margin: var(--spacing-3) 0 0;
	color: var(--color-text-muted);
	font-size: 1.06rem;
	line-height: 1.75;
}

.st-section--bg-dark .st-component-header__intro,
.st-section--bg-dark .st-prose,
.st-section--bg-dark .st-prose p {
	color: rgba(255, 255, 255, 0.82);
}

.st-component-header-row {
	display: flex;
	gap: var(--spacing-4);
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: var(--spacing-5);
}

.st-component-header-row .st-component-header {
	margin-bottom: 0;
}

.st-prose {
	color: var(--color-text-base);
	font-size: 1.05rem;
	line-height: 1.85;
}

.st-prose > *:last-child {
	margin-bottom: 0;
}

.st-actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--spacing-3);
	margin-top: var(--spacing-5);
}

.btn--on-dark {
	border-color: var(--color-secondary);
	color: #fff;
	background-color: transparent;
}

.btn--on-dark:hover,
.btn--on-dark:focus {
	background-color: var(--color-primary-light);
	border-color: var(--color-secondary);
	color: var(--color-secondary);
}

.st-text-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: var(--spacing-4);
	color: var(--color-primary);
	font-weight: 800;
	text-decoration: none;
}

.st-text-link::after {
	width: 24px;
	height: 1px;
	background: currentColor;
	content: "";
}

.st-section--bg-dark .st-text-link {
	color: var(--color-secondary);
}

.st-hero-v2 {
	position: relative;
	overflow: hidden;
	display: flex;
	min-height: 76vh;
	align-items: center;
	padding: var(--spacing-12) 0;
	background-color: var(--color-bg-dark);
	background-position: center;
	background-size: cover;
	color: #fff;
}

.st-hero-v2__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(15, 42, 42, 0.94), rgba(15, 42, 42, 0.48), rgba(15, 42, 42, 0.2));
}

.st-hero-v2--overlay-brand .st-hero-v2__overlay {
	background: linear-gradient(135deg, rgba(18, 52, 47, 0.94), rgba(31, 75, 67, 0.78));
}

.st-hero-v2--overlay-light .st-hero-v2__overlay {
	background: linear-gradient(90deg, rgba(15, 42, 42, 0.76), rgba(15, 42, 42, 0.22));
}

.st-hero-v2__inner,
.st-hero-with-form__grid {
	position: relative;
	z-index: 1;
	width: 100%;
}

.st-hero-v2__content {
	max-width: 760px;
}

.st-hero-v2 h1,
.st-hero-split h1 {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: clamp(2.8rem, 5vw, 5.3rem);
	line-height: 0.98;
	color: inherit;
}

.st-hero-v2__content > p:not(.st-eyebrow),
.st-hero-split__content > p:not(.st-eyebrow) {
	max-width: 670px;
	margin: var(--spacing-4) 0 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: 1.16rem;
	line-height: 1.75;
}

.st-hero-with-form__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 450px);
	gap: var(--spacing-8);
	align-items: center;
}

.st-hero-with-form__benefits {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: var(--spacing-5) 0 0;
	padding: 0;
	list-style: none;
}

.st-hero-with-form__benefits li {
	padding: 9px 12px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.9rem;
	font-weight: 700;
}

.st-lead-form-card {
	position: relative;
	z-index: 1;
	padding: var(--spacing-5);
	border-radius: var(--radius-md);
	background: #fff;
	box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
	color: var(--color-text-base);
}

.st-lead-form-card h2 {
	margin: 0 0 var(--spacing-2);
	color: var(--color-primary);
	font-size: 1.6rem;
	line-height: 1.2;
}

.st-lead-form-card > p {
	margin: 0 0 var(--spacing-4);
	color: var(--color-text-muted);
	line-height: 1.6;
}

.st-lead-form-card__note {
	margin: var(--spacing-3) 0 0;
	color: var(--color-text-muted);
	font-size: 0.82rem;
	text-align: center;
}

.st-lead-form-card__form p {
	margin: 0 0 var(--spacing-3);
}

.st-lead-form-card__form input:not([type="submit"]),
.st-lead-form-card__form select,
.st-lead-form-card__form textarea {
	width: 100%;
	min-height: 44px;
	padding: 12px 16px;
	border: 1px solid rgba(23, 33, 31, 0.16);
	border-radius: 2px;
	background: #fff;
	color: var(--color-text-base);
	font-size: 0.95rem;
}

.st-lead-form-card__form textarea {
	min-height: 96px;
	resize: vertical;
}

.st-lead-form-card__form input:focus,
.st-lead-form-card__form select:focus,
.st-lead-form-card__form textarea:focus {
	outline: none;
	border-color: var(--color-secondary);
	box-shadow: 0 0 0 3px rgba(184, 137, 67, 0.16);
}

.st-lead-form-card__form input[type="submit"],
.st-lead-form-card__form button[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 48px;
	padding: 13px 22px;
	border: 1px solid var(--color-secondary);
	border-radius: 4px;
	background: var(--color-secondary);
	color: #fff;
	font-weight: 800;
	cursor: pointer;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.st-lead-form-card__form input[type="submit"]:hover,
.st-lead-form-card__form input[type="submit"]:focus,
.st-lead-form-card__form button[type="submit"]:hover,
.st-lead-form-card__form button[type="submit"]:focus {
	border-color: #d3ad58;
	background: #c79b3d;
	color: #fff;
}

.st-lead-form-section__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(340px, 460px);
	gap: var(--spacing-8);
	align-items: center;
}

.st-lead-form-section--no-form .st-lead-form-section__grid {
	grid-template-columns: minmax(0, 820px);
}

.st-lead-form-section__content {
	min-width: 0;
}

.st-lead-form-section__content .st-component-header {
	margin-bottom: 0;
}

.st-lead-form-section__points {
	display: grid;
	gap: var(--spacing-4);
	margin-top: var(--spacing-6);
}

.st-lead-form-section__point {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr);
	gap: var(--spacing-4);
	align-items: start;
}

.st-lead-form-section__check {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 2px solid currentColor;
	border-radius: 50%;
	color: var(--color-secondary);
}

.st-lead-form-section__check::after {
	width: 13px;
	height: 7px;
	border-bottom: 2px solid currentColor;
	border-left: 2px solid currentColor;
	content: "";
	transform: translateY(-2px) rotate(-45deg);
}

.st-lead-form-section__point h3 {
	margin: 0 0 6px;
	color: inherit;
	font-size: 1.18rem;
	line-height: 1.25;
}

.st-lead-form-section__point p {
	margin: 0;
	color: var(--color-text-muted);
	line-height: 1.62;
}

.st-section--bg-dark .st-lead-form-section__point h3 {
	color: #fff;
}

.st-section--bg-dark .st-lead-form-section__point p {
	color: rgba(255, 255, 255, 0.68);
}

@media (min-width: 992px) {
	.st-lead-form-section--form-left .st-lead-form-card {
		order: -1;
	}
}

.st-hero-split__grid,
.st-image-content__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
	gap: var(--spacing-8);
	align-items: center;
}

.st-hero-split--image-left .st-hero-split__image,
.st-image-content--image-left .st-image-content__media {
	order: -1;
}

.st-hero-split__content > p:not(.st-eyebrow) {
	color: var(--color-text-muted);
}

.st-hero-split__image,
.st-image-content__media,
.st-info-card__image,
.st-gallery figure {
	margin: 0;
	overflow: hidden;
	border-radius: var(--radius-md);
	background: var(--color-accent);
}

.st-hero-split__image,
.st-image-content__media {
	aspect-ratio: 4 / 5;
	box-shadow: 0 22px 60px rgba(20, 32, 30, 0.12);
}

.st-image-content--landscape .st-image-content__media {
	aspect-ratio: 4 / 3;
}

.st-image-content--square .st-image-content__media {
	aspect-ratio: 1 / 1;
}

.st-hero-split__image img,
.st-image-content__media img,
.st-info-card__image img,
.st-gallery img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.st-mini-stats {
	display: flex;
	gap: var(--spacing-4);
	margin-top: var(--spacing-5);
}

.st-mini-stats strong {
	display: block;
	color: var(--color-primary);
	font-size: 1.5rem;
	line-height: 1.1;
}

.st-mini-stats span {
	display: block;
	margin-top: 6px;
	color: var(--color-text-muted);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.st-rich-content__inner {
	width: 100%;
	max-width: 860px;
	margin-right: auto;
	margin-left: auto;
}

.st-rich-content--narrow .st-rich-content__inner {
	max-width: 720px;
}

.st-rich-content--wide .st-rich-content__inner {
	max-width: 1040px;
}

.st-rich-content--has-image .st-rich-content__inner {
	max-width: 1120px;
}

.st-rich-content__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
	gap: var(--spacing-6);
	align-items: center;
}

.st-rich-content--image-left .st-rich-content__layout {
	grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
}

.st-rich-content__body {
	min-width: 0;
}

.st-rich-content__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	margin: 0;
	border-radius: var(--radius-md);
	box-shadow: 0 20px 46px rgba(28, 42, 39, 0.12);
}

.st-rich-content__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.st-card-grid,
.st-benefits__grid,
.st-pricing__grid,
.st-faqs__grid,
.st-statistics__grid {
	display: grid;
	gap: var(--spacing-4);
}

.st-card-grid--2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.st-card-grid--3,
.st-benefits__grid,
.st-pricing__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.st-card-grid--4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.st-statistics__grid {
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.st-info-card,
.st-benefit,
.st-pricing-card,
.st-faq {
	border: 1px solid rgba(23, 33, 31, 0.12);
	border-radius: var(--radius-md);
	background: #fff;
	box-shadow: 0 14px 34px rgba(28, 42, 39, 0.07);
}

.st-info-card,
.st-benefit,
.st-pricing-card {
	padding: var(--spacing-5);
}

.st-info-card--dark {
	background: var(--color-bg-dark);
	color: #fff;
}

.st-info-card__image {
	aspect-ratio: 4 / 3;
	margin: calc(var(--spacing-5) * -1) calc(var(--spacing-5) * -1) var(--spacing-4);
	border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.st-info-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	margin-bottom: var(--spacing-4);
	border-radius: var(--radius-full);
	background: var(--color-bg-alt);
	color: var(--color-secondary);
	font-weight: 800;
}

.st-info-card h3,
.st-benefit h3,
.st-pricing-card h3,
.st-process-step h3 {
	margin: 0 0 var(--spacing-3);
	color: var(--color-primary);
	font-size: 1.22rem;
	line-height: 1.25;
}

.st-info-card p,
.st-benefit p,
.st-pricing-card p,
.st-process-step p {
	margin-bottom: 0;
	color: var(--color-text-muted);
	line-height: 1.68;
}

.st-benefit {
	padding-top: var(--spacing-6);
}

.st-benefit::before {
	display: block;
	width: 34px;
	height: 3px;
	margin-bottom: var(--spacing-4);
	background: var(--color-secondary);
	content: "";
}

.st-process__steps {
	display: grid;
	gap: var(--spacing-4);
	max-width: 1020px;
	margin-top: var(--spacing-5);
}

.st-process--grid .st-process__steps {
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	max-width: none;
}

.st-process-step {
	position: relative;
	display: grid;
	grid-template-columns: 104px minmax(0, 1fr);
	column-gap: var(--spacing-4);
	row-gap: 8px;
	align-items: start;
	overflow: hidden;
	padding: var(--spacing-5) var(--spacing-6);
	border: 1px solid rgba(23, 33, 31, 0.1);
	border-radius: var(--radius-md);
	background: #fff;
	box-shadow: 0 14px 34px rgba(28, 42, 39, 0.06);
}

.st-process-step::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 4px;
	background: var(--color-secondary);
	content: "";
}

.st-process-step span {
	display: inline-flex;
	grid-row: 1 / span 2;
	grid-column: 1;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-width: 72px;
	min-height: 42px;
	padding: 0 14px;
	border-radius: var(--radius-full);
	background: var(--color-primary);
	color: var(--color-secondary);
	font-size: 0.82rem;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
}

.st-process-step h3,
.st-process-step p {
	grid-column: 2;
}

.st-process--grid .st-process-step {
	grid-template-columns: 1fr;
	align-content: start;
	min-height: 100%;
	padding: var(--spacing-5);
}

.st-process--grid .st-process-step span,
.st-process--grid .st-process-step h3,
.st-process--grid .st-process-step p {
	grid-row: auto;
	grid-column: 1;
}

.st-process--grid .st-process-step span {
	margin-bottom: var(--spacing-3);
}

.st-section--bg-dark .st-process-step {
	border-color: rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.06);
	box-shadow: none;
}

.st-section--bg-dark .st-process-step h3 {
	color: #fff;
}

.st-section--bg-dark .st-process-step p {
	color: rgba(255, 255, 255, 0.76);
}

.st-stat {
	padding: var(--spacing-5);
	border-left: 1px solid rgba(23, 33, 31, 0.12);
}

.st-stat strong {
	display: block;
	color: var(--color-secondary);
	font-size: 2rem;
	line-height: 1.1;
}

.st-stat span {
	display: block;
	margin-top: 8px;
	color: var(--color-primary);
	font-weight: 800;
}

.st-stat p {
	margin: 8px 0 0;
	color: var(--color-text-muted);
}

.st-section--bg-dark .st-stat {
	border-left-color: rgba(255, 255, 255, 0.14);
}

.st-section--bg-dark .st-stat span {
	color: #fff;
}

.st-section--bg-dark .st-stat p {
	color: rgba(255, 255, 255, 0.7);
}

.st-pricing-card {
	display: flex;
	flex-direction: column;
}

.st-pricing-card--highlight {
	border-color: rgba(184, 137, 67, 0.55);
	box-shadow: 0 20px 54px rgba(28, 42, 39, 0.12);
}

.st-pricing-card strong {
	display: block;
	margin-bottom: var(--spacing-3);
	color: var(--color-primary);
	font-size: 2rem;
	line-height: 1.1;
}

.st-check-list {
	margin: var(--spacing-4) 0;
	padding: 0;
	list-style: none;
}

.st-check-list li {
	position: relative;
	padding-left: 24px;
	color: var(--color-text-muted);
	line-height: 1.6;
}

.st-check-list li::before {
	position: absolute;
	left: 0;
	color: var(--color-secondary);
	content: "✓";
	font-weight: 800;
}

.st-section-note {
	max-width: 780px;
	margin: var(--spacing-4) auto 0;
	color: var(--color-text-muted);
	font-size: 0.92rem;
	text-align: center;
}

.st-faqs__grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: start;
}

.st-faq {
	overflow: hidden;
}

.st-faq summary {
	position: relative;
	display: block;
	padding: 22px 58px 22px 24px;
	cursor: pointer;
	color: var(--color-primary);
	font-weight: 800;
	line-height: 1.35;
}

.st-faq summary::-webkit-details-marker {
	display: none;
}

.st-faq summary::after {
	position: absolute;
	top: 50%;
	right: 22px;
	width: 24px;
	height: 24px;
	border: 1px solid rgba(23, 33, 31, 0.14);
	border-radius: 50%;
	content: "+";
	line-height: 22px;
	text-align: center;
	transform: translateY(-50%);
}

.st-faq[open] summary::after {
	border-color: var(--color-secondary);
	background: var(--color-secondary);
	color: var(--color-ink);
	content: "-";
}

.st-faq div {
	padding: 0 24px 24px;
	color: var(--color-text-muted);
	line-height: 1.7;
}

.st-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--spacing-3);
}

.st-gallery figure {
	aspect-ratio: 4 / 3;
}

.st-gallery--mosaic figure:first-child {
	grid-row: span 2;
	aspect-ratio: auto;
}

.st-cta-v2__panel {
	display: grid;
	grid-template-columns: minmax(0, 760px) minmax(280px, auto);
	gap: var(--spacing-6);
	align-items: center;
	justify-content: space-between;
	padding: var(--spacing-6);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius-md);
	background: linear-gradient(135deg, rgba(31, 75, 67, 0.94), rgba(15, 42, 42, 0.98));
	color: #fff;
	box-shadow: 0 22px 60px rgba(20, 32, 30, 0.16);
}

.st-cta-v2 .st-component-header {
	max-width: 760px;
}

.st-cta-v2 .st-component-header__title {
	max-width: 720px;
	font-size: 2.65rem;
	line-height: 1.12;
}

.st-cta-v2 .st-component-header__intro {
	max-width: 680px;
	color: rgba(255, 255, 255, 0.78);
}

.st-cta-v2 .st-actions {
	justify-content: flex-end;
	margin-top: 0;
}

.st-cta-v2 .btn {
	min-width: 180px;
}

.st-cta-v2--buttons-stacked .st-cta-v2__panel {
	grid-template-columns: minmax(0, 820px);
	justify-content: center;
	text-align: center;
}

.st-cta-v2--buttons-stacked .st-component-header,
.st-cta-v2--buttons-stacked .st-component-header__title,
.st-cta-v2--buttons-stacked .st-component-header__intro {
	margin-right: auto;
	margin-left: auto;
}

.st-cta-v2--buttons-stacked .st-actions {
	justify-content: center;
	margin-top: var(--spacing-4);
}

.st-featured-properties__content {
	overflow: hidden;
	padding: var(--spacing-4);
	border: 1px solid rgba(23, 33, 31, 0.12);
	border-radius: var(--radius-md);
	background: #fff;
	box-shadow: 0 16px 42px rgba(28, 42, 39, 0.08);
}

@media (max-width: 991px) {
	.st-hero-with-form__grid,
	.st-lead-form-section__grid,
	.st-hero-split__grid,
	.st-image-content__grid,
	.st-rich-content__layout,
	.st-cta-v2__panel {
		grid-template-columns: 1fr;
	}

	.st-hero-split--image-left .st-hero-split__image,
	.st-image-content--image-left .st-image-content__media,
	.st-rich-content--image-left .st-rich-content__media {
		order: 0;
	}

	.st-cta-v2 .st-actions {
		justify-content: flex-start;
		margin-top: var(--spacing-4);
	}

	.st-card-grid--2,
	.st-card-grid--3,
	.st-card-grid--4,
	.st-benefits__grid,
	.st-pricing__grid,
	.st-faqs__grid,
	.st-statistics__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.st-hero-v2 {
		min-height: auto;
		padding: var(--spacing-8) 0;
	}

	.st-actions,
	.st-actions .btn {
		width: 100%;
	}

	.st-card-grid--2,
	.st-card-grid--3,
	.st-card-grid--4,
	.st-benefits__grid,
	.st-pricing__grid,
	.st-faqs__grid,
	.st-statistics__grid,
	.st-gallery {
		grid-template-columns: 1fr;
	}

	.st-process-step {
		grid-template-columns: 1fr;
		padding: var(--spacing-5);
	}

	.st-process-step span,
	.st-process-step h3,
	.st-process-step p {
		grid-row: auto;
		grid-column: 1;
	}

	.st-lead-form-section__point {
		grid-template-columns: 1fr;
	}

	.st-cta-v2 .st-component-header__title {
		font-size: 2.1rem;
	}

	.st-gallery--mosaic figure:first-child {
		grid-row: auto;
		aspect-ratio: 4 / 3;
	}

	.st-cta-v2__panel,
	.st-lead-form-card,
	.st-info-card,
	.st-benefit,
	.st-pricing-card {
		padding: var(--spacing-4);
	}
}
