:root {
	--reef-primary: #0c9c5f;
	--reef-dark: #0c3a2f;
	--reef-light: #f5fbf8;
	--tos-green: #2fb26d;
	--tos-green-dark: #148850;
	--tos-muted: rgba(31, 43, 45, 0.72);
	--reef-error: #b42318;
	--reef-error-strong: #8f1a10;
	--reef-error-soft: #fbe4e2;
}

body {
	font-family: "Poppins", sans-serif;
	background-color: #ffffff;
	color: #1f2b2d;
	scroll-behavior: smooth;
	margin: 0;
}

.auth-card .auth-back {
	line-height: 1.1;
}

.auth-card .auth-title {
	margin-top: -0.1rem;
}

.auth-card--register .auth-subtitle {
	margin: 0;
	font-size: 0.95rem;
	color: #5a635f;
}

.auth-back {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--reef-primary);
	text-decoration: none;
}

.auth-back i {
	font-size: 1rem;
}

.auth-title {
	font-size: clamp(1.6rem, 4.4vw, 2rem);
	font-weight: 700;
	color: #15201c;
	margin: 0;
}

.auth-title span {
	color: var(--reef-primary);
}

.auth-subtitle {
	margin: 0;
	color: #6a746f;
	font-size: 0.94rem;
}

.auth-form {
	display: flex;
	flex-direction: column;
	gap: clamp(1.1rem, 3vw, 1.6rem);
}

.field-check {
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: 0.75rem;
	row-gap: 0.35rem;
	align-items: flex-start;
	padding: 0.9rem 1.1rem;
	border-radius: 18px;
	border: 1px solid rgba(12, 40, 30, 0.08);
}

.field-check-input {
	width: 1.15rem;
	height: 1.15rem;
	margin-top: 0.1rem;
	border-radius: 6px;
	border: 2px solid rgba(15, 50, 40, 0.32);
	background-color: #ffffff;
	accent-color: var(--reef-primary);
}

.field-check-input:focus-visible {
	outline: 2px solid var(--reef-primary);
	outline-offset: 2px;
}

.field-check-label {
	grid-column: 2;
	margin: 0;
	font-size: 0.86rem;
	line-height: 1.5;
	font-weight: 500;
	color: #45504b;
}

.field-check-label a {
	color: var(--reef-primary);
	font-weight: 600;
	text-decoration: none;
}

.field-check-label a:hover,
.field-check-label a:focus {
	text-decoration: underline;
}

.field-label {
	font-size: 0.88rem;
	font-weight: 600;
	color: #27322d;
	transition: color 0.3s ease, transform 0.3s ease;
}

.field-input-wrapper {
	position: relative;
	--field-padding-x: 1.15rem;
}

.field-input {
	width: 100%;
	padding: 0.85rem calc(var(--field-padding-x) + 2.2rem) 0.85rem var(--field-padding-x);
	border-radius: 18px;
	border: 1px solid rgba(12, 40, 30, 0.14);
	background: #ffffff;
	color: #15201c;
	font-size: 0.98rem;
	box-shadow: 0 14px 28px rgba(12, 40, 30, 0.1);
	transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.field-input:focus {
	outline: none;
	border-color: rgba(12, 156, 95, 0.6);
	box-shadow: 0 18px 40px rgba(12, 60, 47, 0.18);
}

.field-input::placeholder {
	color: #98a39e;
}

.field-action {
	position: absolute;
	right: calc(var(--field-padding-x) - 0.2rem);
	top: 50%;
	transform: translateY(-50%);
	border: none;
	background: transparent;
	color: #6c7671;
	font-size: 1.1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.field-underline {
	position: absolute;
	left: calc(var(--field-padding-x) + 0.05rem);
	right: calc(var(--field-padding-x) + 0.05rem);
	bottom: 0.35rem;
	height: 2px;
	border-radius: 999px;
	background: var(--reef-primary);
	transform: scaleX(0);
	transform-origin: center;
}

.field-message {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 500;
	color: var(--reef-error);
	opacity: 0;
	transform: translateY(-4px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.field-message.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.field-group.is-focused .field-label,
.field-group.is-filled .field-label {
	color: var(--reef-primary);
	transform: translateY(-2px);
}

.field-group.is-focused .field-input-wrapper {
	background: transparent;
}

.field-group.is-focused .field-input {
	border-color: rgba(12, 156, 95, 0.6);
	box-shadow: 0 18px 40px rgba(12, 60, 47, 0.2);
}

.field-group.is-error .field-input-wrapper {
	background: transparent;
}

.field-group.is-error .field-input {
	border-color: var(--reef-error);
	background: var(--reef-error-soft);
	box-shadow: 0 20px 44px rgba(180, 35, 24, 0.2);
}

.field-group.is-error .field-label {
	color: var(--reef-error);
}

.field-group.is-valid .field-input {
	border-color: rgba(12, 156, 95, 0.55);
}

.field-check.is-error {
	border-color: var(--reef-error);
	background: var(--reef-error-soft);
}

.field-check .field-message {
	grid-column: 1 / -1;
	margin: 0;
	padding-left: calc(1.15rem + 0.75rem);
	font-size: 0.76rem;
}

.auth-submit {
	width: 100%;
	border-radius: 999px;
	font-size: 1rem;
	font-weight: 600;
	padding: 0.85rem 1rem;
	box-shadow: 0 18px 34px rgba(12, 156, 95, 0.3);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.auth-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 22px 40px rgba(12, 156, 95, 0.32);
}

.auth-switch {
	font-size: 0.85rem;
	color: #6a746f;
	text-align: center;
	margin: 0;
}

.auth-switch a {
	color: var(--reef-primary);
	font-weight: 600;
	text-decoration: none;
}

.auth-divider {
	display: flex;
	align-items: center;
	gap: 1rem;
	color: #9ba59f;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	justify-content: center;
}

.auth-divider::before,
.auth-divider::after {
	content: "";
	height: 1px;
	flex: 1;
	background: linear-gradient(90deg, rgba(155, 165, 159, 0), rgba(155, 165, 159, 0.6), rgba(155, 165, 159, 0));
}

.auth-google {
	width: 100%;
	border-radius: 999px;
	background: #ffffff;
	border: 1px solid rgba(32, 46, 40, 0.16);
	box-shadow: 0 14px 28px rgba(10, 40, 32, 0.12);
	padding: 0.75rem 1.25rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	font-weight: 600;
	color: #28342f;
	cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.auth-google:hover {
	transform: translateY(-1px);
	box-shadow: 0 20px 36px rgba(10, 40, 32, 0.18);
}

.auth-google i {
	font-size: 1.1rem;
	color: #db4437;
}

.auth-heading {
	margin-bottom: clamp(1.6rem, 4vw, 2rem);
}

.field-group.is-error .field-underline {
	background: var(--reef-error);
}

.auth-page footer {
	margin-top: clamp(4rem, 6vw, 5rem);
}

.auth-main {
	min-height: calc(100vh - 160px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(4rem, 8vw, 5.5rem) clamp(1.5rem, 6vw, 2.4rem);
}

.auth-card {
	width: min(100%, 450px);
	margin: 0 auto;
	border-radius: 30px;
	box-shadow: 0 28px 60px rgba(12, 60, 47, 0.14);
	border: 1px solid rgba(12, 60, 47, 0.08);
	background: #ffffff;
	padding: clamp(2.4rem, 6vw, 2.9rem) clamp(2rem, 5vw, 2.6rem);
}

@media (max-width: 575px) {
	.auth-main {
		min-height: calc(100vh - 180px);
		padding: clamp(3rem, 10vw, 5rem) clamp(1.1rem, 7vw, 1.6rem);
	}

	.auth-card {
		border-radius: 26px;
		padding: clamp(2rem, 8vw, 2.4rem) clamp(1.6rem, 6vw, 2.1rem);
	}

	.auth-back {
		font-size: 0.9rem;
	}

	.field-input-wrapper {
		border-radius: 16px;
		--field-padding-x: 1rem;
		padding: 0.85rem var(--field-padding-x);
	}

	.field-action {
		right: 0.85rem;
	}

	.auth-google {
		padding: 0.7rem 1rem;
	}
}

	.auth-success {
		position: fixed;
		inset: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: clamp(1.5rem, 6vw, 3rem);
		z-index: 2200;
		visibility: hidden;
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}

	.auth-success.is-visible {
		visibility: visible;
		opacity: 1;
		pointer-events: auto;
	}

	.auth-success__backdrop {
		position: absolute;
		inset: 0;
		background: rgba(12, 31, 24, 0.5);
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.auth-success.is-visible .auth-success__backdrop {
		opacity: 1;
	}

	.auth-success__dialog {
		position: relative;
		z-index: 1;
		width: min(100%, 340px);
		background: #ffffff;
		border-radius: 28px;
		padding: clamp(2rem, 5vw, 2.6rem) clamp(1.5rem, 4vw, 2rem);
		text-align: center;
		box-shadow: 0 28px 60px rgba(12, 60, 47, 0.15);
		transform: translateY(-20px);
		opacity: 0;
		transition: transform 0.35s ease, opacity 0.35s ease;
	}

	.auth-success.is-visible .auth-success__dialog {
		transform: translateY(0);
		opacity: 1;
	}

	.auth-success__close {
		position: absolute;
		top: 1rem;
		right: 1rem;
		border: none;
		background: transparent;
		color: #7a857f;
		font-size: 1.1rem;
		cursor: pointer;
	}

	.auth-success__close:hover,
	.auth-success__close:focus-visible {
		color: var(--reef-dark);
	}

	.auth-success__icon {
		width: 64px;
		height: 64px;
		margin: 0 auto 1.25rem;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgba(12, 156, 95, 0.18);
		color: var(--reef-primary);
		font-size: 2rem;
	}

	.auth-success__title {
		margin: 0 0 0.75rem;
		font-size: 1.6rem;
		font-weight: 700;
		color: var(--reef-dark);
	}

	.auth-success__description {
		margin: 0 0 1.5rem;
		color: #4a5852;
		line-height: 1.6;
	}

	.auth-success__cta {
		width: 100%;
		border: none;
		border-radius: 999px;
		background: var(--reef-primary);
		color: #ffffff;
		font-weight: 600;
		padding: 0.85rem 1.2rem;
		box-shadow: 0 18px 42px rgba(12, 156, 95, 0.3);
		cursor: pointer;
		transition: transform 0.2s ease, box-shadow 0.2s ease;
	}

	.auth-success__cta:hover,
	.auth-success__cta:focus-visible {
		transform: translateY(-1px);
		box-shadow: 0 22px 48px rgba(12, 156, 95, 0.33);
	}

.site-nav {
	background-color: transparent;
	border-bottom: 1px solid transparent;
	position: sticky;
	top: 0;
	z-index: 1030;
	margin-bottom: clamp(1.5rem, 5vw, 3.5rem);
	transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.site-nav.is-scrolled {
	background-color: rgba(255, 255, 255, 0.98);
	border-bottom-color: rgba(35, 54, 44, 0.08);
	box-shadow: 0 20px 44px rgba(12, 60, 47, 0.12);
	transform: translateY(0);
}

.site-nav:not(.is-scrolled) {
	transform: translateY(0);
}

.site-nav .nav-inner {
	gap: clamp(1rem, 3vw, 2.5rem);
}

.site-nav--compact {
	margin-bottom: 0;
}

.site-nav--compact .nav-inner--compact {
	width: 100%;
	padding-block: clamp(0.75rem, 2.2vw, 1.05rem);
}

.site-nav .dropdown-menu {
	padding: 0.65rem 0;
	border-radius: 14px;
	border: 1px solid rgba(12, 60, 47, 0.08);
	box-shadow: 0 18px 44px rgba(24, 52, 44, 0.18);
	min-width: 12rem;
	background-color: #ffffff;
}

.site-nav .dropdown-item {
	font-weight: 500;
	font-size: 0.92rem;
	color: #27312c;
	padding: 0.55rem 1.05rem;
}

.site-nav .dropdown-item:hover,
.site-nav .dropdown-item:focus {
	background-color: rgba(12, 156, 95, 0.08);
	color: #0c3c2f;
}

.site-nav .dropdown-divider {
	margin: 0.35rem 1rem;
	border-top-color: rgba(12, 60, 47, 0.12);
}

.site-nav .dropdown-status {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.85rem;
	padding: 0.55rem 1.05rem;
}

.site-nav .dropdown-status__label {
	font-size: 0.92rem;
	font-weight: 600;
	color: #27312c;
}

.site-nav .dropdown-status__controls {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.site-nav .dropdown-status__switch .form-check-input {
	width: 2.2em;
	height: 1.1em;
	cursor: pointer;
}

.site-nav .dropdown-status__switch .form-check-input:focus {
	box-shadow: 0 0 0 0.1rem rgba(12, 156, 95, 0.25);
}

.site-nav .dropdown-status__help {
	border: none;
	background: rgba(12, 156, 95, 0.12);
	color: #0c3c2f;
	border-radius: 50%;
	width: 1.75rem;
	height: 1.75rem;
	display: grid;
	place-items: center;
	font-weight: 700;
	font-size: 0.85rem;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.site-nav .dropdown-status__help:hover,
.site-nav .dropdown-status__help:focus-visible {
	background: rgba(12, 156, 95, 0.2);
	transform: translateY(-1px);
	outline: none;
}

.site-nav .dropdown-status__help-icon {
	font-family: inherit;
	line-height: 1;
}

	.features-section {
		background: #f6fbf8;
		padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(4rem, 7vw, 5.5rem);
		position: relative;
	}

	.features-section .container {
		position: relative;
	}

	.features-header {
		display: grid;
		grid-template-columns: repeat(12, minmax(0, 1fr));
		gap: clamp(1.5rem, 4vw, 3rem);
		margin-bottom: clamp(2.5rem, 5vw, 3.8rem);
		position: relative;
		align-items: center;
	}

	.features-header > div:first-child {
		grid-column: 1 / -1;
		width: 100%;
		display: flex;
		align-items: flex-end;
		gap: clamp(1rem, 3vw, 2.5rem);
	}

	.features-header h2,
	.features-header p {
		margin-bottom: 0;
	}

	.features-header h2,
	.features-header p {
		flex: 1 1 0;
	}

	.features-header h2 {
		font-size: clamp(2rem, 4vw, 2.8rem);
		font-weight: 700;
		color: #1b241f;
		margin-bottom: 1rem;
	}

	.features-header .accent {
		color: #0c9c5f;
	}

	.features-header p {
		color: #4c554f;
		font-size: 1.05rem;
		line-height: 1.7;
	}

	.squiggle {
		position: absolute;
		width: clamp(70px, 10vw, 100px);
		pointer-events: none;
		user-select: none;
	}

	.squiggle-top {
		top: clamp(-48px, -6vw, -18px);
		right: clamp(-120px, -15vw, -72px);
		transform: rotate(0deg);
	}

	.features-grid {
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 1.5rem;
	}

	.feature-card {
		background: #ffffff;
		border-radius: 28px;
		padding: clamp(1.6rem, 3vw, 2rem) clamp(1.4rem, 2.8vw, 1.8rem);
		box-shadow: 0 22px 45px rgba(9, 63, 45, 0.1);
		border: 1px solid rgba(12, 80, 56, 0.08);
		display: flex;
		flex-direction: column;
		gap: clamp(0.85rem, 2vw, 1.1rem);
		position: relative;
		transition: transform 0.4s ease, box-shadow 0.4s ease;
	}

	.feature-card:hover {
		transform: translateY(-8px);
		box-shadow: 0 28px 48px rgba(12, 80, 56, 0.14);
	}

	.feature-icon {
		width: 54px;
		height: 54px;
		border-radius: 16px;
		background: rgba(12, 156, 95, 0.12);
		color: #0c9c5f;
		display: grid;
		place-items: center;
		font-size: 1.5rem;
	}

	.feature-card h3 {
		font-size: 1.2rem;
		font-weight: 600;
		color: #23302a;
		margin: 0;
	}

	.feature-card p {
		margin: 0;
		color: #4e5a54;
		line-height: 1.7;
	}

	.feature-card:first-child .squiggle-bottom {
		position: absolute;
		width: clamp(52px, 6vw, 88px);
		left: clamp(-62px, -7vw, -28px);
		bottom: clamp(52px, 8vw, 84px);
		transform: rotate(90deg);
		transform-origin: center;
	}

.site-brand {
	font-weight: 700;
	font-size: clamp(1.5rem, 2vw, 1.9rem);
	color: var(--reef-primary);
	text-decoration: none;
	letter-spacing: 0.01em;
}

.site-nav .nav-links {
	gap: 2.25rem;
	margin-left: clamp(1rem, 3vw, 2.5rem);
}

.site-nav .nav-link {
	color: #29352f;
	font-size: 0.95rem;
	font-weight: 500;
	text-decoration: none;
	opacity: 0.85;
	transition: opacity 0.2s ease, color 0.2s ease;
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus {
	opacity: 1;
	color: var(--reef-primary);
}


.nav-actions .btn-outline-success {
	border-color: rgba(12, 156, 95, 0.4);
	color: #0c9c5f;
	padding-inline: 1.5rem;
	padding-block: 0.6rem;
}

.site-nav .nav-actions {
	margin-left: auto;
}

.nav-actions .btn-outline-success:hover {
	border-color: #0c9c5f;
	background: rgba(12, 156, 95, 0.08);
}

.nav-toggle {
	background: #f3f7f5;
	border: 1px solid rgba(35, 54, 44, 0.1);
	border-radius: 12px;
	width: 48px;
	height: 44px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	padding: 6px;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover {
	border-color: rgba(12, 156, 95, 0.4);
	background: #edf5f1;
}

.nav-toggle span {
	width: 22px;
	height: 2px;
	background: #1e2723;
	border-radius: 999px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-open {
	background: #0c9c5f;
	border-color: #0c9c5f;
}

.nav-toggle.is-open span {
	background: #ffffff;
}

.nav-toggle.is-open span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.98);
	border-bottom: 1px solid rgba(35, 54, 44, 0.08);
	box-shadow: 0 26px 48px rgba(15, 40, 32, 0.12);
	padding: 1.5rem;
	transition: transform 0.35s ease, opacity 0.35s ease;
	transform: translateY(-12px);
	opacity: 0;
	pointer-events: none;
}

.mobile-nav.is-open {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}

.mobile-nav .nav-link {
	display: block;
	padding: 0.5rem 0;
	font-size: 1rem;
}

.mobile-actions {
	display: grid;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.hero-section {
	padding-top: clamp(3rem, 6vw, 5rem);
}

.hero-section .row {
	row-gap: 3rem;
}

.hero-title {
	font-size: clamp(2.75rem, 5vw, 4.688rem);
	font-weight: 700;
	line-height: 1.05;
	color: #111915;
	margin-bottom: 1.3rem;
	max-width: 520px;
}

.hero-highlight {
	position: relative;
	display: inline-block;
	z-index: 0;
}

.hero-highlight::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -0.55rem;
	width: 100%;
	height: 0.6rem;
	background: url("../assets/horizontal-line-hero.svg") no-repeat left center;
	background-size: 100% 100%;
	z-index: -1;
}

.hero-subtitle {
	font-size: 1.15rem;
	color: #525854;
	margin-bottom: 2.4rem;
	max-width: 420px;
}

.hero-actions {
	display: flex;
	align-items: center;
}

.hero-actions .btn {
	padding-inline: 1.9rem;
	padding-block: 0.78rem;
	font-size: 1.02rem;
	box-shadow: 0 14px 26px rgba(12, 156, 95, 0.25);
}

.btn-reef {
	background: var(--reef-primary);
	color: #fff;
	border-radius: 999px;
	padding: 0.65rem 1.6rem;
	font-weight: 600;
	border: none;
}

.btn-reef:hover {
	background: #0b8c55;
	color: #fff;
}

.nav-link {
	font-weight: 500;
}

.hero-section {
	position: relative;
}


.hero-visual {
	position: relative;
	max-width: 600px;
	width: 100%;
	margin: 0 auto;
}

.hero-visual .hero-image {
	width: 100%;
	height: auto;
	display: block;
	filter: drop-shadow(0 18px 30px rgba(15, 74, 56, 0.25));
}

.hero-badge {
	position: absolute;
	z-index: 2;
	background: #37443c;
	color: #fff;
	padding: 0.5rem 1.4rem 0.5rem 0.85rem;
	border-radius: 999px;
	font-size: 0.88rem;
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	box-shadow: 0 16px 28px rgba(22, 53, 43, 0.24);
	pointer-events: none;
	transform: translate3d(0, 0, 0);
}

.hero-badge::before {
	content: "+";
	width: 24px;
	height: 24px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.22);
	font-weight: 700;
	color: #ffffff;
}

.badge-top {
	top: -6%;
	right: 20%;
}

.badge-left {
	top: 22%;
	left: -10%;
}

.badge-bottom {
	bottom: 6%;
	right: -10%;
}

.decor-dots {
	position: absolute;
	z-index: 1;
	width: 90px;
	height: 90px;
	background-image: radial-gradient(circle, rgba(34, 45, 39, 0.6) 1.8px, transparent 1.8px);
	background-size: 14px 14px;
	opacity: 0.35;
}

.dots-top {
	top: -22px;
	right: 4px;
}

.dots-bottom {
	bottom: -6px;
	left: -6px;
}

.feature-card {
	border: none;
	border-radius: 24px;
	box-shadow: 0 18px 40px rgba(12, 60, 47, 0.09);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 48px rgba(12, 60, 47, 0.12);
}

.feature-icon {
	width: 52px;
	height: 52px;
	border-radius: 16px;
	display: grid;
	place-items: center;
	background: var(--reef-light);
	color: var(--reef-primary);
	font-size: 1.5rem;
}


.cta-section {
	padding: clamp(3rem, 7vw, 5rem) 0;
}

.cta-feature-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(1rem, 2.8vw, 1.75rem);
	margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.cta-feature-card {
	background: #ffffff;
	border-radius: 28px;
	padding: clamp(1.4rem, 3vw, 1.9rem);
	box-shadow: 0 18px 42px rgba(10, 71, 50, 0.14);
	border: 1px solid rgba(12, 80, 56, 0.08);
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.cta-feature-icon {
	width: 54px;
	height: 54px;
	border-radius: 16px;
	display: grid;
	place-items: center;
	background: rgba(12, 156, 95, 0.12);
	color: var(--reef-primary);
	font-size: 1.5rem;
}

.cta-feature-card h3 {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 600;
	color: #1f2b26;
}

.cta-feature-card h3 span {
	color: var(--reef-primary);
}

.cta-feature-card p {
	margin: 0;
	color: #4a5751;
	line-height: 1.65;
}

.cta-divider {
	width: 2px;
	height: clamp(80px, 14vw, 120px);
	background: linear-gradient(180deg, rgba(61, 189, 255, 0) 0%, rgba(61, 189, 255, 0.65) 45%, rgba(61, 189, 255, 0) 100%);
	margin: 0 auto clamp(2.5rem, 6vw, 4rem);
}

.cta-wrapper {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: stretch;
	gap: clamp(2rem, 4vw, 3.5rem);
	padding: clamp(2.5rem, 5vw, 3.8rem);
	background: #ffffff;
	border-radius: 40px;
	box-shadow: 0 32px 68px rgba(10, 71, 50, 0.12);
	overflow: hidden;
	margin: 0 auto;
}

.cta-content {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	padding-right: clamp(1rem, 3vw, 2.5rem);
}

.cta-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.45rem 1.15rem;
	border-radius: 999px;
	background: rgba(12, 156, 95, 0.12);
	color: var(--reef-primary);
	font-weight: 600;
	font-size: 0.95rem;
	width: fit-content;
}

.cta-title {
	font-size: clamp(2rem, 4.5vw, 2.9rem);
	font-weight: 700;
	color: #101b15;
	line-height: 1.1;
}

.cta-title span {
	color: var(--reef-primary);
}

.cta-content p {
	margin: 0;
	color: #43514b;
	font-size: 1.05rem;
	line-height: 1.7;
}

.cta-actions {
	display: flex;
	align-items: center;
	gap: 1.2rem;
}

.cta-primary {
	padding-inline: 1.9rem;
	padding-block: 0.85rem;
	font-weight: 600;
	box-shadow: 0 16px 34px rgba(12, 156, 95, 0.28);
}

.cta-secondary {
	padding-inline: 1.6rem;
	padding-block: 0.82rem;
	border-radius: 999px;
	border-width: 2px;
	font-weight: 600;
	color: #1d2b25;
	border-color: rgba(29, 43, 37, 0.2);
	background: transparent;
}

.cta-secondary:hover {
	border-color: rgba(29, 43, 37, 0.5);
	color: #111915;
}

.cta-visual {
	position: relative;
	min-height: 420px;
	border-radius: 36px;
	background-image: url("../img/ad-woman.png");
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
	padding: 0;
	padding-left: clamp(2rem, 3.5vw, 2.8rem);
	display: block;
	overflow: hidden;
}



.cta-badges {
	position: absolute;
	z-index: 4;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	left: 0;
	top: clamp(1.5rem, 4vw, 2.4rem);
}

.cta-badge {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.65rem 1.15rem 0.65rem 0.95rem;
	border-radius: 999px;
	background: rgba(17, 25, 21, 0.75);
	color: #ffffff;
	font-size: 0.95rem;
	font-weight: 500;
	box-shadow: 0 14px 26px rgba(6, 37, 23, 0.28);
	pointer-events: none;
	transform: translateZ(0);
}

.cta-badge::before {
	content: "+";
	width: 24px;
	height: 24px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.22);
	display: grid;
	place-items: center;
	font-weight: 700;
	font-size: 1rem;
}

.cta-dots {
	position: absolute;
	width: 96px;
	height: 96px;
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.42) 1.8px, transparent 2px);
	background-size: 16px 16px;
	opacity: 0.35;
	z-index: 2;
}

.cta-dots.dots-left {
	left: clamp(0.8rem, 2.8vw, 1.8rem);
	bottom: clamp(1.4rem, 4vw, 2.6rem);
}

.cta-dots.dots-right {
	right: clamp(1.1rem, 3vw, 2.2rem);
	top: clamp(1.2rem, 3vw, 2.4rem);
}

footer {
	background: var(--reef-dark);
	color: #f1f5f4;
}

footer a {
	color: #c8ded8;
	text-decoration: none;
}

footer a:hover {
	color: #ffffff;
}

.footer-divider {
	border-color: rgba(255, 255, 255, 0.2);
}

.about-overview {
	background: #ffffff;
}

.about-heading {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	color: var(--reef-primary);
	margin: 0 0 0.6rem;
}


.about-heading-wrap {
	margin-bottom: 2.5rem !important;
}

.about-intro h3 {
	margin: 0;
}

.about-intro {
	margin-bottom: clamp(2.4rem, 5vw, 3.4rem);
	padding-bottom: clamp(0.8rem, 2vw, 1.6rem);
}

.about-headline {
	font-size: clamp(1.8rem, 3.6vw, 2.6rem);
	font-weight: 600;
	line-height: 1.3;
	color: #1a251f;
}

.about-accent {
	color: var(--reef-primary);
	font-weight: 600;
}

.about-accent-light {
	color: #c5f0dd;
	font-weight: 600;
}

.about-intro p,
.about-contrast p,
.about-process p {
	color: #394741;
	font-size: 1rem;
	line-height: 1.7;
}

.about-squiggle {
	width: clamp(70px, 9vw, 110px);
}

.about-mission-section {
	margin-top: clamp(3rem, 6vw, 4.2rem);
}

.about-divider {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin: clamp(2.6rem, 5vw, 3.2rem) 0;
}

.about-subheading {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 600;
	color: #13201a;
	margin-bottom: 1.5rem;
}

.about-contrast p {
	margin-bottom: 0;
}

.about-contrast-top-squiggle {
	display: block;
	width: clamp(70px, 9vw, 110px);
}

.about-contrast {
	padding-top: clamp(1rem, 3vw, 1.8rem);
}

.about-contrast-right {
	position: relative;
	padding-right: clamp(2.4rem, 6vw, 3.8rem);
}

.about-contrast-right-squiggle {
	position: absolute;
	top: 50%;
	right: 0;
	width: clamp(56px, 7vw, 82px);
	transform: translate(60%, -50%) rotate(90deg);
	pointer-events: none;
}

.about-chevron-stack {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.25rem;
	margin-top: 2.5rem;
	margin-left: auto;
}

.about-chevron-stack i {
	font-size: 1.6rem;
	color: var(--reef-primary);
}

.about-mission {
	background: var(--reef-primary);
	padding: clamp(3rem, 7vw, 4.5rem) 0;
}

.about-mission h3 {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 600;
}

.about-mission p {
	font-size: 1rem;
	line-height: 1.8;
}

.about-process h3 {
	margin-bottom: 1.8rem;
}

.about-steps {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: clamp(1.6rem, 3.5vw, 2.4rem);
}

.about-step {
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: clamp(1.4rem, 3vw, 2.2rem);
	align-items: flex-start;
}

.about-step-marker {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	min-width: clamp(34px, 4vw, 46px);
	height: 100%;
	justify-content: flex-start;
}

.about-step-marker::after {
	content: "";
	display: block;
	width: 2px;
	flex: 1;
	margin-top: clamp(0.6rem, 1.6vw, 1rem);
	align-self: center;
	background: linear-gradient(180deg, rgba(12, 156, 95, 0.12) 0%, rgba(12, 156, 95, 0.5) 55%, rgba(12, 156, 95, 0.12) 100%);
}

.about-step:last-child .about-step-marker::after {
	display: none;
}

.about-step-number {
	font-size: clamp(1.6rem, 3.2vw, 2.2rem);
	font-weight: 600;
	color: var(--reef-primary);
	margin-bottom: clamp(0.6rem, 1.4vw, 1rem);
}

.about-step-content h4 {
	font-size: 1.15rem;
	font-weight: 600;
	color: #19251f;
	margin-bottom: 0.35rem;
}

.about-step-content p {
	color: #46544d;
	font-size: 0.98rem;
	line-height: 1.6;
}

.contact-section {
	background: #ffffff;
}

.contact-header {
	max-width: 640px;
	margin-inline: auto;
}


.contact-title {
	font-size: clamp(2.4rem, 5vw, 3rem);
	font-weight: 700;
	color: var(--reef-primary);
	margin-bottom: 0.6rem;
}

.contact-subtitle {
	margin: 0;
	color: #4a5a53;
	font-size: 1.02rem;
	line-height: 1.7;
}

.contact-content {
	display: flex;
	flex-direction: column;
	gap: clamp(2.5rem, 6vw, 4rem);
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: clamp(1.2rem, 3vw, 1.6rem);
}

.contact-field {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.contact-field label {
	font-weight: 600;
	color: #1f2b2d;
}

.contact-field input,
.contact-field textarea {
	width: 100%;
	border: 1.5px solid rgba(12, 156, 95, 0.7);
	border-radius: 12px;
	padding: 0.75rem 1rem;
	font-size: 1rem;
	color: #1f2b2d;
	background: #ffffff;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-field textarea {
	resize: vertical;
	min-height: 180px;
}

.contact-field input:focus,
.contact-field textarea:focus {
	outline: none;
	border-color: var(--reef-primary);
	box-shadow: 0 0 0 4px rgba(12, 156, 95, 0.12);
}

.contact-checkbox {
	display: flex;
	align-items: flex-start;
}

.contact-checkbox-label {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.95rem;
	color: #32403a;
}

.contact-checkbox-label input {
	width: 18px;
	height: 18px;
	border: 1.5px solid rgba(12, 156, 95, 0.6);
	border-radius: 6px;
	appearance: none;
	-webkit-appearance: none;
	position: relative;
	cursor: pointer;
	background: #ffffff;
}

.contact-checkbox-label input:checked {
	background: var(--reef-primary);
	border-color: var(--reef-primary);
}

.contact-checkbox-label input:checked::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 1px;
	width: 8px;
	height: 12px;
	border: 2px solid #ffffff;
	border-top: 0;
	border-left: 0;
	transform: rotate(45deg);
}

.contact-checkbox-label a {
	color: var(--reef-primary);
	font-weight: 600;
	text-decoration: none;
}

.contact-checkbox-label a:hover {
	text-decoration: underline;
}

.contact-submit {
	align-self: flex-start;
	padding-inline: 2.2rem;
	padding-block: 0.7rem;
	font-size: 1rem;
}

.contact-info {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	gap: clamp(1.5rem, 4vw, 2.4rem);
}

.contact-info-item {
	display: flex;
	align-items: center;
	gap: 1.1rem;
}

.contact-info-icon {
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
/* -------------------------------------------------------------------------- */
/* Terms of Service Page                                                      */
/* -------------------------------------------------------------------------- */

.tos-section {
	background: var(--reef-light);
}

.tos-card {
	background: #ffffff;
	max-width: 820px;
	border-radius: 28px;
	padding: clamp(2.1rem, 4vw, 3rem);
	box-shadow: 0 40px 80px rgba(12, 58, 47, 0.14);
	border: 1px solid rgba(12, 58, 47, 0.08);
}

.tos-title {
	margin: 0;
	font-weight: 700;
	color: var(--tos-green);
	font-size: clamp(2rem, 3vw, 2.6rem);
}

.tos-effective {
	margin: 0.45rem 0 0;
	color: rgba(31, 43, 45, 0.6);
	font-size: 0.92rem;
}

.tos-content h2,
.tos-content h3,
.tos-content h4,
.tos-content h5,
.tos-content h6 {
	color: var(--tos-green);
	font-weight: 600;
	margin-top: 2rem;
	margin-bottom: 0.75rem;
}

.tos-content h2 {
	font-size: 1.58rem;
}

.tos-content h3 {
	font-size: 1.32rem;
}

.tos-content h4 {
	font-size: 1.16rem;
}

.tos-content h5 {
	font-size: 1.05rem;
}

.tos-content h6 {
	font-size: 0.96rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.tos-content p {
	color: var(--tos-muted);
	line-height: 1.75;
	margin-bottom: 1.2rem;
	font-size: 0.98rem;
}

.tos-content blockquote {
	margin: 2rem 0;
	padding: 1.25rem 1.6rem;
	border-left: 6px solid var(--tos-green);
	background: #f0fbf5;
	border-radius: 16px;
	box-shadow: inset 0 0 0 1px rgba(47, 178, 109, 0.18);
}

.tos-content blockquote p {
	margin: 0;
	font-style: italic;
	color: var(--tos-green-dark);
	font-size: 0.98rem;
}

@media (max-width: 576px) {
	.tos-card {
		padding: 1.8rem 1.4rem;
		border-radius: 24px;
	}

	.tos-content h2,
	.tos-content h3,
	.tos-content h4,
	.tos-content h5,
	.tos-content h6 {
		margin-top: 1.6rem;
	}
}

	border-radius: 14px;
	background: rgba(12, 156, 95, 0.12);
	color: var(--reef-primary);
	font-size: 1.3rem;
}

.contact-info-label {
	display: block;
	font-weight: 600;
	color: #1f2b2d;
	margin-bottom: 0.3rem;
}

.contact-info-value {
	display: block;
	color: #4a5a53;
}

@media (min-width: 992px) {
	.contact-content {
		display: grid;
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.7fr);
		column-gap: clamp(2.5rem, 6vw, 5rem);
	}

	.contact-info {
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		padding-top: 0.5rem;
	}
}

@media (max-width: 575px) {
	.contact-title {
		font-size: 2.2rem;
	}

	.contact-checkbox-label {
		align-items: flex-start;
	}

	.contact-info-item {
		align-items: flex-start;
	}
}

@media (max-width: 991px) {
	.cta-feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cta-divider {
		height: clamp(70px, 20vw, 110px);
		margin-bottom: clamp(2rem, 6vw, 3rem);
	}

	.features-header {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 1.75rem;
	}

	.features-header > div:first-child {
		grid-column: auto;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}

	.features-header p {
		margin-inline: auto;
	}

	.squiggle-top {
		top: clamp(-40px, -8vw, -12px);
		right: clamp(-90px, -12vw, -48px);
		left: auto;
	}

	.features-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.25rem;
	}

	.feature-card:first-child .squiggle-bottom {
		left: clamp(-52px, -10vw, -18px);
		bottom: clamp(46px, 11vw, 78px);
	}

	.hero-visual {
		max-width: 380px;
	}

	.badge-top {
		top: -2%;
		right: 8%;
	}

	.badge-left {
		top: 32%;
		left: -3%;
	}

	.badge-bottom {
		bottom: 2%;
		right: -2%;
	}

	.decor-dots {
		display: none;
	}

	.cta-wrapper {
		display: flex;
		flex-direction: column;
		padding: clamp(2.2rem, 6vw, 3rem);
		text-align: center;
		gap: clamp(2.2rem, 6vw, 3rem);
	}

	.cta-content {
		align-items: center;
		gap: 1.25rem;
		order: 2;
		padding-right: 0;
	}

	.cta-actions {
		justify-content: center;
		flex-wrap: wrap;
	}

	.cta-visual {
		order: 1;
		width: 100%;
		min-height: clamp(360px, 55vw, 420px);
		padding-left: clamp(1.6rem, 5vw, 2.4rem);
		background-position: top center;
	}

	.cta-badges {
		left: clamp(1.1rem, 6vw, 2rem);
		top: clamp(1rem, 6vw, 2.2rem);
	}

	.cta-dots.dots-left {
		bottom: clamp(0.8rem, 5vw, 2rem);
	}

	.cta-dots.dots-right {
		top: clamp(0.8rem, 5vw, 2rem);
	}

	.about-intro {
		text-align: center;
	}


	.about-heading {
		font-size: clamp(2rem, 4vw, 3rem);
		font-weight: 700;
		color: var(--reef-primary);
		margin: 0 0 0.6rem;
	}

	.about-contrast-right {
		padding-right: 0;
	}

	.about-contrast-right-squiggle {
		display: none;
	}
}


@media (min-width: 992px) {
	.about-heading-wrap {
		margin-bottom: 3.5rem !important;
	}

	.about-divider {
		margin: 3.2rem 0;
	}
}

@media (max-width: 575px) {
	.features-section {
		padding-top: 2.5rem;
	}

	.features-header {
		text-align: left;
	}

	.features-header > div:first-child {
		align-items: flex-start;
	}

	.squiggle-top {
		top: auto;
		bottom: -48px;
		right: clamp(-42px, 28vw, 72px);
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.feature-card:first-child .squiggle-bottom {
		left: -36px;
		bottom: 34px;
	}

	.hero-badge {
		font-size: 0.8rem;
		padding: 0.4rem 1rem 0.4rem 0.7rem;
	}

	.hero-badge::before {
		width: 20px;
		height: 20px;
	}

	.hero-visual {
		max-width: 300px;
	}

	.badge-left {
		left: 2%;
	}

	.badge-bottom {
		right: 6%;
		bottom: 0;
	}

	.cta-feature-grid {
		grid-template-columns: 1fr;
	}

	.cta-wrapper {
		padding: 2.2rem 1.6rem 2.8rem;
		gap: clamp(1.6rem, 5vw, 2.2rem);
		min-height: clamp(600px, 100vh, 720px);
	}

	.cta-content {
		align-items: flex-start;
		text-align: left;
		order: 2;
		flex: 1 1 50%;
		justify-content: center;
	}

	.cta-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.cta-secondary {
		width: 100%;
		text-align: center;
	}

	.cta-visual {
		min-height: clamp(340px, 50vh, 400px);
		padding: 0;
		padding-left: clamp(1.2rem, 6vw, 1.8rem);
		background-image: url("../img/ad-woman-mobile.png");
		background-position: top center;
		flex: 1 1 50%;
	}

	.cta-badges {
		left: 0;
		bottom: clamp(1.2rem, 8vw, 2rem);
		top: auto;
		gap: 0.65rem;
	}

	.cta-badge {
		font-size: 0.9rem;
		padding: 0.55rem 1rem 0.55rem 0.85rem;
	}

	.cta-badge::before {
		width: 22px;
		height: 22px;
	}

	.cta-dots.dots-right {
		right: 0.8rem;
	}

	.cta-dots.dots-left {
		left: 0.6rem;
	}

	.about-heading {
		font-size: 2.2rem;
	}

	.about-headline {
		font-size: 1.7rem;
	}

	.about-subheading {
		font-size: 1.55rem;
	}

	.about-mission {
		padding: clamp(2.4rem, 8vw, 3rem) 0;
	}

	.about-step-number {
		font-size: 1.4rem;
	}

	.about-step {
		grid-template-columns: minmax(0, auto) 1fr;
		column-gap: clamp(1.1rem, 4vw, 1.6rem);
	}

	.about-step-marker {
		min-width: 32px;
	}
}

/* -------------------------------------------------------------------------- */
/* FAQ Page                                                                   */
/* -------------------------------------------------------------------------- */

.faq-page {
	background-color: #ffffff;
}


.faq-main {
	padding: clamp(2.4rem, 6vw, 3.8rem) 0 clamp(3.4rem, 8vw, 5rem);
}

.faq-container {
	width: min(1120px, 92vw);
	margin: 0 auto;
}

.faq-hero {
	text-align: center;
	margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
}


.faq-hero-title {
	margin: 0 0 0.6rem;
	font-size: clamp(2.4rem, 5vw, 3rem);
	line-height: 1.12;
	font-weight: 700;
	color: var(--reef-primary);
}


.faq-hero-subtitle {
	margin: 0 auto;
	max-width: 700px;
	color: #4c5a54;
	font-size: 1.05rem;
	line-height: 1.75;
}

.faq-sections {
	display: flex;
	flex-direction: column;
	gap: clamp(2.8rem, 6vw, 4rem);
}

.faq-section-title {
	margin: 0 0 1.8rem;
	font-size: clamp(1.7rem, 3vw, 2.2rem);
	font-weight: 600;
	color: var(--reef-primary);
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1.6rem, 3vw, 2.4rem);
}

.faq-card {
	background: #ffffff;
	border-radius: 4px;
	border-top: 2px solid var(--reef-primary);
	border-bottom: 1px solid rgba(12, 156, 95, 0.28);
	display: flex;
	flex-direction: column;
	padding: clamp(1.2rem, 3vw, 1.55rem) clamp(1.2rem, 2.7vw, 1.5rem);
	gap: 0;
	transition: border-color 0.25s ease;
}

.faq-card:hover {
	border-bottom-color: rgba(12, 156, 95, 0.45);
}

.faq-card.is-open {
	background: #f5fbf8;
	border-bottom-color: rgba(12, 156, 95, 0.45);
}

.faq-toggle {
	background: transparent;
	border: none;
	padding: 0;
	margin: 0;
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	text-align: left;
	cursor: pointer;
	color: inherit;
}

.faq-toggle:focus-visible {
	outline: 2px solid var(--reef-primary);
	outline-offset: 4px;
}

.faq-card-icon {
	color: var(--reef-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 1.05rem;
	line-height: 1;
	margin-top: 0.15rem;
	transition: transform 0.25s ease;
}

.faq-card:not(.is-open) .faq-card-icon {
	transform: rotate(180deg);
}

.faq-panel {
	overflow: hidden;
	transition: max-height 0.3s ease, opacity 0.3s ease;
	max-height: 0;
	opacity: 0;
	margin-top: 0;
	clip-path: inset(0% 0% 100% 0%);
}

.faq-card.is-open .faq-panel {
	max-height: 999px;
	opacity: 1;
	margin-top: 0.4rem;
	clip-path: inset(0% 0% 0% 0%);
}

.faq-answer {
	margin: 0;
	color: #42504a;
	line-height: 1.7;
	padding-right: clamp(0rem, 4vw, 0.4rem);
}


.faq-contact {
	margin-top: clamp(3.5rem, 8vw, 5rem);
}

.faq-contact-inner {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(2rem, 4.5vw, 3.5rem);
	padding: clamp(2.4rem, 6vw, 3.4rem);
	background: #f5fbf8;
	border-radius: 32px;
	border: 1px solid rgba(12, 156, 95, 0.16);
	box-shadow: 0 28px 60px rgba(12, 80, 56, 0.12);
}

.faq-contact-title {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 4vw, 2.7rem);
	font-weight: 700;
	color: var(--reef-primary);
}

.faq-contact-text {
	margin: 0 0 1.8rem;
	color: #4c5a54;
	line-height: 1.75;
}

.faq-contact-details {
	display: grid;
	gap: 1rem;
}

.faq-contact-detail {
	background: #ffffff;
	border-radius: 18px;
	border: 1px solid rgba(12, 156, 95, 0.18);
	padding: 1rem 1.25rem;
}

.detail-label {
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--reef-primary);
	margin-bottom: 0.35rem;
}

.detail-value {
	color: #1f2b2d;
	font-weight: 500;
}

.faq-contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.15rem;
}

.faq-field {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.field-label {
	font-size: 0.95rem;
	font-weight: 600;
	color: #1f2b2d;
}

.field-input {
	border: 1.5px solid rgba(12, 156, 95, 0.35);
	border-radius: 16px;
	padding: 0.85rem 1.1rem;
	font-size: 1rem;
	color: #1f2b2d;
	background: #ffffff;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.field-input:focus {
	outline: none;
	border-color: var(--reef-primary);
	box-shadow: 0 0 0 4px rgba(12, 156, 95, 0.12);
}

.field-input::placeholder {
	color: #8b9992;
}

.field-textarea {
	min-height: 160px;
	resize: vertical;
}

.faq-consent {
	display: inline-flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.94rem;
	color: #3b4843;
}

.faq-checkbox {
	width: 18px;
	height: 18px;
	border-radius: 6px;
	border: 1.6px solid rgba(12, 156, 95, 0.5);
	background: #ffffff;
	appearance: none;
	-webkit-appearance: none;
	position: relative;
	cursor: pointer;
}

.faq-checkbox:checked {
	background: var(--reef-primary);
	border-color: var(--reef-primary);
}

.faq-checkbox:checked::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 1px;
	width: 8px;
	height: 12px;
	border: 2px solid #ffffff;
	border-top: 0;
	border-left: 0;
	transform: rotate(45deg);
}

.faq-consent a {
	color: var(--reef-primary);
	font-weight: 600;
	text-decoration: none;
}

.faq-consent a:hover {
	text-decoration: underline;
}

.faq-submit {
	align-self: flex-start;
	background: var(--reef-primary);
	color: #ffffff;
	border: none;
	border-radius: 999px;
	padding: 0.8rem 2.4rem;
	font-size: 1rem;
	font-weight: 600;
	box-shadow: 0 18px 38px rgba(12, 156, 95, 0.28);
	cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 22px 46px rgba(12, 156, 95, 0.32);
}

@media (max-width: 991px) {
	.faq-grid {
		grid-template-columns: 1fr;
	}

	.faq-contact-inner {
		grid-template-columns: 1fr;
		padding: clamp(2rem, 8vw, 2.8rem);
	}

	.faq-submit {
		align-self: stretch;
		text-align: center;
	}
}

@media (max-width: 575px) {
	.faq-main {
		padding: clamp(2.5rem, 9vw, 3.2rem) 0 clamp(3rem, 10vw, 4rem);
	}

	.faq-hero-title {
		font-size: clamp(2.2rem, 8vw, 2.7rem);
	}

	.faq-contact-inner {
		padding: clamp(1.8rem, 8vw, 2.3rem);
		border-radius: 26px;
	}

	.faq-contact-title {
		font-size: clamp(1.9rem, 7vw, 2.3rem);
	}

	.faq-contact-details {
		gap: 0.75rem;
	}
}