/**
 * Homepage Styles
 */

@import url(globals/faqs.css);
@import url(globals/section-header.css);

/**
 * Alternating Section Backgrounds
 * Automatically alternates between base-3 and base-4 for all sections
 * Uses :nth-of-type to target main > section elements
 */
.homepage>section .shape {
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0;
	height: 120px;
	left: 0;
	mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 194.3' preserveAspectRatio='none'><path d='M1200 133.3l-50 8.9c-50 8.6-150 26.9-250 31.1-100 4.2-200-4.2-300-26.7S400 89.2 300 62.2C200 35.8 100 17.5 50 8.9L0 0v194.3h1200v-61z'/></svg>");
	position: absolute;
	width: 100%;
	z-index: 1;
}

.homepage>section:nth-of-type(odd) {
	background-color: var(--base-4);
}

.homepage>section:nth-of-type(odd) .shape-bottom {
	background-color: var(--base-3);
}

.homepage>section:nth-of-type(even) {
	background-color: var(--base-3);
}

.homepage>section:nth-of-type(even) .shape-bottom {
	background-color: var(--base-4);
}

/* Hero Section */
.hero-section {
	/* background: linear-gradient(90deg, var(--base-3) 50%, var(--contrast-3) 50%); */
	padding: 120px 20px 0 20px;
	position: relative;
}

.hero-content {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 16px;
	justify-content: center;
	margin: 0 auto;
	max-width: 960px;
	position: relative;
	text-align: center;
}

.hero-left {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-base);
	margin: 0 auto var(--spacing-3xl) auto;
	max-width: 640px;
}

.hero-left:has(+ .hero-right) {
	margin: 0 auto var(--spacing-md) auto;
}

.star-rating {
	color: var(--accent);
	display: flex;
	gap: 5px;
	justify-content: center;
	margin-bottom: 0;
}

.hero-testimonial {
	background-color: transparent;
	border: 0;
	border-left: 3px solid var(--accent);
	color: var(--contrast-2);
	font-style: italic;
	margin: 0 0 var(--spacing-base);
	padding: var(--spacing-xs) var(--spacing-md);
}

.hero-testimonial p {
	font-size: 18px;
	line-height: 1.6;
	margin: 0 0 var(--spacing-sm);
}

.hero-testimonial cite {
	color: var(--base);
	display: block;
	font-size: 16px;
	font-style: normal;
}

.hero-title {
	color: var(--contrast);
	font-family: var(--font-heading);
	font-size: clamp(52px, 5vw, 72px);
	line-height: 1em;
	margin-bottom: var(--spacing-md);
}

.hero-description {
	color: var(--contrast-2);
	font-size: 20px;
	line-height: 1.6;
	margin-bottom: var(--spacing-lg);
}

.hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: var(--spacing-lg);
	justify-content: center;
}

.hero-buttons .button-primary {
	color: #ffffff;
	transform: scale(1.15);
}

.hero-buttons .button-secondary {
	background-color: var(--base-3);
	color: var(--contrast);
}

.hero-right {
	position: relative;
}

.hero-video {
	border: 15px solid var(--base-3);
	border-radius: 32px;
	box-shadow: var(--shadow-lg);
	overflow: hidden;
}

/* Features Section */
.features-section {
	overflow: hidden;
	padding: 120px 20px 220px 20px;
	position: relative;
}

/* Features Grid */
.features-grid {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	margin: 0 auto;
	max-width: 1280px;
	position: relative;
	z-index: 2;
}

.feature-item {
	animation: fadeInUp 0.6s ease-out forwards;
	background-color: var(--base-4);
	border: 2px solid transparent;
	border-radius: 32px;
	opacity: 0;
	overflow: hidden;
	padding: 32px;
	text-align: center;
	transform: translateY(30px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item .button-primary {
	color: #ffffff;
}

.feature-item-screenshow {
	margin-bottom: var(--spacing-xl);
	max-height: 240px;
	overflow: hidden;
}

.feature-item img {
	cursor: zoom-in;
	display: block;
	height: auto;
	transition: transform 0.8s ease-in-out;
	width: 100%;
}

.feature-item:hover img {
	animation: zoomPan 4s ease-in-out infinite alternate;
	cursor: zoom-out;
	transform-origin: top left;
}

@keyframes zoomPan {
	0% {
		transform: scale(2) translate(0, 0);
	}

	25% {
		transform: scale(2) translate(-20%, 0);
	}

	50% {
		transform: scale(2) translate(-20%, -20%);
	}

	75% {
		transform: scale(2) translate(-20%, -40%);
	}

	100% {
		transform: scale(2) translate(-40%, -40%);
	}
}

.feature-item .button {
	display: block;
	margin: var(--spacing-lg) 0;
}

.feature-item:nth-child(1) {
	animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
	animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
	animation-delay: 0.3s;
}

.feature-item:nth-child(4) {
	animation-delay: 0.4s;
}

.feature-item:nth-child(5) {
	animation-delay: 0.5s;
}

.feature-item:nth-child(6) {
	animation-delay: 0.6s;
}

.feature-item:nth-child(7) {
	animation-delay: 0.7s;
}

.feature-item:nth-child(8) {
	animation-delay: 0.8s;
}

.feature-item:nth-child(9) {
	animation-delay: 0.9s;
}

.feature-item:nth-child(10) {
	animation-delay: 1s;
}

.feature-item:nth-child(11) {
	animation-delay: 1.1s;
}

.feature-item:nth-child(12) {
	animation-delay: 1.2s;
}

.feature-item:nth-child(13) {
	animation-delay: 0.1s;
}

.feature-item:nth-child(14) {
	animation-delay: 0.2s;
}

.feature-item:nth-child(15) {
	animation-delay: 0.3s;
}

.feature-item:nth-child(16) {
	animation-delay: 0.4s;
}

.feature-item:hover {
	background-color: var(--base-5);
	border-color: var(--accent);
	box-shadow: var(--shadow-cards);
	transform: translateY(-8px);
}

.feature-icon {
	align-items: center;
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-alt) 100%);
	border-radius: 50%;
	display: flex;
	font-size: 40px;
	height: 80px;
	justify-content: center;
	margin: 0 auto 24px;
	transition: transform 0.4s ease;
	width: 80px;
}

.feature-item:hover .feature-icon {
	transform: scale(1.1) rotate(5deg);
}

.feature-icon .dashicons {
	color: var(--contrast);
	font-size: 40px;
	height: 40px;
	width: 40px;
}

.feature-title {
	color: var(--contrast);
	font-family: var(--font-heading);
	font-size: 22px;
	margin-bottom: 16px;
	text-transform: uppercase;
}

.feature-description {
	color: var(--contrast-3);
	font-size: 18px;
	line-height: 1.6;
	margin: 0;
}

/* Legacy support for old class name */
.section-subtitle {
	color: var(--accent);
	display: block;
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.integration-logos {
	display: grid;
	gap: var(--spacing-lg);
	grid-template-columns: repeat(4, 1fr);
	margin: 0 auto;
	max-width: 800px;
	padding: var(--spacing-lg) 0;
	position: relative;
	z-index: 2;
}

.integration-logo {
	align-items: center;
	display: flex;
	justify-content: center;
}

.integration-logo img {
	height: auto;
	max-width: 64px;
	opacity: 0.7;
	transition: opacity var(--transition-speed) var(--transition-easing);
}

.integration-logo img:hover {
	opacity: 1;
}

/* Feature Details Section */
.feature-detail {
	overflow: hidden;
	padding: 120px 20px 220px 20px;
	position: relative;
}

.feature-detail.bg-dark {
	background-color: var(--base-4);
}

.feature-detail.bg-darker {
	background-color: var(--base-3);
}

.feature-detail-content {
	align-items: center;
	display: grid;
	gap: 100px;
	grid-template-columns: 1fr 1fr;
	margin: 0 auto;
	max-width: 1920px;
	position: relative;
	z-index: 2;
}

.feature-detail.image-left .feature-detail-content {
	grid-template-columns: 1fr 1fr;
}

.feature-detail.image-right .feature-detail-content {
	grid-template-columns: 1fr 1fr;
}

.feature-text {
	max-width: 540px;
}

.feature-detail.image-left .feature-text {
	justify-self: end;
	margin-right: 60px;
}

.feature-detail.image-right .feature-text {
	justify-self: start;
	margin-left: 60px;
}

.feature-text h3 {
	font-size: clamp(24px, 3vw, 44px);
	margin-bottom: var(--spacing-md);
}

.feature-text p {
	color: var(--contrast-3);
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: var(--spacing-base);
}

.feature-image {
	border-radius: 32px;
	box-shadow: var(--shadow-lg);
	overflow: hidden;
	position: relative;
}

.feature-detail.image-left .feature-image {
	order: -1;
}

.feature-image img {
	display: block;
	height: auto;
	width: 100%;
}

/* Pricing Section */
.pricing-section {
	padding: 120px 20px 220px 20px;
	position: relative;
}

.pricing-grid {
	background-color: var(--base-3);
	border-radius: 32px;
	box-shadow: var(--shadow-cards);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	margin: 0 auto;
	max-width: 1240px;
	padding: 80px;
	position: relative;
	z-index: 2;
}

.pricing-plan {
	animation: fadeInUp 0.6s ease-out forwards;
	background-color: var(--base-3);
	/* border: 2px solid transparent; */
	border-radius: 32px;
	/* box-shadow: var(--shadow-cards); */
	opacity: 0;
	padding: 64px 32px 32px 32px;
	position: relative;
	text-align: center;
	transform: translateY(30px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-plan:nth-child(1) {
	animation-delay: 0.2s;
}

.pricing-plan:nth-child(2) {
	animation-delay: 0.4s;
}

.pricing-plan:nth-child(3) {
	animation-delay: 0.6s;
}

.pricing-plan:nth-child(4) {
	animation-delay: 0.8s;
}

.pricing-plan.featured {
	background-color: var(--accent);
	/* box-shadow: 0 4px 20px rgba(74, 181, 172, 0.2); */
	transform: scale(1.05) translateY(30px);
}

.pricing-plan.featured * {
	color: var(--base-5);
	font-weight: 400;
}

.pricing-plan.featured {
	animation: fadeInUpScale 0.6s ease-out forwards;
	z-index: 100;
}

.pricing-plan.featured del {
	font-weight: 700;
}

.pricing-plan.featured .plan-price .price {
	color: var(--base-5);
}

.pricing-plan .button {
	background-color: var(--accent-alt);
	color: #ffffff;
}

.pricing-plan.featured .button-plan {
	transform: scale(1.15);
}

.pricing-plan.featured:hover {
	transform: scale(1.08) translateY(-12px);
}

.pricing-plan:hover {
	/* border-color: var(--accent); */
	/* box-shadow: var(--shadow-cards); */
	transform: translateY(-12px) scale(1.02);
}

.plan-badge {
	background: linear-gradient(135deg, var(--accent-alt) 0%, var(--accent) 100%);
	border-radius: 32px;
	color: var(--contrast);
	font-size: 12px;
	font-weight: 700;
	left: 50%;
	letter-spacing: 0.5px;
	padding: 6px 20px;
	position: absolute;
	text-transform: uppercase;
	top: -16px;
	transform: translateX(-50%);
}

.plan-title {
	color: var(--contrast);
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 16px;
}

.plan-description {
	color: var(--contrast-3);
	font-size: 18px;
	margin-bottom: 24px;
	min-height: 40px;
}

.plan-price+.plan-price {
	margin: 0 0 32px 0;
}

.plan-price .price {
	color: var(--accent);
	font-family: var(--font-heading);
	font-size: 54px;
	font-weight: 700;
	line-height: 1;
}

.plan-price .price sup,
.plan-price .price small {
	font-size: 32px;
}

.plan-price .period {
	color: var(--contrast-3);
	display: block;
	font-size: 16px;
	margin-top: 8px;
}

.plan-features {
	margin: 32px 0;
	text-align: left;
}

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

.plan-features li {
	border-bottom: 1px solid var(--base-2);
	color: var(--contrast-3);
	padding: 12px 0;
	padding-left: 28px;
	position: relative;
}

.plan-features li:before {
	color: var(--accent);
	content: "✓";
	font-weight: 700;
	left: 0;
	position: absolute;
}

.plan-features li:last-child {
	border-bottom: none;
}

.pricing-plan .button {
	font-size: 16px;
	font-weight: 600;
	margin-top: 24px;
	padding: 14px 28px;
	width: 100%;
}

.pricing-free-version {
	margin-top: var(--spacing-lg);
	text-align: center;
}

.pricing-free-version p {
	font-size: clamp(20px, 1vw, 24px);
}

/* Comparison Table Section */
.comparison-table-section {
	padding: 120px 20px 220px 20px;
	position: relative;
}

.comparison-table-wrapper {
	animation: fadeInUp 0.6s ease-out 0.2s forwards;
	margin: 0 auto;
	max-width: 1000px;
	opacity: 0;
	transform: translateY(30px);
}

.comparison-table-wrapper table {
	background-color: var(--base-4);
	border-collapse: separate;
	border-radius: 32px;
	border-spacing: 0;
	box-shadow: var(--shadow-cards);
	overflow: hidden;
	width: 100%;
}

.comparison-table-wrapper thead {
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-alt) 100%);
}

.comparison-table-wrapper thead tr th {
	border: none;
	color: var(--contrast) !important;
	font-size: 16px;
	padding: 24px 20px;
	text-transform: uppercase;
}

.comparison-table-wrapper thead tr th:first-child {
	border-radius: 16px 0 0 0;
}

.comparison-table-wrapper thead tr th:last-child {
	border-radius: 0 16px 0 0;
}

.comparison-table-wrapper tbody tr {
	transition: background-color 0.3s ease;
}

.comparison-table-wrapper tbody tr:hover {
	background-color: var(--base-5);
}

.comparison-table-wrapper tbody tr td {
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	color: var(--contrast-2);
	font-size: 16px;
	padding: 20px;
	text-align: center;
	transition: color 0.3s ease;
}

.comparison-table-wrapper tbody tr:last-child td {
	border-bottom: none;
}

.comparison-table-wrapper tbody tr:last-child td:first-child {
	border-radius: 0 0 0 16px;
}

.comparison-table-wrapper tbody tr:last-child td:last-child {
	border-radius: 0 0 16px 0;
}

.comparison-table-wrapper tbody tr td:first-child {
	text-align: center;
}

.comparison-table-wrapper p {
	margin-top: 32px;
	text-align: center;
}

/* Testimonials Section */
.testimonials-section {
	padding: 120px 20px 220px 20px;
	position: relative;
}

.testimonials-grid {
	display: grid;
	gap: 32px;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	margin: 0 auto;
	max-width: 1240px;
}

.testimonial-item {
	animation: fadeInUp 0.6s ease-out forwards;
	background-color: var(--base-3);
	border: 2px solid transparent;
	border-radius: 48px;
	box-shadow: var(--shadow-cards);
	opacity: 0;
	padding: 40px 32px;
	text-align: center;
	transform: translateY(30px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-item:nth-child(1) {
	animation-delay: 0.2s;
}

.testimonial-item:nth-child(2) {
	animation-delay: 0.4s;
}

.testimonial-item:nth-child(3) {
	animation-delay: 0.6s;
}

.testimonial-item:nth-child(4) {
	animation-delay: 0.8s;
}

.testimonial-item:nth-child(5) {
	animation-delay: 1s;
}

.testimonial-item:nth-child(6) {
	animation-delay: 1.2s;
}

.testimonial-item:hover {
	border-color: var(--accent);
	box-shadow: var(--shadow-cards);
	transform: translateY(-8px);
}

.testimonial-rating {
	color: var(--accent);
	font-size: 24px;
	letter-spacing: 4px;
	margin-bottom: 20px;
}

.testimonial-content {
	margin-bottom: 24px;
}

.testimonial-content p {
	color: var(--contrast-3);
	font-size: 16px;
	line-height: 1.7;
	margin: 0;
}

.testimonial-author {
	align-items: center;
	display: flex;
	gap: 16px;
	justify-content: center;
}

.author-avatar {
	border-radius: 50%;
	height: 48px;
}

.author-info {
	text-align: left;
}

.author-name {
	color: var(--contrast);
	display: block;
	font-size: 14px;
}

.author-company {
	color: var(--contrast-3);
	font-size: 14px;
}

/* Recent Posts Section */
.recent-posts-section {
	padding: 120px 20px 220px 20px;
	position: relative;
}

.posts-grid {
	display: grid;
	gap: 32px;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	margin: 40px auto 0;
	max-width: 1240px;
}

.post-card {
	animation: fadeInUp 0.6s ease-out forwards;
	background-color: var(--base-3);
	border: 2px solid transparent;
	border-radius: 32px;
	box-shadow: var(--shadow-cards);
	opacity: 0;
	overflow: hidden;
	transform: translateY(30px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-card:nth-child(1) {
	animation-delay: 0.2s;
}

.post-card:nth-child(2) {
	animation-delay: 0.4s;
}

.post-card:nth-child(3) {
	animation-delay: 0.6s;
}

.post-card:hover {
	border-color: var(--accent);
	box-shadow: var(--shadow-cards);
	transform: translateY(-8px);
}

.post-thumbnail {
	aspect-ratio: 16/9;
	background-color: var(--base-5);
	overflow: hidden;
}

.post-thumbnail img {
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
	width: 100%;
}

.post-card:hover .post-thumbnail img {
	transform: scale(1.1);
}

.post-content {
	padding: 28px 24px;
}

.post-title {
	font-size: 20px;
	line-height: 1.4;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.post-title a {
	color: var(--contrast);
	text-decoration: none;
	transition: color 0.3s ease;
}

.post-title a:hover {
	color: var(--accent);
}

.post-meta {
	margin-bottom: 16px;
}

.post-date {
	color: var(--contrast-3);
	font-size: 14px;
}

.post-excerpt {
	color: var(--contrast-3);
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 20px;
}

.post-card .read-more {
	align-items: center;
	color: var(--accent);
	display: inline-flex;
	font-size: 14px;
	font-weight: 600;
	gap: 8px;
	text-decoration: none;
	transition: gap 0.3s ease;
}

.post-card .read-more:hover {
	gap: 12px;
}

.post-card .read-more:after {
	content: "→";
	font-size: 16px;
}

/* CTA Section */
.cta-section {
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-alt) 100%);
	color: var(--contrast);
	padding: var(--spacing-3xl) var(--spacing-base);
}

.cta-content h2 {
	color: var(--contrast);
	font-size: clamp(32px, 4vw, 48px);
	margin-bottom: var(--spacing-base);
}

.cta-content p {
	color: var(--contrast);
	font-size: 1.25rem;
	margin-bottom: var(--spacing-lg);
}

.cta-content .button-large {
	background-color: var(--contrast);
	color: var(--accent);
	font-size: 1.25rem;
	padding: 1.25rem 3rem;
}

.cta-content .button-large:hover {
	background-color: var(--base-3);
	color: var(--contrast);
}

/* Hero Section Animations */
.hero-left>* {
	animation: slideInLeft 0.8s ease-out forwards;
	opacity: 0;
	transform: translateX(-30px);
}

.star-rating {
	animation-delay: 0.2s;
}

.hero-testimonial {
	animation-delay: 0.4s;
}

.hero-title {
	animation-delay: 0.6s;
}

.hero-description {
	animation-delay: 0.8s;
}

.hero-buttons {
	animation-delay: 1s;
}

.hero-right {
	animation: slideInRight 0.8s ease-out 0.4s forwards;
	opacity: 0;
	transform: translateX(30px);
}

/* Keyframe Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUpScale {
	from {
		opacity: 0;
		transform: scale(1.05) translateY(30px);
	}

	to {
		opacity: 1;
		transform: scale(1.05) translateY(0);
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideDown {
	from {
		max-height: 0;
		opacity: 0;
	}

	to {
		max-height: 1000px;
		opacity: 1;
	}
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

/* Scroll Reveal Classes */
.scroll-reveal {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.revealed {
	opacity: 1;
	transform: translateY(0);
}

.scroll-reveal-left {
	opacity: 0;
	transform: translateX(-50px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal-left.revealed {
	opacity: 1;
	transform: translateX(0);
}

.scroll-reveal-right {
	opacity: 0;
	transform: translateX(50px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal-right.revealed {
	opacity: 1;
	transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.hero-section {
		padding: 90px 20px 60px;
	}

	.hero-content {
		gap: var(--spacing-lg);
		grid-template-columns: 1fr;
	}

	.hero-right {
		order: -1;
	}

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

	.feature-detail {
		padding: 60px 20px;
	}

	.feature-detail-content {
		gap: var(--spacing-lg);
		grid-template-columns: 1fr !important;
	}

	.feature-detail.image-left .feature-image,
	.feature-detail.image-right .feature-image {
		order: -1;
	}

	.feature-detail.image-left .feature-text,
	.feature-detail.image-right .feature-text {
		justify-self: center;
		margin: 0 auto;
	}

	.feature-text {
		text-align: center;
	}

	.features-grid {
		gap: 24px;
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.posts-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.hero-section {
		background: var(--base-4);
		padding: 60px 20px 40px;
	}

	.hero-title {
		font-size: 36px;
	}

	.hero-description {
		font-size: 16px;
	}

	.hero-buttons {
		flex-direction: column;
	}

	.hero-buttons .button {
		width: 100%;
	}

	.integration-logos {
		gap: var(--spacing-base);
		grid-template-columns: repeat(2, 1fr);
	}

	.features-section,
	.pricing-section,
	.comparison-table-section,
	.testimonials-section,
	.faq-section,
	.recent-posts-section {
		padding: 60px 20px 40px;
	}

	.features-grid {
		gap: 20px;
		grid-template-columns: 1fr;
	}

	.feature-detail {
		padding: 40px 20px;
	}

	.pricing-grid {
		grid-template-columns: 1fr;
		padding: 0;
	}

	.pricing-plan.featured {
		transform: scale(1) translateY(30px);
	}

	.pricing-plan.featured:hover {
		transform: scale(1.02) translateY(-12px);
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.posts-grid {
		gap: 24px;
		grid-template-columns: 1fr;
	}

	.comparison-table-wrapper table {
		font-size: 14px;
	}

	.comparison-table-wrapper thead tr th {
		font-size: 16px;
		padding: 16px 12px;
	}

	.comparison-table-wrapper tbody tr td {
		font-size: 14px;
		padding: 16px 12px;
	}

	.cta-section {
		padding: var(--spacing-2xl) var(--spacing-base);
	}
}
