/* Sunbeth Treenuts — Landing page styles */

:root {
	--sunbeth-primary: #fe5b0b;
	--sunbeth-dark: #0f0f0f;
	--sunbeth-heading: #212121;
	--sunbeth-body: #444;
	--sunbeth-muted: #888;
	--sunbeth-cream: #fff1ea;
	--sunbeth-peach: #ffcaaf;
	--sunbeth-light-peach: #ffe7da;
	--sunbeth-white: #fff;
	--sunbeth-radius: 10px;
	--sunbeth-radius-lg: 16px;
	--sunbeth-radius-xl: 30px;
	--sunbeth-container: min(1280px, calc(100% - 48px));
	--sunbeth-font: "Outfit", sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

.sunbeth-landing {
	margin: 0;
	padding: 0;
}

.sunbeth-page {
	font-family: var(--sunbeth-font);
	color: var(--sunbeth-body);
	overflow-x: hidden;
}

.sunbeth-page img {
	max-width: 100%;
	height: auto;
	display: block;
}

.sunbeth-container {
	width: var(--sunbeth-container);
	margin-inline: auto;
}

.sunbeth-text-primary {
	color: var(--sunbeth-primary);
}

.sunbeth-label {
	display: block;
	font-size: 24px;
	font-weight: 500;
	color: var(--sunbeth-primary);
	letter-spacing: -0.02em;
	margin-bottom: 8px;
}

.sunbeth-label--light {
	color: rgba(255, 255, 255, 0.7);
}

/* Buttons */
.sunbeth-btn {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	min-width: 135px;
	height: 48px;
	padding: 0 16px;
	border-radius: var(--sunbeth-radius);
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: opacity 0.2s, transform 0.2s;
	letter-spacing: -0.01em;
}

.sunbeth-btn:hover {
	opacity: 0.92;
	transform: translateY(-1px);
}

.sunbeth-btn--primary {
	background: var(--sunbeth-primary);
	color: var(--sunbeth-white);
}

.sunbeth-btn--white {
	background: var(--sunbeth-white);
	color: var(--sunbeth-dark);
}

.sunbeth-btn--sm {
	min-width: 148px;
}

.sunbeth-btn--compact {
	min-width: 135px;
}

.sunbeth-btn__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 39px;
	height: 39px;
	border-radius: 8px;
	flex-shrink: 0;
}

.sunbeth-btn__icon--white {
	background: var(--sunbeth-white);
}

.sunbeth-btn__icon--dark {
	background: var(--sunbeth-dark);
}

/* Header */
.sunbeth-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(15, 15, 15, 0.2);
	height: 96px;
	transition: background 0.25s, box-shadow 0.25s;
}

.sunbeth-header.is-sticky {
	position: fixed;
	background: rgba(15, 15, 15, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.sunbeth-header--about.is-sticky {
	background: rgba(255, 255, 255, 0.97);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.sunbeth-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 96px;
	gap: 24px;
}

.sunbeth-logo img {
	height: 52px;
	width: auto;
}

.sunbeth-nav {
	display: flex;
	align-items: center;
	gap: 16px;
}

.sunbeth-nav a {
	color: rgba(247, 247, 247, 0.8);
	text-decoration: none;
	font-size: 18px;
	padding: 10px;
	transition: color 0.2s;
}

.sunbeth-nav a:hover {
	color: var(--sunbeth-white);
}

.sunbeth-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.sunbeth-menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--sunbeth-white);
}

/* Hero */
.sunbeth-hero {
	position: relative;
	min-height: 904px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: var(--sunbeth-white);
	text-align: center;
}

.sunbeth-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}

.sunbeth-hero__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 10, 0.64);
}

.sunbeth-hero__content {
	position: relative;
	z-index: 1;
	padding: 160px 0 100px;
	max-width: 960px;
	margin-inline: auto;
}

.sunbeth-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 8px;
}

.sunbeth-hero__avatars {
	display: flex;
}

.sunbeth-hero__avatars img {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 1.5px solid var(--sunbeth-primary);
	margin-left: -9px;
	object-fit: cover;
}

.sunbeth-hero__avatars img:first-child {
	margin-left: 0;
}

.sunbeth-hero__badge span {
	font-size: 14px;
	font-weight: 500;
	color: var(--sunbeth-white);
}

.sunbeth-hero__title {
	font-size: clamp(2.5rem, 6vw, 74px);
	font-weight: 500;
	line-height: 80px;
	letter-spacing: -1.48px;
	margin: 0 0 10px;
	color: var(--sunbeth-white);
	text-align: center;
	word-break: break-word;
}

.sunbeth-hero__title-line {
	display: block;
	letter-spacing: -0.32px;
}

.sunbeth-hero__title-accent {
	color: var(--sunbeth-primary);
}

@media (max-width: 768px) {
	.sunbeth-hero__title {
		line-height: 1.08;
		letter-spacing: -0.02em;
	}

	.sunbeth-hero__title-line {
		letter-spacing: inherit;
	}
}

.sunbeth-hero__desc {
	font-size: clamp(1rem, 2vw, 1.25rem);
	line-height: 1.7;
	max-width: 915px;
	margin: 0 auto 60px;
	opacity: 0.95;
}

.sunbeth-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
}

/* Supply chain */
.sunbeth-supply {
	background: var(--sunbeth-cream);
	padding: 80px 0 120px;
	text-align: center;
}

.sunbeth-supply__title {
	font-size: clamp(1.5rem, 3vw, 2.125rem);
	font-weight: 500;
	color: var(--sunbeth-heading);
	margin: 0 0 60px;
	letter-spacing: -0.02em;
}

.sunbeth-supply__visual {
	position: relative;
	max-width: 991px;
	margin-inline: auto;
	min-height: 500px;
}

.sunbeth-supply__arc {
	position: relative;
	margin-top: 40px;
}

.sunbeth-supply__arc-inner {
	background: var(--sunbeth-light-peach);
	border: 1px solid #efcebe;
	border-radius: 3000px;
	box-shadow: 0 4px 60px rgba(254, 90, 8, 0.2);
	padding: 100px 40px 80px;
	max-width: 911px;
	margin-inline: auto;
}

.sunbeth-supply__globe,
.sunbeth-supply__icon {
	margin: 0 auto 24px;
	transition: opacity 0.3s;
}

.sunbeth-supply__arc-inner h3 {
	font-size: 30px;
	font-weight: 500;
	color: #2f2f2f;
	margin: 0 0 8px;
}

.sunbeth-supply__arc-inner p {
	font-size: 20px;
	color: var(--sunbeth-muted);
	margin: 0 0 24px;
}

.sunbeth-supply__line {
	margin: 0 auto;
	max-width: 603px;
}

.sunbeth-supply__step {
	position: absolute;
	width: 80px;
	height: 80px;
	background: var(--sunbeth-primary);
	border: 2px solid var(--sunbeth-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 34px;
	font-weight: 500;
	color: var(--sunbeth-white);
	z-index: 2;
	cursor: pointer;
	font-family: inherit;
	padding: 0;
	transition: top 0.45s ease, right 0.45s ease, bottom 0.45s ease, left 0.45s ease, transform 0.45s ease, box-shadow 0.25s;
}

.sunbeth-supply__step:hover {
	box-shadow: 0 8px 24px rgba(254, 91, 11, 0.35);
}

.sunbeth-supply__step.is-active {
	box-shadow: 0 8px 32px rgba(254, 91, 11, 0.45);
}

.sunbeth-supply__step.pos-top {
	top: 0;
	left: 50%;
	right: auto;
	bottom: auto;
	transform: translateX(-50%);
}

.sunbeth-supply__step.pos-right {
	top: 50%;
	right: 0;
	left: auto;
	bottom: auto;
	transform: translateY(-50%);
}

.sunbeth-supply__step.pos-bottom {
	bottom: 0;
	left: 50%;
	top: auto;
	right: auto;
	transform: translateX(-50%);
}

.sunbeth-supply__step.pos-left {
	top: 50%;
	left: 0;
	right: auto;
	bottom: auto;
	transform: translateY(-50%);
}

/* About */
.sunbeth-about {
	position: relative;
	padding: 89px 0 80px;
	background: var(--sunbeth-white);
	overflow: hidden;
}

.sunbeth-about__watermark {
	position: absolute;
	top: 0;
	right: 0;
	width: 400px;
	opacity: 0.06;
	pointer-events: none;
}

.sunbeth-about__header {
	display: grid;
	grid-template-columns: 96px 1fr;
	gap: 40px 373px;
	margin-bottom: 57px;
}

.sunbeth-about__intro h2 {
	font-size: clamp(1.5rem, 3vw, 2.125rem);
	font-weight: 500;
	color: var(--sunbeth-heading);
	line-height: 1.5;
	margin: 0 0 8px;
	max-width: 758px;
}

.sunbeth-about__intro p {
	font-size: 20px;
	line-height: 2;
	margin: 0;
	max-width: 819px;
}

.sunbeth-about__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.sunbeth-card {
	border-radius: var(--sunbeth-radius);
	min-height: 507px;
	position: relative;
	overflow: hidden;
}

.sunbeth-card--image {
	background-size: cover;
	background-position: center;
}

.sunbeth-card--image::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 10, 0.5);
}

.sunbeth-card__label {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 48px 28px;
	color: var(--sunbeth-white);
	font-size: 28px;
	font-weight: 500;
}

.sunbeth-card--interactive {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.sunbeth-card--interactive .sunbeth-card__panel {
	position: absolute;
	inset: auto 0 0;
	z-index: 1;
	background: rgba(15, 15, 15, 0.88);
	padding: 28px;
	transform: translateY(100%);
	transition: transform 0.35s ease;
}

.sunbeth-card--interactive .sunbeth-card__panel p {
	margin: 0;
	color: rgba(255, 255, 255, 0.92);
	font-size: 18px;
	line-height: 1.6;
}

.sunbeth-card--interactive:hover .sunbeth-card__panel {
	transform: translateY(0);
}

.sunbeth-card--gradient {
	background: linear-gradient(-90deg, #0f0f0f 50%, var(--sunbeth-primary) 217%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 28px;
	color: var(--sunbeth-white);
}

.sunbeth-card--gradient h3 {
	font-size: 28px;
	font-weight: 500;
	line-height: 1.2;
	margin: 0 0 34px;
	max-width: 292px;
}

/* Products */
.sunbeth-products {
	background: var(--sunbeth-primary);
	padding: 82px 0;
}

.sunbeth-products__header {
	margin-bottom: 35px;
}

.sunbeth-products__header h2 {
	font-size: clamp(1.5rem, 3vw, 2.125rem);
	font-weight: 500;
	color: var(--sunbeth-white);
	line-height: 1.5;
	margin: 0 0 10px;
	max-width: 900px;
}

.sunbeth-products__header p {
	font-size: 20px;
	color: rgba(247, 247, 247, 0.9);
	line-height: 2;
	margin: 0;
	max-width: 900px;
}

.sunbeth-products__panel {
	background: var(--sunbeth-white);
	border-radius: var(--sunbeth-radius-lg);
	padding: 20px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	align-items: center;
	min-height: 633px;
}

.sunbeth-products__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.sunbeth-product-item {
	width: 100%;
	text-align: left;
	background: transparent;
	border: none;
	border-radius: 18px;
	padding: 24px;
	cursor: pointer;
	font-family: inherit;
	transition: background 0.2s;
}

.sunbeth-product-item.is-active {
	background: rgba(254, 90, 8, 0.04);
}

.sunbeth-product-item h3 {
	font-size: 20px;
	font-weight: 500;
	color: var(--sunbeth-heading);
	margin: 0;
}

.sunbeth-product-item__body {
	margin-top: 12px;
}

.sunbeth-product-item__body p {
	font-size: 16px;
	line-height: 2;
	margin: 0 0 8px;
}

.sunbeth-product-item:not(.is-active) .sunbeth-product-item__body {
	display: none;
}

.sunbeth-products__gallery {
	position: relative;
	border-radius: var(--sunbeth-radius-lg);
	overflow: hidden;
	height: 605px;
}

.sunbeth-products__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.35s;
	pointer-events: none;
}

.sunbeth-products__slide.is-active {
	opacity: 1;
	pointer-events: auto;
}

.sunbeth-products__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--sunbeth-radius-lg);
}

.sunbeth-products__num {
	position: absolute;
	top: 40px;
	left: 40px;
	font-size: clamp(4rem, 10vw, 8.75rem);
	font-weight: 500;
	color: rgba(254, 91, 11, 0.08);
	line-height: 1;
	z-index: 1;
}

/* Markets */
.sunbeth-markets {
	padding: 60px 0 80px;
	background: var(--sunbeth-white);
	text-align: center;
}

.sunbeth-markets__header {
	max-width: 924px;
	margin: 0 auto 40px;
}

.sunbeth-markets__header h2 {
	font-size: clamp(1.5rem, 3vw, 2.125rem);
	font-weight: 500;
	color: var(--sunbeth-heading);
	margin: 0 0 10px;
}

.sunbeth-markets__header p {
	font-size: 20px;
	line-height: 1.8;
	margin: 0;
}

.sunbeth-markets__map-wrap {
	margin-bottom: 40px;
}

.sunbeth-markets__map {
	width: 100%;
	max-width: 1440px;
	margin-inline: auto;
}

.sunbeth-markets__cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin-bottom: 32px;
	text-align: left;
}

.sunbeth-market-card {
	background: #f9f9f9;
	border-radius: var(--sunbeth-radius);
	padding: 24px 16px;
	min-height: 176px;
}

.sunbeth-market-card__flag {
	font-size: 48px;
	margin-bottom: 8px;
}

.sunbeth-market-card__country {
	display: block;
	font-weight: 500;
	color: var(--sunbeth-heading);
	margin-bottom: 16px;
}

.sunbeth-market-card p {
	font-size: 15px;
	margin: 0;
	color: var(--sunbeth-body);
}

.sunbeth-markets__note {
	font-size: 20px;
	color: var(--sunbeth-body);
	margin-bottom: 32px;
}

/* Why choose us */
.sunbeth-why {
	padding: 128px 0;
	background: linear-gradient(180deg, var(--sunbeth-primary) 0%, var(--sunbeth-white) 120%);
}

.sunbeth-why__header {
	margin-bottom: 40px;
}

.sunbeth-why__header h2 {
	font-size: clamp(1.5rem, 3vw, 2.125rem);
	font-weight: 500;
	color: var(--sunbeth-heading);
	max-width: 952px;
	margin: 0 0 10px;
	line-height: 1.5;
}

.sunbeth-why__header p {
	font-size: 20px;
	max-width: 1032px;
	margin: 0;
	line-height: 2;
}

.sunbeth-why__panel {
	background: var(--sunbeth-white);
	border-radius: 20px;
	overflow: hidden;
	padding: 40px;
}

.sunbeth-why__tabs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	margin-bottom: 30px;
	border-bottom: 1px solid #eee;
}

.sunbeth-why__tabs button {
	background: #f9f9f9;
	border: none;
	padding: 16px 12px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	color: var(--sunbeth-muted);
	cursor: pointer;
	border-right: 1px solid #eee;
}

.sunbeth-why__tabs button.is-active {
	background: var(--sunbeth-primary);
	color: var(--sunbeth-white);
}

.sunbeth-why__blocks {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.sunbeth-why__blocks[data-why-panel] {
	gap: 0;
}

.sunbeth-why__blocks[data-why-panel] .sunbeth-why-block {
	display: none;
}

.sunbeth-why__blocks[data-why-panel] .sunbeth-why-block.is-active {
	display: grid;
}

.sunbeth-why-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	align-items: center;
	background: #f9f9f9;
	border-radius: 8px;
	padding: 14px;
	min-height: 589px;
}

.sunbeth-why-block--reverse .sunbeth-why-block__content {
	order: 2;
}

.sunbeth-why-block--reverse .sunbeth-why-block__media {
	order: 1;
}

.sunbeth-why-block__icon {
	width: 60px;
	height: 60px;
	background: var(--sunbeth-primary);
	border: 2px solid #ebebeb;
	border-radius: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--sunbeth-white);
	font-size: 24px;
	margin-bottom: 34px;
}

.sunbeth-why-block__content {
	padding: 20px 34px;
}

.sunbeth-why-block__content h3 {
	font-size: 30px;
	font-weight: 500;
	color: var(--sunbeth-heading);
	margin: 0 0 11px;
}

.sunbeth-why-block__content p {
	font-size: 24px;
	line-height: 1.75;
	margin: 0;
}

.sunbeth-why-block__media {
	background: #ffefe6;
	border-radius: 8px;
	overflow: hidden;
	height: 561px;
}

.sunbeth-why-block__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Solutions */
.sunbeth-solutions {
	background: var(--sunbeth-peach);
	padding: 80px 0;
	text-align: center;
}

.sunbeth-solutions__header {
	max-width: 924px;
	margin: 0 auto 40px;
}

.sunbeth-solutions__header h2 {
	font-size: clamp(1.5rem, 3vw, 2.125rem);
	font-weight: 500;
	color: var(--sunbeth-heading);
	margin: 0 0 10px;
}

.sunbeth-solutions__header p {
	font-size: 20px;
	margin: 0;
	line-height: 2;
}

.sunbeth-solutions__showcase {
	max-width: 1182px;
	margin-inline: auto;
}

.sunbeth-solutions__image-wrap {
	position: relative;
	border-radius: var(--sunbeth-radius-xl);
	overflow: visible;
	margin-bottom: 34px;
	padding-bottom: 120px;
}

.sunbeth-solutions__image {
	width: 100%;
	height: 638px;
	object-fit: cover;
	display: none;
	border-radius: var(--sunbeth-radius-xl);
}

.sunbeth-solutions__image.is-active {
	display: block;
}

.sunbeth-solutions__caption {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: min(932px, 90%);
	background: linear-gradient(135deg, #461801, #fe5a08);
	border-radius: var(--sunbeth-radius-xl);
	padding: 40px 24px;
	color: var(--sunbeth-white);
	text-align: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
}

.sunbeth-solutions__caption.is-active {
	opacity: 1;
	pointer-events: auto;
}

.sunbeth-solutions__caption h3 {
	font-size: 34px;
	font-weight: 500;
	margin: 0 0 6px;
}

.sunbeth-solutions__caption p {
	font-size: 20px;
	color: rgba(247, 247, 247, 0.8);
	margin: 0;
	line-height: 1.7;
}

.sunbeth-solutions__tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px;
	background: rgba(15, 15, 15, 0.1);
	border-radius: 4px;
	padding: 6px;
	max-width: 809px;
	margin: 100px auto 0;
}

.sunbeth-solutions__tabs button {
	flex: 1;
	min-width: 120px;
	height: 55px;
	border: none;
	border-radius: 4px;
	font-family: inherit;
	font-size: 16px;
	cursor: pointer;
	background: rgba(247, 247, 247, 0.8);
	color: var(--sunbeth-muted);
	transition: background 0.2s, color 0.2s;
}

.sunbeth-solutions__tabs button.is-active {
	background: var(--sunbeth-primary);
	color: var(--sunbeth-white);
	font-weight: 500;
}

/* Contact & Footer */
.sunbeth-contact-footer {
	background: var(--sunbeth-dark);
}

.sunbeth-contact-banner {
	position: relative;
	padding-top: 0;
	margin-top: -120px;
	padding-bottom: 40px;
}

.sunbeth-contact-banner__bg {
	height: 525px;
	border-radius: 24px;
	background-size: cover;
	background-position: center;
	position: relative;
}

.sunbeth-contact-banner__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 10, 0.3);
	border-radius: 24px;
}

.sunbeth-contact-banner .sunbeth-contact-card {
	position: absolute;
	top: 50%;
	left: 48px;
	transform: translateY(-50%);
	width: min(430px, calc(100% - 48px));
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(12px);
	border-radius: 24px;
	padding: 69px 32px;
	z-index: 2;
}

.sunbeth-contact-banner .sunbeth-contact-card__icon {
	font-size: 48px;
	margin-bottom: 22px;
}

.sunbeth-contact-banner .sunbeth-contact-card h2 {
	font-size: 34px;
	font-weight: 500;
	color: var(--sunbeth-primary);
	margin: 0 0 3px;
}

.sunbeth-contact-banner .sunbeth-contact-card__sub {
	font-size: 20px;
	color: var(--sunbeth-body);
	margin: 0 0 24px;
}

.sunbeth-contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.sunbeth-contact-list li,
.sunbeth-contact-list a {
	font-size: 15px;
	color: var(--sunbeth-body);
	text-decoration: none;
}

.sunbeth-contact-list--light li,
.sunbeth-contact-list--light a {
	color: var(--sunbeth-white);
}

.sunbeth-footer {
	padding: 120px 0 40px;
}

.sunbeth-footer__main {
	display: grid;
	grid-template-columns: 1.2fr 1fr 0.9fr;
	gap: 48px;
	align-items: start;
	padding-bottom: 40px;
}

.sunbeth-footer__brand img {
	margin-bottom: 40px;
	filter: brightness(0) invert(1);
}

.sunbeth-footer__links {
	display: flex;
	gap: 80px;
}

.sunbeth-footer__links h4 {
	color: var(--sunbeth-white);
	font-size: 14px;
	font-weight: 500;
	margin: 0 0 24px;
}

.sunbeth-footer__links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sunbeth-footer__links li {
	margin-bottom: 16px;
}

.sunbeth-footer__links a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 14px;
}

.sunbeth-footer__links a:hover {
	color: var(--sunbeth-white);
}

.sunbeth-footer__cta {
	background: rgba(255, 255, 255, 0.2);
	border-radius: var(--sunbeth-radius-xl);
	padding: 44px 34px;
}

.sunbeth-footer__cta h3 {
	font-size: 34px;
	font-weight: 500;
	color: var(--sunbeth-white);
	margin: 0 0 10px;
	line-height: 1.2;
}

.sunbeth-footer__cta p {
	font-size: 20px;
	color: rgba(255, 255, 255, 0.6);
	margin: 0 0 40px;
	line-height: 1.5;
}

.sunbeth-footer__bottom {
	border-top: 0.5px solid #fcfcfc;
	padding-top: 24px;
}

.sunbeth-footer__bottom p {
	color: var(--sunbeth-primary);
	font-size: 16px;
	margin: 0;
}

/* Responsive */
@media (max-width: 1100px) {
	.sunbeth-about__header {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.sunbeth-about__cards {
		grid-template-columns: 1fr;
	}

	.sunbeth-card {
		min-height: 360px;
	}

	.sunbeth-products__panel {
		grid-template-columns: 1fr;
	}

	.sunbeth-markets__cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.sunbeth-why-block {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.sunbeth-why-block--reverse .sunbeth-why-block__content,
	.sunbeth-why-block--reverse .sunbeth-why-block__media {
		order: unset;
	}

	.sunbeth-why-block__media {
		height: 320px;
	}

	.sunbeth-why__tabs {
		grid-template-columns: repeat(2, 1fr);
	}

	.sunbeth-footer__main {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.sunbeth-nav,
	.sunbeth-header .sunbeth-btn {
		display: none;
	}

	.sunbeth-menu-toggle {
		display: flex;
	}

	.sunbeth-header.is-open .sunbeth-nav {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 96px;
		left: 0;
		right: 0;
		background: rgba(15, 15, 15, 0.95);
		padding: 24px;
	}

	.sunbeth-supply__step {
		width: 56px;
		height: 56px;
		font-size: 24px;
	}

	.sunbeth-markets__cards {
		grid-template-columns: 1fr;
	}

	.sunbeth-contact-banner .sunbeth-contact-card {
		position: relative;
		left: auto;
		transform: none;
		margin-top: -200px;
		width: calc(100% - 32px);
		margin-inline: auto;
	}

	.sunbeth-contact-banner__bg {
		height: 400px;
	}

	.sunbeth-solutions__tabs {
		flex-direction: column;
	}

	.sunbeth-why-block__content p {
		font-size: 18px;
	}

	.sunbeth-about-hero__content {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.sunbeth-about-gallery__grid {
		grid-template-columns: 1fr;
	}

	.sunbeth-about-gallery__stack {
		grid-template-columns: 1fr;
	}

	.sunbeth-vision-mission__grid {
		grid-template-columns: 1fr;
	}

	.sunbeth-value-item__trigger {
		grid-template-columns: 48px 1fr;
		grid-template-rows: auto auto;
	}

	.sunbeth-value-item__text {
		grid-column: 1 / -1;
	}

	.sunbeth-team__grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   About page
   ========================================================================== */

.sunbeth-about-page {
	margin: 0;
	padding: 0;
}

.sunbeth-about-hero {
	position: relative;
	min-height: 934px;
	padding-bottom: 80px;
	overflow: hidden;
}

.sunbeth-about-hero__mosaic {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center top;
	opacity: 0.35;
}

.sunbeth-header--about.is-sticky .sunbeth-nav a {
	color: rgba(33, 33, 33, 0.75);
}

.sunbeth-header--about.is-sticky .sunbeth-nav a:hover,
.sunbeth-header--about.is-sticky .sunbeth-nav__active {
	color: var(--sunbeth-heading) !important;
}

.sunbeth-header--about.is-sticky .sunbeth-nav__active::after {
	background: var(--sunbeth-primary);
}

.sunbeth-header--about {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(15, 15, 15, 0.08);
}

.sunbeth-header--about:not(.is-sticky) {
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(8px);
}

.sunbeth-header--about:not(.is-sticky) .sunbeth-nav a {
	color: rgba(33, 33, 33, 0.75);
}

.sunbeth-header--about:not(.is-sticky) .sunbeth-nav a:hover,
.sunbeth-header--about:not(.is-sticky) .sunbeth-nav__active {
	color: var(--sunbeth-heading) !important;
}

.sunbeth-header--about:not(.is-sticky) .sunbeth-nav__active::after {
	background: var(--sunbeth-primary);
}

.sunbeth-nav__active {
	position: relative;
	font-weight: 500;
	color: var(--sunbeth-white) !important;
}

.sunbeth-nav__active::after {
	content: "";
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 2px;
	height: 2px;
	background: var(--sunbeth-white);
	border-radius: 6px;
}

.sunbeth-menu-toggle--dark span {
	background: var(--sunbeth-dark);
}

.sunbeth-about-hero__content {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 23px;
	padding-top: 184px;
	align-items: start;
}

.sunbeth-about-hero__title {
	font-size: clamp(2rem, 4vw, 3.25rem);
	font-weight: 500;
	color: var(--sunbeth-heading);
	line-height: 1.25;
	letter-spacing: -0.02em;
	margin: 0;
	max-width: 640px;
}

.sunbeth-about-hero__desc {
	font-size: 20px;
	line-height: 1.8;
	margin: 0;
	color: var(--sunbeth-body);
}

/* Gallery */
.sunbeth-about-gallery {
	padding: 0 0 80px;
	margin-top: -40px;
	position: relative;
	z-index: 2;
}

.sunbeth-about-gallery__grid {
	display: grid;
	grid-template-columns: 361px 1fr 361px;
	gap: 16px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 60px;
	padding: 22px;
	backdrop-filter: blur(4px);
}

.sunbeth-about-gallery__stack {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.sunbeth-about-gallery__item {
	border-radius: 40px;
	overflow: hidden;
}

.sunbeth-about-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sunbeth-about-gallery__item--tall {
	height: 618px;
}

.sunbeth-about-gallery__item--wide {
	height: 386px;
}

.sunbeth-about-gallery__item--wide:last-child {
	height: 217px;
}

/* Vision & Mission */
.sunbeth-vision-mission {
	padding: 54px 0 100px;
	background: var(--sunbeth-white);
}

.sunbeth-vision-mission__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.sunbeth-vision-mission__col h2 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 500;
	color: #2d2d2d;
	letter-spacing: -0.03em;
	margin: 0 0 35px;
	line-height: 1.1;
}

.sunbeth-vision-mission__col p {
	font-size: 20px;
	line-height: 1.8;
	color: var(--sunbeth-body);
	margin: 0 0 60px;
	letter-spacing: -0.02em;
}

.sunbeth-vision-mission__col--offset {
	padding-top: 0;
}

.sunbeth-vision-mission__col--offset h2,
.sunbeth-vision-mission__col--offset p {
	margin-top: 0;
}

.sunbeth-vision-mission__col--offset p {
	margin-bottom: 0;
}

.sunbeth-vision-mission__media {
	border-radius: var(--sunbeth-radius-xl);
	overflow: hidden;
}

.sunbeth-vision-mission__media img {
	width: 100%;
	height: auto;
	min-height: 400px;
	object-fit: cover;
	display: block;
}

.sunbeth-vision-mission__col--offset .sunbeth-vision-mission__media {
	margin-bottom: 60px;
}

/* Values */
.sunbeth-values {
	background: #2d2d2d;
	padding: 134px 0;
	color: var(--sunbeth-white);
}

.sunbeth-values__header {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 23px;
	margin-bottom: 64px;
	align-items: start;
}

.sunbeth-values__intro h2 {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 500;
	color: var(--sunbeth-white);
	line-height: 1.3;
	margin: 0;
	max-width: 640px;
}

.sunbeth-values__header > p {
	font-size: 20px;
	line-height: 1.8;
	margin: 0;
	color: rgba(255, 255, 255, 0.85);
}

.sunbeth-values .sunbeth-label {
	color: var(--sunbeth-primary);
}

.sunbeth-values__list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.sunbeth-value-item {
	border-bottom: 1px dashed rgba(235, 235, 235, 0.4);
}

.sunbeth-value-item__trigger {
	width: 100%;
	display: grid;
	grid-template-columns: 64px 220px 1fr;
	gap: 24px 40px;
	align-items: start;
	padding: 30px 0;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: inherit;
	color: rgba(255, 255, 255, 0.8);
}

.sunbeth-value-item.is-active .sunbeth-value-item__trigger {
	color: var(--sunbeth-white);
}

.sunbeth-value-item__num {
	font-size: 32px;
	line-height: 1.25;
}

.sunbeth-value-item__title {
	font-size: 30px;
	font-weight: 500;
	color: inherit;
}

.sunbeth-value-item__text {
	font-size: 20px;
	line-height: 2;
	grid-column: 3;
}

.sunbeth-value-item:not(.is-active) .sunbeth-value-item__text {
	display: none;
}

.sunbeth-value-item__media {
	display: none;
	height: 292px;
	border-radius: 0 50px 50px 0;
	overflow: hidden;
	margin-bottom: 30px;
}

.sunbeth-value-item.is-active .sunbeth-value-item__media {
	display: block;
}

.sunbeth-value-item__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Team */
.sunbeth-team {
	position: relative;
	padding: 128px 0 80px;
	overflow: hidden;
}

.sunbeth-team__mosaic {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.25;
}

.sunbeth-team__title {
	position: relative;
	z-index: 1;
	text-align: center;
	font-size: clamp(1.5rem, 3vw, 2.125rem);
	font-weight: 500;
	color: var(--sunbeth-heading);
	margin: 0 auto 80px;
	max-width: 436px;
	line-height: 1.3;
}

.sunbeth-team__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, 408px);
	gap: 14px;
	justify-content: center;
}

.sunbeth-team-card {
	background: #f9f9f9;
	border: 1px solid #ebebeb;
	border-radius: var(--sunbeth-radius-xl);
	overflow: hidden;
	height: 480px;
	display: flex;
	flex-direction: column;
}

.sunbeth-team-card__photo {
	flex: 1;
	overflow: hidden;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.sunbeth-team-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}

.sunbeth-team-card__footer {
	background: var(--sunbeth-white);
	padding: 23px 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 90px;
}

.sunbeth-team-card__footer h3 {
	font-size: 20px;
	font-weight: 500;
	color: #2f2f2f;
	margin: 0 0 8px;
	letter-spacing: -0.03em;
}

.sunbeth-team-card__footer p {
	font-size: 16px;
	color: var(--sunbeth-body);
	margin: 0;
}

.sunbeth-team-card__footer p::before {
	content: "• ";
	color: var(--sunbeth-primary);
}

.sunbeth-team-card__link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: var(--sunbeth-primary);
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
}

.sunbeth-team-card__link img {
	transform: rotate(90deg);
}

@media (max-width: 1100px) {
	.sunbeth-about-hero__content,
	.sunbeth-values__header {
		grid-template-columns: 1fr;
	}

	.sunbeth-about-gallery__grid {
		grid-template-columns: 1fr;
	}

	.sunbeth-about-gallery__item--tall,
	.sunbeth-about-gallery__item--wide {
		height: 320px;
	}

	.sunbeth-team__grid {
		grid-template-columns: 1fr;
		max-width: 408px;
		margin-inline: auto;
	}
}

/* ==========================================================================
   Contact page
   ========================================================================== */

.sunbeth-contact-page {
	margin: 0;
	padding: 0;
}

.sunbeth-contact-hero {
	position: relative;
	min-height: 934px;
	padding-bottom: 40px;
	overflow: hidden;
}

.sunbeth-contact-hero__mosaic {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center top;
	opacity: 0.35;
}

.sunbeth-contact-hero__headlines {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 46px;
	padding-top: 184px;
	align-items: start;
}

.sunbeth-contact-hero__title,
.sunbeth-contact-hero__subtitle {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 500;
	color: var(--sunbeth-heading);
	margin: 0;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.sunbeth-contact-hero__subtitle {
	text-align: right;
}

.sunbeth-btn--current {
	box-shadow: 0 0 0 2px var(--sunbeth-white), 0 0 0 4px var(--sunbeth-primary);
}

.sunbeth-btn--full {
	width: 100%;
	justify-content: space-between;
}

.sunbeth-contact-image {
	padding: 0 0 80px;
	margin-top: -120px;
	position: relative;
	z-index: 2;
}

.sunbeth-contact-image__frame {
	border-radius: 60px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.2);
	padding: 22px;
}

.sunbeth-contact-image__frame img {
	width: 100%;
	height: 618px;
	object-fit: cover;
	border-radius: 60px;
}

.sunbeth-contact-form-section {
	padding: 65px 0 100px;
	background: #f7f7f7;
}

.sunbeth-notice {
	padding: 16px 20px;
	border-radius: var(--sunbeth-radius);
	margin: 0 auto 24px;
	max-width: 1264px;
	font-size: 16px;
}

.sunbeth-notice--success {
	background: #edf9f0;
	color: #1a6b34;
}

.sunbeth-notice--error {
	background: #fef2f2;
	color: #991b1b;
}

.sunbeth-contact-form-panel {
	display: grid;
	grid-template-columns: minmax(0, 560px) minmax(0, 583px);
	gap: 67px;
	justify-content: center;
	align-items: start;
	max-width: 1264px;
	margin: 0 auto;
	background: var(--sunbeth-white);
	border-radius: 12px;
	padding: 34px;
	min-height: 622px;
}

.sunbeth-contact-form-panel__main {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.sunbeth-contact-form-panel__title {
	font-size: 34px;
	font-weight: 500;
	color: var(--sunbeth-heading);
	margin: 0;
	letter-spacing: -0.03em;
	text-transform: capitalize;
	line-height: 1.35;
}

.sunbeth-contact-form {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.sunbeth-contact-form__fields {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.sunbeth-contact-form__row--split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.sunbeth-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.sunbeth-field label {
	font-size: 16px;
	font-weight: 500;
	color: #36394a;
}

.sunbeth-field input,
.sunbeth-field textarea {
	font-family: inherit;
	font-size: 16px;
	padding: 14px;
	border: 1px solid #eceff3;
	border-radius: 8px;
	background: #f7f7f7;
	color: var(--sunbeth-heading);
	width: 100%;
}

.sunbeth-field input {
	height: 48px;
}

.sunbeth-field textarea {
	min-height: 108px;
	resize: vertical;
}

.sunbeth-field input::placeholder,
.sunbeth-field textarea::placeholder {
	color: #a4acb9;
}

.sunbeth-contact-form__check {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #545454;
	cursor: pointer;
	margin: 4px 0 8px;
}

.sunbeth-contact-form__check input {
	width: 16px;
	height: 16px;
	accent-color: var(--sunbeth-primary);
}

.sunbeth-contact-aside {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.sunbeth-aside-card {
	background: #f7f7f7;
	border: 0.2px solid #ebebeb;
	border-radius: 10px;
	padding: 24px;
	min-height: 270px;
	display: flex;
	flex-direction: column;
}

.sunbeth-aside-card h3 {
	font-size: 22px;
	font-weight: 500;
	color: var(--sunbeth-dark);
	margin: 0 0 11px;
	letter-spacing: -0.02em;
	line-height: 1.3;
}

.sunbeth-aside-card:not(:has(p)) {
	justify-content: center;
}

.sunbeth-aside-card:not(:has(p)) h3 {
	margin-bottom: 34px;
}

.sunbeth-aside-card p {
	font-size: 14px;
	line-height: 1.8;
	color: #545454;
	margin: 0;
	flex: 1;
}

.sunbeth-aside-card__social {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 24px;
}

.sunbeth-aside-card__social > span {
	font-size: 20px;
	font-weight: 500;
	color: var(--sunbeth-dark);
}

.sunbeth-social-links {
	display: flex;
	gap: 6px;
	align-items: center;
}

.sunbeth-social-links__item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(254, 90, 8, 0.06);
	border: 0.4px solid var(--sunbeth-primary);
}

.sunbeth-contact-details {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.sunbeth-contact-details li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 18px;
	color: #545454;
}

.sunbeth-contact-details a {
	color: inherit;
	text-decoration: none;
}

.sunbeth-contact-details a:hover {
	color: var(--sunbeth-primary);
}

.sunbeth-contact-faq {
	position: relative;
	padding: 95px 0 100px;
	overflow: hidden;
}

.sunbeth-contact-faq__mosaic {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.2;
}

.sunbeth-contact-faq__header {
	position: relative;
	z-index: 1;
	margin-bottom: 44px;
}

.sunbeth-contact-faq__header h2 {
	font-size: clamp(1.75rem, 3vw, 2.125rem);
	font-weight: 500;
	color: var(--sunbeth-heading);
	margin: 0 0 5px;
	letter-spacing: -0.02em;
}

.sunbeth-contact-faq__header p {
	font-size: 18px;
	color: var(--sunbeth-body);
	margin: 0;
	max-width: 965px;
	line-height: 1.7;
}

.sunbeth-faq {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 524px;
	gap: 40px;
	align-items: start;
}

.sunbeth-faq__questions {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.sunbeth-faq__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 20px;
	background: #fafafa;
	border: none;
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(10, 10, 10, 0.06);
	cursor: pointer;
	font-family: inherit;
	text-align: left;
	font-size: 18px;
	font-weight: 500;
	color: #131515;
	letter-spacing: -0.01em;
	transition: background 0.2s;
}

.sunbeth-faq__item:hover {
	background: #f3f3f3;
}

.sunbeth-faq__item.is-active .sunbeth-faq__toggle {
	transform: rotate(-90deg);
}

.sunbeth-faq__toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(254, 91, 11, 0.06);
	flex-shrink: 0;
	transition: transform 0.25s;
}

.sunbeth-faq__toggle img {
	width: 24px;
	height: 24px;
}

.sunbeth-faq__answer {
	position: sticky;
	top: 120px;
}

.sunbeth-faq__panel {
	display: none;
	background: #fafafa;
	border-radius: 20px;
	box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1);
	padding: 18px 16px 32px;
	min-height: 338px;
}

.sunbeth-faq__panel.is-active {
	display: block;
}

.sunbeth-faq__panel-title {
	background: linear-gradient(90deg, #200b01 50%, var(--sunbeth-primary) 156%);
	color: var(--sunbeth-white);
	font-size: 18px;
	font-weight: 500;
	padding: 10px 14px;
	border-radius: 10px;
	margin-bottom: 24px;
	letter-spacing: -0.01em;
}

.sunbeth-faq__panel p {
	font-size: 18px;
	line-height: 1.9;
	color: #545454;
	margin: 0;
	letter-spacing: -0.01em;
}

.sunbeth-contact-footer {
	padding-top: 0;
}

.sunbeth-contact-footer__banner {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	min-height: 525px;
	margin-bottom: -221px;
	z-index: 2;
}

.sunbeth-contact-footer__banner-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}

.sunbeth-contact-footer__banner-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 10, 0.3);
}

.sunbeth-contact-footer__card {
	position: absolute;
	top: 50%;
	left: 24px;
	transform: translateY(-50%);
	z-index: 1;
	width: 430px;
	padding: 69px 32px;
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(12px);
	border-radius: 24px;
	min-height: 474px;
}

.sunbeth-contact-footer__card-icon {
	position: relative;
	width: 140px;
	height: 140px;
	margin-bottom: 22px;
	flex-shrink: 0;
}

.sunbeth-contact-footer__card-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 224px;
	height: 224px;
	max-width: none;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.sunbeth-contact-footer__card-phone {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 76px;
	height: 76px;
	transform: translate(-50%, -50%);
}

.sunbeth-contact-footer__card h2 {
	font-size: 34px;
	font-weight: 500;
	color: var(--sunbeth-primary);
	margin: 0 0 3px;
	line-height: 1.3;
}

.sunbeth-contact-footer__card > p {
	font-size: 20px;
	color: var(--sunbeth-body);
	margin: 0 0 24px;
}

.sunbeth-contact-details--light li,
.sunbeth-contact-details--footer li {
	font-size: 15px;
	color: var(--sunbeth-body);
}

.sunbeth-footer--contact {
	padding-top: 280px;
}

.sunbeth-footer__bottom--social {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

.sunbeth-social-links--footer .sunbeth-social-links__item {
	background: rgba(254, 91, 11, 0.12);
}

@media (max-width: 1100px) {
	.sunbeth-contact-hero__headlines {
		grid-template-columns: 1fr;
		text-align: left;
	}

	.sunbeth-contact-hero__subtitle {
		text-align: left;
	}

	.sunbeth-contact-form-panel {
		grid-template-columns: 1fr;
		gap: 32px;
		padding: 28px;
		min-height: auto;
	}

	.sunbeth-faq {
		grid-template-columns: 1fr;
	}

	.sunbeth-faq__answer {
		position: static;
	}

	.sunbeth-contact-footer__card {
		position: relative;
		top: auto;
		left: auto;
		transform: none;
		width: auto;
		max-width: 430px;
		margin: 24px;
	}

	.sunbeth-contact-form__row--split {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.sunbeth-contact-image__frame img {
		height: 360px;
	}

	.sunbeth-contact-image__frame {
		border-radius: 24px;
		padding: 12px;
	}

	.sunbeth-contact-image__frame img {
		border-radius: 24px;
	}
}

/* ==========================================================================
   Products page
   ========================================================================== */

.sunbeth-products-page {
	margin: 0;
	padding: 0;
}

.sunbeth-products-hero {
	position: relative;
	min-height: 934px;
	padding-bottom: 40px;
	overflow: hidden;
}

.sunbeth-products-hero__mosaic {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center top;
	opacity: 0.35;
}

.sunbeth-products-hero__headlines {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 46px;
	padding-top: 184px;
	align-items: start;
}

.sunbeth-products-hero__title {
	font-size: clamp(2rem, 4vw, 2.125rem);
	font-weight: 500;
	color: var(--sunbeth-heading);
	margin: 0;
	line-height: 1.5;
	letter-spacing: -0.02em;
	max-width: 647px;
}

.sunbeth-products-hero__subtitle {
	font-size: 20px;
	line-height: 1.8;
	color: var(--sunbeth-body);
	margin: 0;
}

.sunbeth-products-image {
	padding: 0 0 80px;
	margin-top: -120px;
	position: relative;
	z-index: 2;
}

.sunbeth-products-image__frame {
	border-radius: 60px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.2);
	padding: 22px;
}

.sunbeth-products-image__frame img {
	width: 100%;
	height: 618px;
	object-fit: cover;
	border-radius: 60px;
}

.sunbeth-products-intro {
	padding: 0 0 60px;
	text-align: center;
}

.sunbeth-products-intro h2 {
	font-size: clamp(1.75rem, 3vw, 2.125rem);
	font-weight: 500;
	color: var(--sunbeth-heading);
	margin: 0 0 8px;
	letter-spacing: -0.02em;
}

.sunbeth-products-intro p {
	font-size: 20px;
	line-height: 1.6;
	color: var(--sunbeth-body);
	margin: 0 auto;
	max-width: 924px;
}

.sunbeth-products-showcase {
	padding: 0 0 100px;
	background: var(--sunbeth-cream);
}

.sunbeth-products-showcase__stack {
	display: flex;
	flex-direction: column;
	gap: 80px;
}

.sunbeth-product-showcase {
	display: grid;
	grid-template-columns: minmax(280px, 539px) 1fr;
	gap: 0;
	background: var(--sunbeth-white);
	border-radius: 16px;
	overflow: hidden;
	min-height: 716px;
	box-shadow: 0 8px 40px rgba(10, 10, 10, 0.06);
}

.sunbeth-product-showcase__media {
	position: relative;
	min-height: 716px;
}

.sunbeth-product-showcase__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.sunbeth-product-showcase__stat {
	position: absolute;
	left: 14px;
	bottom: 14px;
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(2px);
	border-radius: 10px;
	padding: 14px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	max-width: calc(100% - 28px);
}

.sunbeth-product-showcase--accent .sunbeth-product-showcase__stat {
	background: rgba(255, 241, 234, 0.7);
}

.sunbeth-product-showcase__stat strong {
	font-size: 52px;
	font-weight: 500;
	line-height: 1;
	color: rgba(0, 0, 0, 0.7);
	letter-spacing: -0.04em;
}

.sunbeth-product-showcase__stat span {
	font-size: 16px;
	color: rgba(26, 26, 26, 0.7);
	letter-spacing: -0.02em;
}

.sunbeth-product-showcase__content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 40px 48px;
	background: var(--sunbeth-cream);
}

.sunbeth-product-showcase--accent .sunbeth-product-showcase__content {
	background: var(--sunbeth-primary);
	color: var(--sunbeth-white);
}

.sunbeth-product-showcase__content h3 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 500;
	margin: 0 0 8px;
	line-height: 1.2;
	letter-spacing: -0.03em;
	color: var(--sunbeth-heading);
}

.sunbeth-product-showcase--accent .sunbeth-product-showcase__content h3 {
	color: var(--sunbeth-white);
}

.sunbeth-product-showcase__content > p {
	font-size: 20px;
	line-height: 1.5;
	margin: 0;
	color: #525252;
	max-width: 609px;
}

.sunbeth-product-showcase--accent .sunbeth-product-showcase__content > p {
	color: rgba(247, 247, 247, 0.9);
}

.sunbeth-product-showcase__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: auto;
	padding-top: 40px;
}

.sunbeth-product-showcase__tags span {
	background: var(--sunbeth-white);
	color: var(--sunbeth-heading);
	font-size: 18px;
	padding: 20px 24px;
	border-radius: 999px;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.sunbeth-products-footer {
	padding-top: 0;
}

@media (max-width: 1100px) {
	.sunbeth-products-hero__headlines {
		grid-template-columns: 1fr;
	}

	.sunbeth-product-showcase {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.sunbeth-product-showcase__media {
		min-height: 420px;
	}

	.sunbeth-product-showcase__content {
		min-height: auto;
	}
}

@media (max-width: 768px) {
	.sunbeth-products-image__frame img {
		height: 360px;
	}

	.sunbeth-products-image__frame {
		border-radius: 24px;
		padding: 12px;
	}

	.sunbeth-products-image__frame img {
		border-radius: 24px;
	}

	.sunbeth-product-showcase__tags span {
		font-size: 16px;
		padding: 14px 18px;
	}
}

