/*** LANDING PAGE ***/
:root {
	--blue: #007BAE;
	--dark-blue: #003E57;
	--green: #38A64A;
	--light-bg: #F1F5F9;
	--br: 16px;
	--header-height: 125px;
}

html {
	scroll-padding-top: var(--header-height);
}

/** TYPOGRAPHY **/
body {
  font-family: "Inter", sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Plus Jakarta Sans", sans-serif !important;
}

h1 { font-weight: 800; }


.landing-page-body {
	padding-top: 0px !important;
}

/* Global section padding for landing page */
.lp-section {
	padding-top: 60px;
	padding-bottom: 60px;
}

@media (min-width: 992px) { /* lg and up */
	.lp-section {
		padding-top: 100px;
		padding-bottom: 100px;
	}
}

/* Eyebrow */
.lp-eyebrow {
	font-size: 18px;
	font-weight: 700;
	color: var(--blue);
}

.lp-eyebrow--light {
	color: #fff;
}

/* LP Button */
.lp-btn {
	color: var(--dark-blue) !important;
	font-weight: 700 !important;
	padding: 15px 30px;
	letter-spacing: 1px;
	background: #74E175 !important;
	border-radius: 4px;
	border: none;
	text-transform: uppercase;
	-webkit-transition: all 0.2s 
		ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s 
		ease;
}

/* HEADER */
.lp-header .navbar {
	background: transparent;
	border-bottom: 1px solid rgba(250,250,250,.2);
	box-shadow: 0 10px 30px rgba(12, 40, 62, 0);
	height: var(--header-height);
	display: flex;
	align-items: center;
	overflow: visible;
}

.lp-header #menu-landing-menu li a {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
}

.lp-header #menu-landing-menu li.lp-header__cta a {
	color: var(--dark-blue) !important;
	padding: 15px 30px;
	letter-spacing: 1px;
	background: #74E175 !important;
	border-radius: 4px;
	border: none;
	text-transform: uppercase;
	-webkit-transition: all 0.2s 
		ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s 
		ease;
}

/* Base state */
.lp-header .nav-link {
	position: relative;
	padding-bottom: 4px; /* room for underline */
	display: inline-block;
}

/* Underline element */
.lp-header .nav-link::after {
	content: ""; 
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background-color: var(--green);

	opacity: 0;
	transform: translateY(4px); /* sits down & hidden */
	transform-origin: left center;

	transition:
		transform 0.25s ease,
		opacity 0.25s ease;
}

/* Hover state */
.lp-header .nav-link:hover::after,
.lp-header .nav-link:focus::after {
	opacity: 1;
	transform:translateY(0); /* fades up + expands */
}

.lp-header .lp-header__cta .nav-link::after {
	display: none !important;
}

/* scrolling */
.lp-header.scrolling {
	background: #fff;
	box-shadow: 0 10px 30px rgba(12, 40, 62, 0.04);
}

.lp-header.scrolling #menu-landing-menu li a {
	color: var(--dark-blue);
}

/* Position the two logos */
.lp-header__logo {
	position: relative;
	display: flex;
	align-items: center;
}

.lp-header__logo img {
	width: 125px !important;
	transition: opacity 0.25s ease-in-out;
}

/* Initial state — show white logo, hide color logo */
.lp-header__logo .logo--white {
	opacity: 1;
	display: block;
}

.lp-header__logo .logo--color {
	opacity: 0;
	left: 0;
	top: 0;
	display: none;
}

/* SCROLLING STATE — show color logo, hide white logo */
.lp-header.scrolling .logo--white {
	opacity: 0;
	display: none;
}

.lp-header.scrolling .logo--color {
	opacity: 1;
	display: block;
}

.lp-header.scrolling .navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(55,64,77,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.lp-header .navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(250,250,250,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.lp-header .lp-header__toggler:focus {
	box-shadow: none !important;
}

@media screen and (max-width:1400px) {
	.lp-header #menu-landing-menu li a {
		font-size: 14px !important;
		margin: 0 5px;
	}
}

@media screen and (max-width:992px) {
	.lp-header__collapse {
		background: #fff;
		padding: 15px;
		border-radius 0px 16px 16px 0px !important;
	}

	.lp-header #menu-landing-menu li a {
		color: var(--dark-blue) !important;
	}
}


/* HERO */
.lp-hero {
	position: relative;
	min-height: 90vh;
	color: #ffffff;
	display: flex;
	align-items: center;
	padding-bottom: 80px;
	overflow: hidden;
	padding-top: calc(80px + var(--header-height));
}

.lp-hero__bg {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.lp-hero__bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lp-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 48, 68, 0.95) 0%, rgba(0, 48, 68, 0.7) 40%, rgba(0, 48, 68, 0.4) 100%);
	z-index: -1;
}

/* Content */
.lp-hero__inner {
	position: relative;
}

.lp-hero__title {
	margin-bottom: 20px;
	font-weight: 800;
	color: #fff;
	font-size: clamp(2.4rem, 8vw, 4.5rem);
}

.lp-hero__subtitle {
	font-size: 22px;
	margin-bottom: 35px;
	max-width: 700px;
	width: 100%;
}

.lp-hero__underline {
	width: 80px;
	height: 4px;
	border-radius: 999px;
	background-color: #35c269; /* green accent */
	margin-bottom: 18px;
}

/* Pills */
.lp-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 5px 20px;
	border-radius: 5px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background-color: rgba(0, 0, 0, 0.1);
	text-transform: uppercase;
	backdrop-filter: blur(15px);
	gap: 10px;
}

.lp-pill__icon {
	width: 20px;
	height: 20px;
	min-width: 20px;
	min-height: 20px;
	border-radius: 50%;
	background-color: var(--green);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.lp-pill__icon::before {
	content: "✓";
	color: #ffffff;
	font-size: 0.8rem;
	font-weight: 700;
}

/* Form card */
.lp-hero-form {
	border-radius: 18px;
	background: rgba(250, 250, 250, .10);
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 35px;
	text-align: center;
	backdrop-filter: blur(12px);
	transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.lp-hero-form.highlight-form {
	box-shadow: 0 0 30px rgba(0, 123, 174, 0.6);
	border-color: #74E175;
	transform: scale(1.02);
}

.lp-hero-form__title {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 18px;
	color: #ffffff;
}

.lp-hero-form .form-control {
	border-radius: 4px;
	border: 0;
	font-size: 0.95rem;
}

/* Gravity Form */
.lp-hero-form.application-form {
	padding: 25px;
}

.lp-hero-form.application-form .gform_fields {
	margin-top: 0px;
}

.lp-hero-form.application-form .gfield {
	margin-bottom: 5px;
}

.lp-hero-form.application-form .gfield_label {
	margin-right: auto;
    width: 100%;
    text-align: left;
    color: #fff;
}

.lp-hero-form.application-form textarea {
	max-height: 100px;
}

/* Make plugin buttons match */
.lp-hero-form .gform_button,
.lp-hero-form button[type="submit"],
.lp-hero-form .btn-primary {
	width: 100%;
	border-radius: 4px;
	font-weight: 600;
	padding: 12px 16px;
}

.lp-hero-form.application-form .gform_button {
	color: var(--dark-blue) !important;
	font-weight: 700 !important;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
	.lp-hero {
		min-height: auto;
		padding-top: calc(60px + var(--header-height));
		padding-bottom: 60px;
	}
}

@media (max-width: 767.98px) {
	.lp-header__nav {
		display: none !important; /* quick: hide desktop nav on mobile */
	}

	.lp-hero-form {
		margin-top: 28px;
	}
}

/* FEATURE */
.lp-feature {
	background: #ffffff;
}

.lp-feature__image-wrap {
	position: relative;
	display: inline-block; /* shrink-wrap to image width */
	border-radius: 16px;
	overflow: hidden;      /* clip the overlay to rounded corners */
}

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

/* 25% black overlay */
.lp-feature__image-wrap::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.25); /* 25% of #000 */
	pointer-events: none;
}

.lp-title {
	color: var(--dark-blue);
}

.lp-text {
	font-size: 1.05rem;
	line-height: 1.6;
	color: #333;
}

/* Benefits */
.lp-benefits {
	background-color: var(--light-bg);
}

.lp-benefits__title {
	color: #003d57;
}

/* Card base */
.lp-benefit.card {
	border-radius: var(--br);
	border: 1px solid #E2E8F0;
	padding: 35px;
	box-shadow: 0 10px 30px rgba(12, 40, 62, 0.04);
	background-color: #ffffff;
	transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

/* Icon wrapper + SVG sizing */
.lp-benefit__icon {
	width: 44px;
	height: 44px;
	border-radius: 8px;
	background-color: #E6F2F7;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.lp-benefit__icon-img,
.lp-benefit__icon svg {
	width: 30px;
	height: 30px;
}

/* Text styles */
.lp-benefit__title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.35rem;
	color: #002b3c;
}

.lp-benefit__text {
	font-size: 1rem;
	color: #4a6374;
	line-height: 1.6;
}

/* Hover */
.lp-benefit:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 10px rgba(0, 62, 87, 0.20);
	border-color: var(--blue);
}

/* One highlighted card */
.lp-benefit--highlight {
	border-color: #19a0d8;
}

/* CTA card variant */
.lp-benefit--cta {
	background-color: var(--dark-blue) !important;
	border-color: var(--dark-blue) !important;
	color: #ffffff !important;
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.lp-benefit--cta:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
	border-color: #004766;
}

.lp-benefits-cta__title {
	font-size: 1.4rem;
	font-weight: 700;
	text-align: center;
	color: #fff;
}

.lp-benefits-cta__text {
	font-size: 0.98rem;
	color: #d6e8f4;
	text-align: center;
}

/* Responsive tweak */
@media (max-width: 991.98px) {
	.lp-benefits__title {
		font-size: 1.9rem;
	}
}

/* HOW IT WORKS */
.lp-steps {
	background-color: var(--dark-blue);
	color: #ffffff;
}

.lp-steps__eyebrow {
	opacity: .6;
}

/* Step wrapper */
.lp-step {
	position: relative;
	padding-top: 50px; /* space for the big number */
}

/* Big background number */
.lp-step__number {
	position: absolute;
	top: 0;
	left: 16px;
	font-size: 4.5rem;
	font-weight: 700;
	line-height: 1;
	color: rgba(0, 123, 174, 0.2);
	pointer-events: none;
}

/* Card itself */
.lp-step__card {
	position: relative;
	border-radius: 18px;
	padding: 35px;
	background: rgba(250, 250, 250, 0.05);       /* translucent card */
	border: 1px solid rgba(250,250,250,.2);
	backdrop-filter: blur(6px);
	transition: all .15s ease-in-out;
}

/* Text styles */
.lp-step__title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.4rem;
	color: #ffffff;
}

.lp-step__text {
	font-size: 0.98rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.78);
}

/* Hover */
.lp-step__card:hover {
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
	transform: translateY(-4px);
	border-color: #fff;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
	.lp-steps__title {
		font-size: 1.9rem;
	}
}

@media (max-width: 767.98px) {
	.lp-step__number {
		font-size: 3.5rem;
		left: 10px;
	}
}

/* WHO WE SERVE */
.lp-serve {
	background-color: #ffffff;
}

.lp-serve__title {
	font-size: 2.2rem;
	color: var(--dark-blue);
}

/* Base card */
.lp-serve-card {
	border-radius: 18px;
	padding: 28px 26px;
	background-color: #F1F5F9;
	border: 1px solid #e1edf5;
	box-shadow: 0 10px 30px rgba(12, 40, 62, 0.02);
	transition: all .15s ease-in-out;
}

.lp-serve-card__title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.4rem;
	color: var(--dark-blue);
}

.lp-serve-card__text {
	font-size: 0.98rem;
	line-height: 1.6;
	color: #436173;
}

/* Hover */
.lp-serve-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 10px rgba(0, 62, 87, 0.20);
	border-color: var(--blue);
}

.lp-serve-card--highlight {
	background-color: #ffffff;
	border-color: var(--blue); 
	box-shadow: 0 16px 40px rgba(0, 146, 208, 0.18);
}

/* Responsive tweak */
@media (max-width: 991.98px) {
	.lp-serve__title {
		font-size: 1.9rem;
	}
}

/* WHY CHOOSE SS BROWN
-------------------------------------------------- */
.lp-why {
	background-color: #f3f7fb; /* light page bg */
}

.lp-why__card {
	border-radius: 22px;
	overflow: hidden;
	background-color: #ffffff;
}

/* Left panel */
.lp-why__left {
	background-color: var(--dark-blue);
	color: #ffffff;
	padding: 45px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.lp-why__text {
	font-size: 0.98rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
}

/* Right panel */
.lp-why__right {
	padding: 45px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 35px;
}

/* Bullet rows */
.lp-why__item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.lp-why__item:last-child {
	margin-bottom: 0;
}

/* Check icon circle */
.lp-why__icon {
	width: 26px;
	height: 26px;
	min-width: 26px;
	min-height: 26px;
	border-radius: 50%;
	background-color: var(--blue);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.lp-why__icon::before {
	content: "✓";
	color: #ffffff;
	font-size: 0.9rem;
	font-weight: 700;
}

/* Item text */
.lp-why__item-title {
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 0.15rem;
	color: var(--dark-blue);
}

.lp-why__item-text {
	font-size: 0.96rem;
	line-height: 1.6;
	color: #486375;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
	.lp-why__left,
	.lp-why__right {
		padding: 30px 22px;
	}

	.lp-why__title {
		font-size: 1.7rem;
	}
}

/* FAQ
-------------------------------------------------- */
.lp-faq {
	background-color: #ffffff;
}

.lp-faq__title {
	color: var(--dark-blue);
}

/* Container that holds the accordion */
.lp-faq__list {
	max-width: 900px;
	margin: 0 auto;
}

/* Single item */
.lp-faq-item {
	border-radius: 16px;
	background-color: #F1F5F9;
	margin-bottom: 12px;
	border: 1px solid #E2E8F0;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

/* Open state */
.lp-faq-item.is-open {
	background-color: #ffffff;
	border-color: var(--blue);
	box-shadow: 0 10px 30px rgba(12, 40, 62, 0.04);
}

/* Header button */
.lp-faq-item__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 20px 24px;
	background: none;
	border: 0;
	outline: none;
	cursor: pointer;
	text-align: left;
	font: inherit;
	color: inherit;
}

/* Question text */
.lp-faq-item__question {
	font-weight: 700;
	color: #00425c;
}

/* Icon (+) */
.lp-faq-item__icon {
	position: relative;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.lp-faq-item__icon::before,
.lp-faq-item__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 2px;
	background-color: var(--blue);
	transform: translate(-50%, -50%);
	transition: transform 0.15s ease, opacity 0.15s ease;
}

/* vertical bar for + */
.lp-faq-item__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

/* When open -> show minus (hide vertical bar) */
.lp-faq-item.is-open .lp-faq-item__icon::after {
	opacity: 0;
}

/* Answer body */
.lp-faq-item__body {
	padding: 0 24px 18px;
	font-size: 0.98rem;
	line-height: 1.7;
	color: #476577;
	display: none;
}

/* Show body when open */
.lp-faq-item.is-open .lp-faq-item__body {
	display: block;
}

/* Responsive tweaks */
@media (max-width: 980px) {
	.lp-faq__title {
		font-size: 1.9rem;
	}
}

/** FOOTER **/
.lp-footer__nav .lp-header__cta {
	display: none;
}

.lp-footer__cta {
	color: var(--dark-blue) !important;
	font-weight: 700 !important;
}

@media screen and (max-width: 980px) {
	.lp-footer__top {
		flex-direction: column;
	}
}