/* Pricing Page Styles */

/* Landing Pages Section */
.landing-pages {
	padding: 80px 40px;
	background-color: #f9f7f4;
	text-align: center;
}

.landing-pages-container {
	max-width: 1400px;
	margin: 0 auto;
}

.landing-pages h2 {
	font: 48px 'Archivo', sans-serif;
	font-weight: 400;
	color: #000;
	margin-bottom: 30px;
	margin-top: 0;
}
.landing-pages h3 {
	font: 36px 'Archivo', sans-serif;
	font-weight: 400;
	color: #000;
	margin-bottom: 50px;
	margin-top: 0;
}

.landing-pages p {
	font: 20px 'Archivo', sans-serif;
	font-weight: 400;
	color: #666;
	max-width: 800px;
	margin: 0 auto 60px auto;
	line-height: 1.6;
}

.landing-pages-button {
	width: 100%;
	margin: 100px 0 0;
}
a.button-landing {
	background-color: #2a001f;
	color: white;
	padding: 15px 32px;
	border-radius: 16px;
	font-size: 21px;
}

.landing-images-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	align-items: flex-start;
}

.landing-image-link {
	display: block;
	text-decoration: none;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.landing-image-link:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.landing-image-container {
	position: relative;
	width: 100%;
	height: 400px;
	overflow: hidden;
}

.landing-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	transition: object-position 4s ease;
}

.landing-image-link:hover .landing-image {
	object-position: bottom;
}

@media (max-width: 1024px) {
	.landing-images-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
}

@media (max-width: 768px) {
	.landing-images-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.landing-image-container {
		height: 300px;
	}
}

/* Brands Section */
.brands-section {
	padding: 100px 40px;
	background-color: #2a001f;
	text-align: center;
}

.brands-container h2 {
	font: 48px 'Archivo', sans-serif;
	font-weight: 400;
	color: white;
	margin-bottom: 80px;
	margin-top: 0;
}

.brands-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 40px;
	align-items: center;
	justify-items: center;
	max-width: 1400px;
	margin: 0 auto;
}

.brand-logo {
	max-width: 100%;
	height: auto;
	max-height: 60px;
	object-fit: contain;
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.brand-logo:hover {
	opacity: 1;
}

@media (max-width: 1024px) {
	.brands-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 768px) {
	.brands-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 480px) {
	.brands-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Mobile Menu */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 10px;
	z-index: 1001;
}

.hamburger-line {
	width: 30px;
	height: 3px;
	background-color: #000;
	margin: 3px 0;
	transition: 0.3s;
	transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
	transform: rotate(45deg) translate(6.5px, 6.5px);
	background-color: white;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
	background-color: white;
}

.mobile-nav-close {
	display: none !important;
	position: absolute;
	top: 30px;
	right: 30px;
	background: none;
	border: none;
	color: white;
	font-size: 30px;
	cursor: pointer;
	z-index: 1002;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
}
.mobile-nav-cta {
	display: none;
}

@media (max-width: 992px) {

	.mobile-menu-toggle {
		display: flex;
		position: fixed;
		right: 10px;
	}


	.navigation.active {
		display: flex !important;
		opacity: 1;
		visibility: visible;
		flex-direction: column;
	}



	.navigation-item a:hover {
		opacity: 0.7;
	}


	.mobile-nav-cta {
		display: block;
		background-color: white;
		color: #2a001f;
		padding: 15px 32px;
		border-radius: 16px;
		text-decoration: none;
		font-size: 18px;
		font-weight: 400;
		transition: opacity 0.3s ease;
		margin-top: 20px;
	}

	.mobile-nav-cta:hover {
		opacity: 0.8;
	}

	.mobile-nav-close.active {
		display: flex !important;
	}
}

.pricing-page {
	background-color: #f9f7f4;
	min-height: 100vh;
}

/* Hero Section */
.pricing-hero {
	text-align: center;
	padding: 50px 10%;
	/* background: linear-gradient(135deg, #f9f7f4 0%, #ffffff 100%); */
}

.pricing-hero-content h1 {
	font: 8vw 'Archivo', sans-serif;
	font-weight: 500;
	color: #000;
	margin-bottom: 2.5vw;
	line-height: 1;
	margin-top: 0;
}

.pricing-subtitle {
	font: 27px 'Archivo', sans-serif;
	font-weight: 400;
	color: #181616;
	margin-bottom: 20px;
}

.pricing-note {
	font: 18px 'Archivo', sans-serif;
	font-weight: 400;
	color: #666;
}

li.demo-button a {
	background-color: #2a001f;
	color: white;
	padding: 15px 32px;
	border-radius: 16px;
}

/* Billing Toggle */
.billing-toggle-section {
	display: flex;
	justify-content: center;
	padding: 20px 10% 60px;
}

.billing-toggle {
	display: flex;
	align-items: center;
	gap: 15px;
	background-color: #fff;
	padding: 15px 25px;
	border-radius: 50px;
	border: 2px solid #e5e5e5;
}

.billing-label {
	font: 16px 'Archivo', sans-serif;
	font-weight: 500;
	color: #181616;
}

.savings-badge {
	background-color: #38002A;
	color: #fff;
	padding: 4px 8px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 600;
	margin-left: 5px;
}

/* Toggle Switch */
.toggle-switch {
	position: relative;
	width: 50px;
	height: 24px;
}

.toggle-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.toggle-label {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	border-radius: 24px;
	transition: 0.3s;
}

.toggle-slider {
	position: absolute;
	height: 18px;
	width: 18px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	border-radius: 50%;
	transition: 0.3s;
}

input:checked + .toggle-label {
	background-color: #38002A;
}

input:checked + .toggle-label .toggle-slider {
	transform: translateX(26px);
}

/* Pricing Cards */
.pricing-cards {
	padding: 50px 40px 80px;
}

.pricing-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	max-width: 1400px;
	margin: 0 auto;
}

.pricing-card {
	background-color: #fff;
	border: 2px solid #e5e5e5;
	border-radius: 20px;
	padding: 40px 30px;
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.pricing-card.featured {
	border-color: #38002A;
	transform: scale(1.05);
}

.pricing-card.featured:hover {
	transform: scale(1.05) translateY(-5px);
}

.popular-badge {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #38002A;
	color: #fff;
	padding: 5px 20px;
	border-radius: 20px;
	font: 14px 'Archivo', sans-serif;
	font-weight: 600;
}

.card-header h3 {
	font: 28px 'Archivo', sans-serif;
	font-weight: 700;
	color: #181616;
	margin-bottom: 5px;
	margin-top: 0;
}

.plan-description {
	font: 14px 'Archivo', sans-serif;
	color: #434040;
	margin-bottom: 20px;
}

.employee-count {
	color: #006eb7;
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 20px;
}

.card-pricing {
	margin-bottom: 30px;
}

.price-display {
	display: flex;
	align-items: baseline;
	margin-bottom: 10px;
}

.currency {
	font: 24px 'Archivo', sans-serif;
	font-weight: 600;
	color: #000;
}

.price {
	font: 48px 'Archivo', sans-serif;
	font-weight: 700;
	color: #000;
}

.period {
	font: 18px 'Archivo', sans-serif;
	font-weight: 400;
	color: #666;
	margin-left: 5px;
}

.price-note {
	font: 14px 'Archivo', sans-serif;
	color: #666;
}

.card-cta {
	margin-bottom: 40px;
}

.pricing-page .cta-button {
	display: inline-block;
	width: 70%;
	text-align: center;
	padding: 15px 30px;
	border-radius: 50px;
	font: 16px 'Archivo', sans-serif;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	margin-left: 0;
}

.pricing-page .cta-button.primary {
	background-color: #38002A;
	color: #fff;
}

.pricing-page .cta-button.primary:hover {
	background-color: #2a001f;
	transform: translateY(-2px);
}

.pricing-page .cta-button.secondary {
	background-color: #fff;
	color: #38002A;
	border-color: #38002A;
}

.pricing-page .cta-button.secondary:hover {
	background-color: #38002A;
	color: #fff;
}

.pricing-page .cta-button.large {
	font-size: 20px;
	padding: 20px 40px;
	width: auto;
}

.card-features ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.card-features li {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	font: 16px 'Archivo', sans-serif;
	color: #181616;
}

.card-features i {
	color: #38002A;
	margin-right: 12px;
	width: 16px;
}

/* Features Comparison */
.features-comparison {
	background-color: #fff;
	padding: 80px 10%;
}

.features-comparison2 {
	padding: 80px 10%;
}

.comparison-container {
	max-width: 1200px;
	margin: 0 auto;
}

.features-comparison h2, .features-comparison2 h2 {
	font: 48px 'Archivo', sans-serif;
	font-weight: 400;
	color: #000;
	text-align: center;
	margin-bottom: 50px;
}

.comparison-table {
	border: 1px solid #e5e5e5;
	border-radius: 15px;
	overflow: hidden;
}

.table-header {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
	background-color: #f8f8f8;
	padding: 20px;
	font: 15px 'Archivo', sans-serif;
	font-weight: 600;
	color: white;
	background: #38002A;
}

.feature-category {
	background-color: #f0f0f0;
	padding: 15px 20px;
	font: 18px 'Archivo', sans-serif;
	font-weight: 600;
	color: #000;
}

.feature-row {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
	padding: 15px 20px;
	border-bottom: 1px solid #e5e5e5;
}

.feature-row:last-child {
	border-bottom: none;
}

.feature-name {
	font: 16px 'Archivo', sans-serif;
	color: #38002A;
}

.feature-value {
	font: 16px 'Archivo', sans-serif;
	color: #181616;
	text-align: center;
}

.feature-value i.fa-check {
	color: #38002A;
}

.feature-value i.fa-times {
	color: #ccc;
}

.plan-column {
	text-align: center;
}

/* FAQ Section */
.faq-section {
	padding: 80px 10%;
	background-color: #f9f7f4;
}

.faq-container {
	max-width: 976px;
	margin: 0 auto;
}

.faq-section h2 {
	font: 48px 'Archivo', sans-serif;
	font-weight: 400;
	color: #000;
	text-align: center;
	margin-bottom: 50px;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	grid-column-gap: 24px;
	grid-row-gap: 24px;
}

.faq-item {
	background-color: #fff;
	border: 1px solid #3b3b3b1f;
	border-radius: 16px;
}

.faq-question {
	padding: 30px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background-color 0.3s ease;
}

.faq-question:hover {
	background-color: #f8f8f8;
}

.faq-question h4 {
	font: 18px 'Archivo', sans-serif;
	font-weight: 500;
	color: #000;
	margin: 0;
	flex: 1;
}

.faq-icon-wrapper {
	background-color: #38002A;
	border-radius: 100px;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	display: flex;
}

.faq-icon {
	font-size: 18px;
	color: white;
	transition: transform 0.3s ease;
	font-weight: 400;
}

.faq-item.active .faq-icon {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
	max-height: 200px;
}

.faq-answer p {
	font: 16px 'Archivo', sans-serif;
	font-weight: 400;
	color: #3b3b3b;
	line-height: 1.6;
	padding: 24px;
	margin: 0;
	max-width: 700px;
}

/* Final CTA */
.final-cta {
	background: linear-gradient(135deg, #38002A 0%, #2a001f 100%);
	padding: 80px 10%;
	text-align: center;
}

.cta-container h2 {
	font: 36px 'Archivo', sans-serif;
	font-weight: 400;
	color: #fff;
	margin-bottom: 15px;
}

.cta-container p {
	font: 18px 'Archivo', sans-serif;
	color: #fff;
	margin-bottom: 30px;
}

.cta-container .cta-button.large {
	background-color: #fff;
	color: #38002A;
	margin-bottom: 15px;
}

.cta-container .cta-button.large:hover {
	background-color: #f0f0f0;
	transform: translateY(-2px);
}

.cta-note {
	font: 14px 'Archivo', sans-serif;
	color: #ccc !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
	.pricing-hero-content h1 {
		font-size: 48px;
		line-height: 45px;
	}
	
	.pricing-subtitle {
		font-size: 24px;
		padding: 15px 10% 0;
	}
	.pricing-note {
		font: 18px / 24px 'Archivo', sans-serif;
		padding: 0 10%;
	}
	.plan-description {
		font-size: 21px;
		line-height: 28px;
		margin-bottom: 10px;
	}
	
	.pricing-container {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.pricing-card.featured {
		transform: none;
	}
	
	.pricing-card.featured:hover {
		transform: translateY(-5px);
	}
	
	.table-header,
	.feature-row {
		grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
		text-align: left;
		font-size: 10px;
		font-weight: 500;
	}
	.feature-category {
		padding: 10px;
	}
	.feature-category h4 {
		font-size: 15px;
	}
	.feature-row {
		padding: 10px 20px;
	}
	.features-comparison2 {
		padding: 20px 10%;
	}
	.feature-value {
		text-align: left;
		margin-top: 5px;
		margin-left: 20px;
	}
	
	.faq-grid {
		grid-template-columns: 1fr;
	}
	
	.billing-toggle {
		flex-direction: column;
		gap: 10px;
		padding: 20px;
	}
}

@media (max-width: 480px) {
	.pricing-hero {
		padding: 60px 5% 0px;
	}
	
	.pricing-cards,
	.features-comparison,
	.faq-section,
	.final-cta {
		padding-left: 5%;
		padding-right: 5%;
	}
	
	.pricing-card {
		padding: 30px 20px;
	}
}

.banner-enterprise {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 12px;
	font-weight: 600;
	background-color: #b2208d;
	padding: 5px 10px;
	width: calc(100% - 20px);
	border-radius: 10px 10px 0 0;
	text-align: center;
	color: white;
}
a.orders-email {
	border: 2px solid black;
	padding: 1vw 3vw;
	border-radius: 10px;
	background: white;
	font-size: 36px;
}
@media (max-width: 768px) {
	a.orders-email {
		font-size: 24px;
	}
	.feature-value {
		font: 11px 'Archivo', sans-serif;
		margin: 0 auto;
		text-align: center;
	}
	.feature-name {
		font-size: 12px;
		font-weight: 500;
	
	}
	.card-header h3 {
		font: 35px 'Archivo', sans-serif;
		font-weight: 700;
		color: #181616;
		margin-bottom: 5px;
		margin-top: 20px;
	}
	.employee-count {
		font-size: 16px;
		font-weight: 600;
	}
}
.feature-category h4 {
	padding: 0;
	margin: 0;
}

li.example {
	margin-left: 28px;
	margin-top: -10px;
}


.highlight {
  background: linear-gradient(104deg, #fff700 0%, #ffed4e 100%);
  padding: 2px 6px;
  margin: 0 -4px;
  clip-path: polygon(
	0% 15%, 
	2% 0%, 
	8% 3%, 
	15% 0%, 
	25% 2%, 
	35% 0%, 
	45% 3%, 
	55% 0%, 
	65% 2%, 
	75% 0%, 
	85% 1%, 
	95% 0%, 
	100% 10%, 
	99% 85%, 
	97% 100%, 
	92% 97%, 
	85% 100%, 
	75% 98%, 
	65% 100%, 
	55% 97%, 
	45% 100%, 
	35% 98%, 
	25% 100%, 
	15% 97%, 
	5% 100%, 
	0% 85%
  );
}