/* ========================================
   1. Custom Properties
   ======================================== */
:root {
	--color-primary-dark: #142736;
	--color-primary: #1E3A4D;
	--color-accent: #E8833A;
	--color-accent-gradient: radial-gradient(circle at 30% 40%, #f7dc6f 0%, #f5b041 40%, #e8833a 100%); /*#fce7d7*/
	--color-gray-500: #F4F4F4;
	--color-gray-400: #A3A3A3;
	--color-gray-600: #4D4D4D;
	--color-border: #E5E5E5;
	--font-family: 'Inter', system-ui, sans-serif;
}

/* ========================================
   2. Reset & Base
   ======================================== */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-family);
	color: #4D4D4D;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
}

ul, ol {
	list-style: none;
}

/* ========================================
   3. Utilities
   ======================================== */
.container {
	max-width: 80rem;
	margin: 0 auto;
	padding: 0 1rem;
}

@media (min-width: 72rem) {
	.container {
		padding: 0 4rem;
	}
}

.section-title {
	font-size: 1.75rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 8px;
	line-height: 1.15;
	color: #000;
}

@media (min-width: 40rem) {
	.section-title {
		font-size: 2rem;
	}
}

@media (min-width: 56rem) {
	.section-title {
		font-size: 2.25rem;
	}
}

.section-subtitle {
	font-size: 1rem;
	color: var(--color-gray-600);
	text-align: center;
	max-width: 660px;
	margin: 8px auto 2.5rem;
	line-height: 1.6;
}

.gradient-text {
	background: var(--color-accent-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 1rem;
	height: 2rem;
	border-radius: 0.375rem;
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
	border: none;
	transition: background 0.2s, opacity 0.2s;
	white-space: nowrap;
}

.btn--dark {
	background: #000;
	color: #fff;
}

	.btn--dark:hover {
		background: #292929;
	}

.btn--gradient {
	background: var(--color-accent-gradient);
	color: #000;
}

	.btn--gradient:hover {
		opacity: 0.9;
	}

.btn--white {
	background: #fff;
	color: var(--color-primary-dark);
	font-weight: 600;
}

	.btn--white:hover {
		opacity: 0.9;
	}

/* ========================================
   4. Navbar — static, polymer style
   ======================================== */
.navbar {
	padding-top: 22px;
	position: relative;
}

.navbar__inner {
	display: flex;
	align-items: center;
	height: 42px;
	justify-content: space-between;
}

.navbar__logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

	.navbar__logo img {
		height: 22px;
	}

.navbar__links {
	display: flex;
	align-items: center;
	gap: 0.50rem;
	background: #fff;
	border-radius: 6px;
	padding: 4px;
	filter: drop-shadow(0px 1px 5px rgba(0, 0, 0, 0.1));
}

	.navbar__links a {
		padding: 0.5rem 1rem;
		font-size: 0.875rem;
		line-height: 1.1rem;
		font-weight: 450;
		color: #000;
		border-radius: 0.375rem;
		transition: background 0.2s, opacity 0.2s;
	}

		.navbar__links a:not(.navbar__cta):hover {
			background: var(--color-gray-500);
		}

.navbar__cta {
	background: var(--color-accent-gradient);
	color: #000;
	font-weight: 500 !important;
}

	.navbar__cta:hover {
		opacity: 0.9;
	}

.navbar__toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.25rem;
	cursor: pointer;
	padding: 8px;
	color: #1a1a1a;
}

/* ========================================
   5. Hero
   ======================================== */
.hero {
	padding: 60px 0 3rem;
	text-align: center;
}

@media (min-width: 40rem) {
	.hero {
		padding: 80px 0 3rem;
	}
}

@media (min-width: 56rem) {
	.hero {
		padding: 104px 0 3rem;
	}
}

.hero h1 {
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.3;
	max-width: 800px;
	margin: 0 auto 8px;
	color: #000;
}

@media (min-width: 40rem) {
	.hero h1 {
		font-size: 2.25rem;
	}
}

@media (min-width: 56rem) {
	.hero h1 {
		font-size: 2.75rem;
	}
}

@media (min-width: 64rem) {
	.hero h1 {
		font-size: 3rem;
	}
}

.hero__subtitle {
	font-size: 1rem;
	color: var(--color-gray-600);
	max-width: 660px;
	margin: 8px auto 30px;
	line-height: 1.6;
}

	.hero__subtitle:last-child {
		margin-bottom: 80px;
	}

.hero__cta {
	margin-bottom: 47px;
}

.hero__img-section {
	max-width: 1435px;
	margin: 0 1rem;
	background: var(--color-accent-gradient);
	border-radius: 12px;
	padding: 20px;
}

@media (min-width: 40rem) {
	.hero__img-section {
		margin: 0 auto;
	}
}

.hero__img-inner {
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0px 4.23px 33.83px rgba(0, 0, 0, 0.04),0px 25.37px 33.83px -25.37px rgba(0, 0, 0, 0.08);
}

@media (min-width: 56rem) {
	.hero__img-section {
		border-radius: 16px;
	}
}

@media (min-width: 80rem) {
	.hero__img-section {
		padding: 59px;
	}
}

/* ========================================
   6. Trust / Brands
   ======================================== */
.trust {
	padding: 3rem 0;
	text-align: center;
}

@media (min-width: 56rem) {
	.trust {
		padding: 5rem 0;
	}
}

.trust__heading {
	font-size: 1rem;
	color: var(--color-gray-600);
	font-weight: 400;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.trust__logos {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
	align-items: center;
}

@media (min-width: 56rem) {
	.trust__logos {
		gap: 4.5rem;
		flex-wrap: nowrap;
	}
}

.trust__logo {
	height: 20px;
	width: auto;
	object-fit: contain;
	opacity: 1;
	/*transition: opacity 0.2s;*/
	/*filter: grayscale(100%);*/
}

.trust__logo--lg {
	height: 35px;
}

.trust__logo:hover {
	opacity: 0.7;
	filter: grayscale(0%);
}

/* ========================================
   7. Card Grid
   ======================================== */
.card-grid {
	padding: 3rem 0;
}

.card-grid--first {
	padding-top: 60px;
}

@media (min-width: 40rem) {
	.card-grid {
		padding: 4rem 0;
	}

	.card-grid--first {
		padding-top: 80px;
	}
}

@media (min-width: 56rem) {
	.card-grid {
		padding: 5rem 0;
	}

	.card-grid--first {
		padding-top: 104px;
	}
}

.card-grid__items {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 40rem) {
	.card-grid__items {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 56rem) {
	.card-grid__items {
		grid-template-columns: repeat(3, 1fr);
	}
}

.card-grid__card {
	background: #F4F4F4;
	border-radius: 6px;
	padding: 24px;
	display: flex;
	flex-direction: column;
}

@media (min-width: 40rem) {
	.card-grid__card {
		padding: 28px;
	}
}

@media (min-width: 56rem) {
	.card-grid__card {
		padding: 31px;
	}
}

.card-grid__icon {
	width: 48px;
	height: 48px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	background: #fff;
}

	.card-grid__icon i {
		font-size: 1.125rem;
		color: #000;
	}

.card-grid__card h3 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 8px;
	line-height: 1.6;
	color: #000;
}

.card-grid__card p {
	color: var(--color-gray-600);
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 24px;
}

	.card-grid__card p:last-child {
		margin-bottom: 0;
	}

@media (min-width: 56rem) {
	.card-grid__card p {
		margin-bottom: 32px;
	}

		.card-grid__card p:last-child {
			margin-bottom: 0;
		}
}

.card-grid__card .btn {
	margin-top: auto;
	align-self: flex-start;
}

/* ========================================
   8. Feature Rows — always text-left, image-right
   ======================================== */
.features {
	padding: 3rem 0;
}

@media (min-width: 40rem) {
	.features {
		padding: 4rem 0;
	}
}

@media (min-width: 56rem) {
	.features {
		padding: 5rem 0;
	}
}

.feature-row {
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding: 32px 0;
}

@media (min-width: 40rem) {
	.feature-row {
		padding: 48px 0;
	}
}

@media (min-width: 56rem) {
	.feature-row {
		display: grid;
		grid-template-columns: 502fr 642fr;
		gap: 48px;
		align-items: center;
		padding: 66px 0;
	}
}

@media (min-width: 72rem) {
	.feature-row {
		gap: 69px;
	}
}

.feature-row__text h3 {
	font-size: 1.75rem;
	font-weight: 600;
	margin-bottom: 16px;
	line-height: 1.15;
	color: #000;
}

@media (min-width: 40rem) {
	.feature-row__text h3 {
		font-size: 2rem;
	}
}

@media (min-width: 56rem) {
	.feature-row__text h3 {
		font-size: 2.25rem;
	}
}

.feature-row__text > p {
	color: var(--color-gray-600);
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 24px;
}

.feature-checklist {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 24px;
}

	.feature-checklist li {
		display: flex;
		align-items: flex-start;
		gap: 8px;
		font-size: 1rem;
		color: var(--color-gray-600);
		line-height: 2;
	}

		.feature-checklist li i {
			color: #000;
			font-size: 0.75rem;
			flex-shrink: 0;
			margin-top: 0.625rem;
		}

.feature-row__image {
	background: var(--color-gray-500);
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0px 4.23px 33.83px rgba(0, 0, 0, 0.04),0px 4.23px 33.83px rgba(0, 0, 0, 0.04),0px 25.37px 33.83px -25.37px rgba(0, 0, 0, 0.08);
}

/* ========================================
   9. Dark Section — rounded container
   ======================================== */
.dark-section {
	background: #000;
	padding: 3rem 0;
	color: #fff;
	/*	border-radius: 0.8125rem;
	margin: 0.5rem;*/
}

@media (min-width: 40rem) {
	.dark-section {
		padding: 4rem 0;
	}
}

@media (min-width: 56rem) {
	.dark-section {
		padding: 6rem 0;
		/*margin: 0 1rem;*/
	}
}

.dark-section .section-title {
	color: #E7E7E7;
}

.dark-section .section-subtitle {
	color: var(--color-gray-400);
}

.dark-section__image {
	margin: 0 auto 64px;
	border-radius: 6px;
	box-shadow: 0 1.5rem 2rem -0.5rem rgba(0, 0, 0, 0.07),0 0.25rem 2rem 0 rgba(0, 0, 0, 0.03);
	overflow: hidden;
}

.dark-section__items {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
	margin: 0 auto;
}

.dark-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.dark-item__icon {
	width: 3.5rem;
	height: 3.5rem;
	min-width: 3.5rem;
	background: #414141;
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
}

	.dark-item__icon i {
		font-size: 1.25rem;
		color: #E7E7E7;
	}

.dark-item h4 {
	font-size: 1.125rem;
	font-weight: 600;
	color: #E7E7E7;
	margin-bottom: 8px;
}

.dark-item p {
	font-size: 0.9375rem;
	color: var(--color-gray-400);
	line-height: 1.6;
}

/* ========================================
   10. Integrations — polymer card style with preview
   ======================================== */
.integrations {
	padding: 3rem 0;
}

@media (min-width: 40rem) {
	.integrations {
		padding: 4rem 0;
	}
}

@media (min-width: 56rem) {
	.integrations {
		padding: 5rem 0;
	}
}

.integrations__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}

@media (min-width: 40rem) {
	.integrations__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 56rem) {
	.integrations__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.integration-card {
	background: #fff;
	overflow: hidden;
	transition: box-shadow 0.2s;
}

.integration-card__preview {
	aspect-ratio: 16 / 8;
	border-radius: 6px;
	background: var(--color-gray-500);
	display: flex;
	align-items: center;
	justify-content: center;
}

	.integration-card__preview img {
		max-width: 40%;
		max-height: 40%;
		object-fit: contain;
	}

.integration-card__body {
	padding: 20px 0;
}

	.integration-card__body h3 {
		font-size: 1rem;
		font-weight: 600;
		margin-bottom: 4px;
		color: #000;
	}

	.integration-card__body p {
		font-size: 0.875rem;
		color: var(--color-gray-600);
		line-height: 1.5;
		margin-bottom: 16px;
	}

/* ========================================
   11. CTA Section
   ======================================== */
.cta {
	background: var(--color-accent-gradient);
	padding: 3rem 1rem;
	text-align: center;
	color: #000;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	/*border-radius: 0.8125rem;*/
	/*margin: 0.5rem;*/
}

	.cta p {
		margin-top: 1rem;
	}

	.cta .btn {
		margin-top: 2rem;
	}

@media (min-width: 40rem) {
	.cta {
		padding: 4rem 1.25rem;
	}
}

@media (min-width: 56rem) {
	.cta {
		padding: 6rem 2rem;
		/*margin: 1rem 1rem;*/
	}
}

.cta h2 {
	font-size: 1.75rem;
	font-weight: 600;
	line-height: 1.15;
	color: #000;
}

@media (min-width: 40rem) {
	.cta h2 {
		font-size: 2rem;
	}
}

@media (min-width: 56rem) {
	.cta h2 {
		font-size: 2.25rem;
	}
}

.cta__box p {
	font-size: 1rem;
	color: var(--color-gray-600);
	max-width: 855px;
	margin: 0;
	line-height: 1.6;
}

.cta__box .btn {
	margin-top: 20px;
}

/* ========================================
   12. Footer — brand left, columns right
   ======================================== */
.footer {
	background: #000;
	color: #fff;
	padding: 5rem 1rem 0;
	/*border-radius: 0.8125rem;*/
	/*margin: 0.5rem;*/
}

@media (min-width: 40rem) {
	.footer {
		padding: 5rem 1.25rem 0;
	}
}

@media (min-width: 56rem) {
	.footer {
		padding: 6rem 2rem 0;
		/*margin: 1rem 1rem;*/
	}
}

.footer__top {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	padding-bottom: 48px;
}

@media (min-width: 56rem) {
	.footer__top {
		grid-template-columns: 1.5fr 1fr 1fr 1fr;
		gap: 32px;
	}
}

.footer__brand img {
	height: 24px;
	margin-bottom: 1rem;
}

.footer__brand p {
	color: var(--color-gray-400);
	font-size: 0.875rem;
	line-height: 1.6;
	max-width: 280px;
}

.footer__column h4 {
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 10px;
	color: #fff;
}

.footer__column a {
	display: block;
	color: #A6A6A6;
	font-size: 0.9375rem;
	line-height: 1.6;
	font-weight: 400;
	transition: color 0.2s;
}

	.footer__column a:hover {
		color: #D5D5D5;
	}

.footer__bottom {
	border-top: 1px solid #222;
	padding: 24px 0;
	font-size: 0.875rem;
	color: #A6A6A6;
}

/* ========================================
   13. Feature Grid — compact icon grid (module pages)
   ======================================== */
.feature-grid {
	background: var(--color-gray-500);
	padding: 3rem 0;
}

@media (min-width: 40rem) {
	.feature-grid {
		padding: 4rem 0;
	}
}

@media (min-width: 56rem) {
	.feature-grid {
		padding: 5rem 0;
	}
}

.feature-grid__items {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 3rem;
	column-gap: 2rem;
}

@media (min-width: 40rem) {
	.feature-grid__items {
		grid-template-columns: repeat(2, 1fr);
		row-gap: 3rem;
	}
}

@media (min-width: 56rem) {
	.feature-grid__items {
		grid-template-columns: repeat(3, 1fr);
		row-gap: 4rem;
		column-gap: 2rem;
	}
}

@media (min-width: 72rem) {
	.feature-grid__items {
		grid-template-columns: repeat(4, 1fr);
		column-gap: 4rem;
	}
}

.feature-grid__item {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 12px;
}

@media (min-width: 56rem) {
	.feature-grid__item {
		flex-direction: column;
	}
}

.feature-grid__icon {
	width: 3rem;
	height: 3rem;
	min-width: 3rem;
	background: #fff;
	border-radius: 0.5625rem;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 1.5rem 2rem -0.5rem rgba(0, 0, 0, 0.07), 0 0.25rem 2rem 0 rgba(0, 0, 0, 0.03);
}

	.feature-grid__icon i {
		font-size: 1rem;
		color: #000;
	}

@media (min-width: 56rem) {
	.feature-grid__icon {
		margin-bottom: 0.5rem;
	}
}

.feature-grid__item h4 {
	font-size: 1.125rem;
	font-weight: 500;
	color: #000;
	margin-bottom: 4px;
	line-height: 1.4;
}

.feature-grid__item p {
	font-size: 0.875rem;
	color: var(--color-gray-600);
	line-height: 1.6;
}

@media (min-width: 56rem) {
	.feature-grid__item p {
		font-size: 1rem;
	}
}

/* ========================================
   14. Contact
   ======================================== */
.contact {
	padding: 0 0 5rem;
	text-align: center;
}

.contact__card {
	max-width: 480px;
	margin: 0 auto;
	background: var(--color-gray-500);
	border-radius: 6px;
	padding: 48px 32px;
}

.contact__icon {
	width: 3.5rem;
	height: 3.5rem;
	background: #fff;
	border-radius: 9px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	box-shadow: 0 1.5rem 2rem -0.5rem rgba(0, 0, 0, 0.07), 0 0.25rem 2rem 0 rgba(0, 0, 0, 0.03);
}

	.contact__icon i {
		font-size: 1.25rem;
		color: #000;
	}

.contact__card h3 {
	font-size: 1.5rem;
	font-weight: 600;
	color: #000;
	margin-bottom: 8px;
}

.contact__card p {
	font-size: 1rem;
	color: var(--color-gray-600);
	line-height: 1.6;
	margin-bottom: 20px;
}

.contact__mail {
	font-size: 1.125rem;
	font-weight: 600;
	color: #000;
	border-bottom: 2px solid #000;
	padding-bottom: 2px;
	transition: opacity 0.2s;
}

	.contact__mail:hover {
		opacity: 0.7;
	}

/* ========================================
   15. Responsive
   ======================================== */
@media (max-width: 56rem) {
	.navbar__toggle {
		display: block;
	}

	.navbar__links {
		display: none;
		position: absolute;
		top: 64px;
		left: 0;
		right: 0;
		background: #fff;
		flex-direction: column;
		padding: 16px 24px;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
		z-index: 100;
		border-radius: 12px;
		border: 1px solid #E5E7EB;
	}

	.navbar__links--open {
		display: flex;
	}

	.navbar__links a {
		width: 100%;
		padding: 12px 16px;
		border-radius: 8px;
	}

	.mock-dashboard__sidebar {
		display: none;
	}

	.mock-dashboard__content {
		grid-template-columns: repeat(2, 1fr);
	}

	.dark-section__items {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 40rem) {
	.mock-dashboard__content {
		grid-template-columns: 1fr;
	}
}

/* ========================================
   16. Pricing
   ======================================== */
.pricing-hero {
	padding: 60px 0 0;
	text-align: center;
}

@media (min-width: 40rem) {
	.pricing-hero {
		padding: 80px 0 0;
	}
}

@media (min-width: 56rem) {
	.pricing-hero {
		padding: 104px 0 0;
	}
}

.pricing-hero h1 {
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.3;
	max-width: 700px;
	margin: 0 auto 8px;
	color: #000;
}

@media (min-width: 40rem) {
	.pricing-hero h1 {
		font-size: 2.25rem;
	}
}

@media (min-width: 56rem) {
	.pricing-hero h1 {
		font-size: 2.75rem;
	}
}

.pricing-hero__subtitle {
	font-size: 1rem;
	color: var(--color-gray-600);
	max-width: 560px;
	margin: 8px auto 0;
	line-height: 1.6;
}

.pricing {
	padding: 3rem 0 4rem;
}

@media (min-width: 40rem) {
	.pricing {
		padding: 3rem 0 5rem;
	}
}

@media (min-width: 56rem) {
	.pricing {
		padding: 4rem 0 6rem;
	}
}

.pricing__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 40rem) {
	.pricing__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 72rem) {
	.pricing__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.pricing-card {
	position: relative;
	border-radius: 12px;
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.15);
}

.pricing-card--featured {
	border: 2px solid transparent;
	background-image: linear-gradient(#fff, #fff), var(--color-accent-gradient);
	background-origin: border-box;
	background-clip: padding-box, border-box;
}

.pricing-card__badge {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #000;
	color: #fff;
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.6;
	padding: 7px 1rem;
	border-radius: 6px;
	white-space: nowrap;
}

.pricing-card__header {
	margin-bottom: 24px;
}

.pricing-card__header h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: #000;
	margin-bottom: 4px;
}

.pricing-card__addon {
	font-size: 0.8125rem;
	color: var(--color-accent);
	font-weight: 500;
	margin-bottom: 8px;
}

.pricing-card__desc {
	font-size: 0.9375rem;
	color: var(--color-gray-600);
	line-height: 1.5;
}

.pricing-card__features {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

	.pricing-card__features li {
		display: flex;
		align-items: flex-start;
		gap: 10px;
		font-size: 0.9375rem;
		color: var(--color-gray-600);
		line-height: 1.5;
	}

		.pricing-card__features li i {
			color: #000;
			font-size: 0.625rem;
			margin-top: 6px;
			flex-shrink: 0;
		}

