:root {
	--primary: #e8725a;
	--primary-dark: #d45a42;
	--primary-light: #f49178;
	--secondary: #1f1f1f;
	--bg-light: #f8f9fa;
	--bg-dark: #0f0f0f;
	--text-primary: #1a1a1a;
	--text-secondary: #6b7280;
	--text-light: #9ca3af;
	--border: #e5e7eb;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

[x-cloak] {
	display: none !important;
}

body {
	font-family:
		"Instrument Sans",
		-apple-system,
		BlinkMacSystemFont,
		sans-serif;
	background: #ffffff;
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: 72px;
	padding: 0 2rem;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	color: var(--text-primary);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.navbar__container {
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	padding: 0;
}

.navbar__logo {
	display: flex;
	align-items: center;
	justify-self: start;
}

.navbar__logo img {
	height: 64px;
	transition: opacity 0.2s ease;
}

.navbar__logo:hover img {
	opacity: 0.8;
}

.navbar__nav {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	height: 100%;
	justify-content: center;
	justify-self: center;
}

.navbar__link {
	color: var(--text-secondary);
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	padding: 0.5rem 1rem;
	height: auto;
	display: flex;
	align-items: center;
	position: relative;
	transition: color 0.2s ease;
	border-radius: 8px;
}

.navbar__link:hover {
	color: var(--primary);
	background: rgba(232, 114, 90, 0.08);
}

.navbar__link.active {
	color: var(--primary);
}

/* Dropdown Menu */
.navbar__dropdown {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
}

.navbar__dropdown-toggle {
	color: var(--text-secondary);
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	padding: 0.5rem 1rem;
	height: auto;
	display: flex;
	align-items: center;
	position: relative;
	transition: color 0.2s ease;
	cursor: pointer;
	border-radius: 8px;
}

.navbar__dropdown-toggle:hover {
	color: var(--primary);
	background: rgba(232, 114, 90, 0.08);
}

.navbar__dropdown-toggle.active {
	color: var(--primary);
}

.navbar__dropdown-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	min-width: 220px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.2s ease;
	z-index: 1000;
	padding: 0.5rem;
}

.navbar__dropdown:hover .navbar__dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.navbar__dropdown-item {
	display: flex;
	align-items: center;
	padding: 0.75rem 1rem;
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 13px;
	border-radius: 8px;
	transition: all 0.2s ease;
}

.navbar__dropdown-item:hover {
	background-color: rgba(232, 114, 90, 0.08);
	color: var(--primary);
}

.navbar__dropdown-item svg {
	width: 16px;
	height: 16px;
	margin-right: 0.75rem;
	color: var(--text-light);
}

.navbar__dropdown-item:hover svg {
	color: var(--primary);
}

.navbar__actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	justify-self: end;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.7rem 1.5rem;
	border-radius: 10px;
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
	transition: all 0.2s ease;
	cursor: pointer;
	border: none;
}

.btn-primary {
	background: var(--primary);
	color: white;
	box-shadow: 0 2px 8px rgba(232, 114, 90, 0.3);
}

.btn-primary:hover {
	background: var(--primary-dark);
	box-shadow: 0 4px 12px rgba(232, 114, 90, 0.4);
	transform: translateY(-1px);
}

.btn-secondary {
	background: white;
	color: var(--text-primary);
	border: 1.5px solid var(--border);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.btn-secondary:hover {
	border-color: var(--primary);
	color: var(--primary);
	background: rgba(232, 114, 90, 0.04);
}

.btn-ghost {
	background: transparent;
	color: var(--text-secondary);
	padding: 0.6rem 1.25rem;
	border: 1.5px solid var(--border);
}

.btn-ghost:hover {
	color: var(--primary);
	background: rgba(232, 114, 90, 0.08);
	border-color: var(--primary);
}

.btn-large {
	padding: 0.9rem 2rem;
	font-size: 1rem;
	border-radius: 12px;
}

/* Hero Section */
.hero {
	padding: 8rem 2rem 3rem;
	background: #ffffff;
	min-height: calc(100vh - 72px);
	display: flex;
	align-items: center;
}

.hero__container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	align-items: center;
	width: 100%;
}

.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.4rem 0.75rem;
	background: #fef7f5;
	border: 1px solid rgba(232, 114, 90, 0.2);
	border-radius: 100px;
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--primary);
	margin-bottom: 1rem;
}

.hero__title {
	font-size: 2.75rem;
	font-weight: 800;
	line-height: 1.15;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.hero__title-highlight {
	color: var(--primary);
}

.hero__subtitle {
	font-size: 1.1rem;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
	max-width: 480px;
	line-height: 1.7;
}

.hero__actions {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin-bottom: 2rem;
}

.hero__stats {
	display: flex;
	gap: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--border);
}

.hero__stat {
	text-align: left;
}

.hero__stat-value {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--primary);
}

.hero__stat-label {
	font-size: 0.8rem;
	color: var(--text-secondary);
}

.hero__form-wrapper {
	background: linear-gradient(145deg, #f8f9fa 0%, #f0f1f3 100%);
	border-radius: 20px;
	padding: 1.25rem;
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
	max-height: 100%;
}

.hero__form {
	background: white;
	border-radius: 16px;
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hero__form-header {
	text-align: center;
	margin-bottom: 0.5rem;
}

.hero__form-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.25rem;
}

.hero__form-subtitle {
	font-size: 0.85rem;
	color: var(--text-secondary);
}

.hero__form-field {
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
}

.hero__form-label {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--text-primary);
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.hero__form-label .optional {
	font-weight: 400;
	color: var(--text-light);
	font-size: 0.75rem;
}

.hero__form-input,
.hero__form-textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1.5px solid var(--border);
	border-radius: 10px;
	font-size: 0.9rem;
	font-family: inherit;
	transition: all 0.2s ease;
	background: #fafafa;
}

.hero__form-input:hover,
.hero__form-textarea:hover {
	border-color: #d1d5db;
	background: white;
}

.hero__form-input:focus,
.hero__form-textarea:focus {
	outline: none;
	border-color: var(--primary);
	background: white;
	box-shadow: 0 0 0 3px rgba(232, 114, 90, 0.12);
}

.hero__form-input.valid,
.hero__form-textarea.valid {
	border-color: #10b981;
	background: white;
}

.hero__form-input.invalid,
.hero__form-textarea.invalid {
	border-color: #ef4444;
	background: #fef2f2;
}

.hero__form-textarea {
	resize: vertical;
	min-height: 80px;
	max-height: 120px;
}

.hero__form-submit {
	padding: 0.85rem 1.5rem;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: white;
	border: none;
	border-radius: 10px;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	box-shadow: 0 2px 8px rgba(232, 114, 90, 0.3);
	margin-top: 0.5rem;
}

.hero__form-submit:hover:not(:disabled) {
	background: linear-gradient(135deg, var(--primary-dark) 0%, #c24e36 100%);
	box-shadow: 0 4px 12px rgba(232, 114, 90, 0.4);
	transform: translateY(-1px);
}

.hero__form-submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	transform: none;
}

.hero__form-submit svg {
	width: 18px;
	height: 18px;
}

.hero__form-message {
	font-size: 0.85rem;
	padding: 0.75rem 1rem;
	border-radius: 10px;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.hero__form-message svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.hero__form-message--success {
	background: #dcfce7;
	color: #15803d;
	border: 1px solid #bbf7d0;
}

.hero__form-message--error {
	background: #fef2f2;
	color: #dc2626;
	border: 1px solid #fecaca;
}

.hero__form-error {
	font-size: 0.75rem;
	color: #dc2626;
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.hero__form-error svg {
	width: 14px;
	height: 14px;
}

.hero__form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}

@media (max-width: 480px) {
	.hero__form-row {
		grid-template-columns: 1fr;
	}
}

/* Section Base */
.section {
	padding: 4rem 2rem;
}

.section--gray {
	background: var(--bg-light);
}

.section--dark {
	background: var(--bg-dark);
	color: white;
}

.section--primary {
	background: var(--primary);
	color: white;
}

.section__container {
	max-width: 1100px;
	margin: 0 auto;
}

.section__header {
	text-align: center;
	margin-bottom: 3rem;
}

.section__title {
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 0.75rem;
}

.section__subtitle {
	font-size: 1rem;
	color: var(--text-secondary);
	max-width: 550px;
	margin: 0 auto;
}

.section--dark .section__subtitle,
.section--primary .section__subtitle {
	color: rgba(255, 255, 255, 0.8);
}

/* Logos Bar */
.logos-bar {
	padding: 2rem;
	text-align: center;
	border-bottom: 1px solid var(--border);
}

.logos-bar__title {
	font-size: 0.8rem;
	color: var(--text-light);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 1.5rem;
}

.logos-bar__grid {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 3rem;
	flex-wrap: wrap;
	opacity: 0.6;
}

.logos-bar__item {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-secondary);
}

/* Urgent CTA Banner */
.urgent-banner {
	background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
	padding: 4rem 2rem;
	position: relative;
	overflow: hidden;
}

.urgent-banner::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--primary);
}

.urgent-banner::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--primary);
}

.urgent-banner__container {
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}

.urgent-banner__badge {
	display: inline-block;
	background: var(--primary);
	color: white;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 0.5rem 1.25rem;
	border-radius: 50px;
	margin-bottom: 1.5rem;
	animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
	0%,
	100% {
		transform: scale(1);
	}

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

.urgent-banner__title {
	font-size: 2.5rem;
	font-weight: 800;
	color: white;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.urgent-banner__title span {
	color: var(--primary);
}

.urgent-banner__subtitle {
	font-size: 1.15rem;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.urgent-banner__examples {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	margin-bottom: 2.5rem;
}

.urgent-banner__example {
	background: rgba(232, 114, 90, 0.15);
	border: 1px solid rgba(232, 114, 90, 0.3);
	color: var(--primary-light);
	font-size: 0.9rem;
	font-weight: 500;
	padding: 0.6rem 1.25rem;
	border-radius: 50px;
	transition: all 0.2s ease;
}

.urgent-banner__example:hover {
	background: rgba(232, 114, 90, 0.25);
	transform: translateY(-2px);
}

.urgent-banner__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: var(--primary);
	color: white;
	font-size: 1.1rem;
	font-weight: 700;
	padding: 1rem 2.5rem;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(232, 114, 90, 0.4);
}

.urgent-banner__cta:hover {
	background: var(--primary-dark);
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(232, 114, 90, 0.5);
}

.urgent-banner__cta svg {
	width: 20px;
	height: 20px;
	transition: transform 0.3s ease;
}

.urgent-banner__cta:hover svg {
	transform: translateX(4px);
}

/* Top 3 Features */
.top-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.top-feature {
	background: white;
	border-radius: 16px;
	padding: 2rem;
	border: 1px solid var(--border);
	text-align: center;
}

.top-feature__icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.25rem;
	background: #fef7f5;
	color: var(--primary);
}

.top-feature__icon svg {
	width: 28px;
	height: 28px;
}

.top-feature__title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.top-feature__description {
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.6;
}

/* Other Features List */
.other-features {
	background: white;
	border-radius: 12px;
	padding: 1.5rem 2rem;
	border: 1px solid var(--border);
}

.other-features__title {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-light);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 1rem;
}

.other-features__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.75rem 1.5rem;
}

.other-feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	color: var(--text-secondary);
}

.other-feature svg {
	width: 16px;
	height: 16px;
	color: var(--primary);
	flex-shrink: 0;
}

/* Comparison Section */
.comparison-table {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--border);
}

.comparison-table table {
	width: 100%;
	border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
	padding: 1rem 1.25rem;
	text-align: left;
	border-bottom: 1px solid var(--border);
}

.comparison-table th {
	background: #f8f9fa;
	font-weight: 600;
	font-size: 0.9rem;
}

.comparison-table th:first-child {
	text-align: left;
}

.comparison-table th:not(:first-child) {
	text-align: center;
}

.comparison-table td:not(:first-child) {
	text-align: center;
}

.comparison-table td {
	font-size: 0.9rem;
	color: var(--text-secondary);
}

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

.comparison-table .highlight {
	background: #fef7f5;
}

.comparison-table .highlight th,
.comparison-table .highlight td {
	color: var(--primary);
	font-weight: 600;
}

.check {
	color: #10b981;
	font-weight: 600;
}

.cross {
	color: #ef4444;
}

.partial {
	color: #f59e0b;
}

/* Templates Section */
.templates-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
}

.template-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--border);
	transition: all 0.2s ease;
	text-decoration: none;
	color: inherit;
	display: block;
}

.template-card:hover {
	border-color: var(--primary);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}

.template-card__preview {
	background: #f8f9fa;
	padding: 1rem;
	border-bottom: 1px solid var(--border);
}

.template-card__fields {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.template-field {
	background: white;
	border: 1px solid var(--border);
	border-radius: 6px;
	padding: 0.5rem 0.75rem;
	font-size: 0.7rem;
	color: var(--text-light);
}

.template-field--btn {
	background: var(--primary);
	border-color: var(--primary);
	color: white;
	text-align: center;
	font-weight: 500;
}

.template-card__content {
	padding: 1rem;
}

.template-card__title {
	font-weight: 600;
	font-size: 0.95rem;
	margin-bottom: 0.25rem;
}

.template-card__description {
	font-size: 0.8rem;
	color: var(--text-secondary);
}

.template-card__cta {
	font-size: 0.75rem;
	color: var(--primary);
	font-weight: 500;
	margin-top: 0.5rem;
}

/* How It Works */
.steps-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.step-card {
	text-align: center;
}

.step-card__number {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--primary);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	font-weight: 800;
	margin: 0 auto 1rem;
}

.step-card__title {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.step-card__description {
	color: var(--text-secondary);
	font-size: 0.85rem;
}

/* Pricing Section */
.pricing-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	margin-bottom: 2rem;
}

.pricing-toggle__label {
	font-weight: 500;
	font-size: 0.9rem;
	color: var(--text-secondary);
	cursor: pointer;
}

.pricing-toggle__label.active {
	color: var(--text-primary);
}

.pricing-toggle__switch {
	width: 44px;
	height: 24px;
	background: #e5e7eb;
	border-radius: 100px;
	position: relative;
	cursor: pointer;
	transition: background 0.2s ease;
}

.pricing-toggle__switch.active {
	background: var(--primary);
}

.pricing-toggle__switch::after {
	content: "";
	position: absolute;
	top: 2px;
	left: 2px;
	width: 20px;
	height: 20px;
	background: white;
	border-radius: 50%;
	transition: transform 0.2s ease;
}

.pricing-toggle__switch.active::after {
	transform: translateX(20px);
}

.pricing-toggle__badge {
	background: #dcfce7;
	color: #16a34a;
	padding: 0.2rem 0.5rem;
	border-radius: 100px;
	font-size: 0.7rem;
	font-weight: 600;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	margin-bottom: 1.5rem;
}

.pricing-card {
	background: white;
	border-radius: 12px;
	padding: 1.5rem;
	border: 1px solid var(--border);
	position: relative;
}

.pricing-card--featured {
	border-color: var(--primary);
	border-width: 2px;
}

.pricing-card__badge {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--primary);
	color: white;
	padding: 0.25rem 0.75rem;
	border-radius: 100px;
	font-size: 0.7rem;
	font-weight: 600;
	white-space: nowrap;
}

.pricing-card__name {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
}

.pricing-card__description {
	color: var(--text-secondary);
	font-size: 0.8rem;
	margin-bottom: 1rem;
}

.pricing-card__price {
	margin-bottom: 1rem;
}

.pricing-card__amount {
	font-size: 2.25rem;
	font-weight: 800;
	color: var(--text-primary);
}

.pricing-card__currency {
	font-size: 1rem;
	font-weight: 600;
	vertical-align: super;
}

.pricing-card__period {
	color: var(--text-secondary);
	font-size: 0.8rem;
}

.pricing-card__features {
	list-style: none;
	margin-bottom: 1.25rem;
}

.pricing-card__feature {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	padding: 0.35rem 0;
	font-size: 0.8rem;
	color: var(--text-secondary);
}

.pricing-card__feature svg {
	width: 16px;
	height: 16px;
	color: #10b981;
	flex-shrink: 0;
	margin-top: 2px;
}

.pricing-card__cta {
	width: 100%;
	padding: 0.6rem 1rem;
	font-size: 0.85rem;
}

.enterprise-cta {
	background: white;
	border-radius: 12px;
	padding: 1.5rem 2rem;
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.enterprise-cta__content h3 {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
}

.enterprise-cta__content p {
	color: var(--text-secondary);
	font-size: 0.85rem;
}

/* FAQ Section */
.faq-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.faq-item {
	background: white;
	border-radius: 12px;
	border: 1px solid var(--border);
	overflow: hidden;
}

.faq-item__question {
	padding: 1.25rem;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-item__icon {
	width: 20px;
	height: 20px;
	color: var(--text-light);
	transition: transform 0.2s ease;
}

.faq-item__icon.open {
	transform: rotate(180deg);
}

.faq-item__answer {
	padding: 0 1.25rem 1.25rem;
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.7;
}

/* CTA Section */
.cta-section {
	text-align: center;
	padding: 4rem 2rem;
}

.cta-section h2 {
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 1rem;
}

.cta-section p {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

/* Social Proof */
.trust-badges {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
}

.trust-badge {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.9rem;
}

.trust-badge__icon {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
}

.trust-badge__icon svg {
	width: 18px;
	height: 18px;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.testimonial-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card__quote {
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 1rem;
	color: rgba(255, 255, 255, 0.9);
}

.testimonial-card__author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.testimonial-card__avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
}

.testimonial-card__name {
	font-weight: 600;
	color: white;
	font-size: 0.9rem;
}

.testimonial-card__role {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.6);
}

/* Contact Section */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.contact-info h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.contact-info p {
	color: var(--text-secondary);
	margin-bottom: 2rem;
	line-height: 1.7;
}

.contact-info__item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.25rem;
}

.contact-info__icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: #fef7f5;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	flex-shrink: 0;
}

.contact-info__icon svg {
	width: 20px;
	height: 20px;
}

.contact-info__text strong {
	display: block;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.contact-info__text span {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

.contact-info__text a {
	color: var(--primary);
	text-decoration: none;
}

.contact-info__text a:hover {
	text-decoration: underline;
}

.contact-form-wrapper {
	background: linear-gradient(145deg, #f8f9fa 0%, #f0f1f3 100%);
	border-radius: 20px;
	padding: 1.25rem;
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.contact-form {
	background: white;
	border-radius: 16px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-form__header {
	text-align: center;
	margin-bottom: 0.5rem;
}

.contact-form__title {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.25rem;
}

.contact-form__subtitle {
	font-size: 0.9rem;
	color: var(--text-secondary);
}

.contact-form__plan-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: #fef7f5;
	border: 1px solid rgba(232, 114, 90, 0.2);
	border-radius: 100px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--primary);
	margin-top: 0.75rem;
}

.contact-form__plan-badge svg {
	width: 16px;
	height: 16px;
}

.contact-form__field {
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
}

.contact-form__label {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--text-primary);
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.contact-form__label .optional {
	font-weight: 400;
	color: var(--text-light);
	font-size: 0.75rem;
}

.contact-form__input,
.contact-form__textarea,
.contact-form__select {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1.5px solid var(--border);
	border-radius: 10px;
	font-size: 0.9rem;
	font-family: inherit;
	transition: all 0.2s ease;
	background: #fafafa;
}

.contact-form__select {
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	background-size: 1.25rem;
	padding-right: 2.5rem;
}

.contact-form__input:hover,
.contact-form__textarea:hover,
.contact-form__select:hover {
	border-color: #d1d5db;
	background: white;
}

.contact-form__input:focus,
.contact-form__textarea:focus,
.contact-form__select:focus {
	outline: none;
	border-color: var(--primary);
	background: white;
	box-shadow: 0 0 0 3px rgba(232, 114, 90, 0.12);
}

.contact-form__input.valid,
.contact-form__textarea.valid,
.contact-form__select.valid {
	border-color: #10b981;
	background: white;
}

.contact-form__input.invalid,
.contact-form__textarea.invalid,
.contact-form__select.invalid {
	border-color: #ef4444;
	background: #fef2f2;
}

.contact-form__textarea {
	resize: vertical;
	min-height: 100px;
	max-height: 160px;
}

.contact-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

@media (max-width: 480px) {
	.contact-form__row {
		grid-template-columns: 1fr;
	}
}

.contact-form__submit {
	padding: 0.9rem 1.5rem;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: white;
	border: none;
	border-radius: 10px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	box-shadow: 0 2px 8px rgba(232, 114, 90, 0.3);
	margin-top: 0.5rem;
}

.contact-form__submit:hover:not(:disabled) {
	background: linear-gradient(135deg, var(--primary-dark) 0%, #c24e36 100%);
	box-shadow: 0 4px 12px rgba(232, 114, 90, 0.4);
	transform: translateY(-1px);
}

.contact-form__submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	transform: none;
}

.contact-form__submit svg {
	width: 18px;
	height: 18px;
}

.contact-form__message {
	font-size: 0.85rem;
	padding: 0.75rem 1rem;
	border-radius: 10px;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.contact-form__message svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.contact-form__message--success {
	background: #dcfce7;
	color: #15803d;
	border: 1px solid #bbf7d0;
}

.contact-form__message--error {
	background: #fef2f2;
	color: #dc2626;
	border: 1px solid #fecaca;
}

.contact-form__error {
	font-size: 0.75rem;
	color: #dc2626;
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.contact-form__error svg {
	width: 14px;
	height: 14px;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

/* Input placeholders */
.hero__form-input::placeholder,
.hero__form-textarea::placeholder,
.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
	color: #9ca3af;
	opacity: 1;
}

.hero__form-input:focus::placeholder,
.hero__form-textarea:focus::placeholder,
.contact-form__input:focus::placeholder,
.contact-form__textarea:focus::placeholder {
	color: #d1d5db;
}

/* Footer */
.footer {
	background: var(--bg-dark);
	color: white;
	padding: 4rem 2rem 1.5rem;
}

.footer__container {
	max-width: 1100px;
	margin: 0 auto;
}

.footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
	gap: 2rem;
	margin-bottom: 3rem;
}

.footer__brand {
	max-width: 250px;
}

.footer__logo {
	height: 64px;
	margin-bottom: 1rem;
}

.footer__description {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.85rem;
	line-height: 1.6;
}

.footer__column-title {
	font-weight: 600;
	margin-bottom: 1rem;
	font-size: 0.9rem;
}

.footer__links {
	list-style: none;
}

.footer__link {
	display: block;
	padding: 0.35rem 0;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: 0.85rem;
	transition: color 0.2s ease;
}

.footer__link:hover {
	color: var(--primary);
}

.footer__bottom {
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer__copyright {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.8rem;
}

.footer__made-with {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.8rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
	padding: 0.5rem;
	background: none;
	border: none;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.mobile-menu-toggle:hover {
	opacity: 0.8;
}

.mobile-menu-toggle span {
	width: 20px;
	height: 2px;
	background: #d1d5db;
	transition: background-color 0.2s ease;
}

.mobile-menu-toggle.active span {
	background: var(--primary);
}

.navbar__mobile-menu {
	display: none;
	position: fixed;
	top: 72px;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	z-index: 999;
	max-height: calc(100vh - 72px);
	overflow-y: auto;
}

.navbar__mobile-menu.active {
	display: block;
}

.navbar__mobile-link {
	display: block;
	padding: 1rem 1.5rem;
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	border-bottom: 1px solid var(--border);
	transition: all 0.2s ease;
}

.navbar__mobile-link:hover,
.navbar__mobile-link.active {
	background-color: rgba(232, 114, 90, 0.08);
	color: var(--primary);
}

.navbar__mobile-dropdown {
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar__mobile-dropdown-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.5rem;
	color: var(--text-secondary);
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	border-bottom: 1px solid var(--border);
}

.navbar__mobile-dropdown-toggle:hover {
	background-color: rgba(232, 114, 90, 0.08);
	color: var(--primary);
}

.navbar__mobile-dropdown-toggle svg {
	width: 16px;
	height: 16px;
	transition: transform 0.2s ease;
}

.navbar__mobile-dropdown.active .navbar__mobile-dropdown-toggle svg {
	transform: rotate(180deg);
}

.navbar__mobile-dropdown-menu {
	display: none;
	background-color: rgba(232, 114, 90, 0.03);
}

.navbar__mobile-dropdown.active .navbar__mobile-dropdown-menu {
	display: block;
}

.navbar__mobile-dropdown-item {
	display: flex;
	align-items: center;
	padding: 0.875rem 1.5rem 0.875rem 3rem;
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 13px;
	border-bottom: 1px solid var(--border);
	transition: all 0.2s ease;
}

.navbar__mobile-dropdown-item:hover {
	background-color: rgba(232, 114, 90, 0.08);
	color: var(--primary);
}

.navbar__mobile-dropdown-item svg {
	width: 14px;
	height: 14px;
	margin-right: 0.75rem;
}

/* Responsive Design - Mobile First Approach */

/* Large Tablets and Small Desktops (1024px and below) */
@media (max-width: 1024px) {
	.navbar {
		padding: 0 1.5rem;
	}

	.navbar__container {
		padding: 0;
	}

	.navbar__logo {
		min-width: 150px;
	}

	.navbar__logo img {
		height: 40px;
	}

	.navbar__nav {
		display: none;
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.navbar__mobile-menu {
		top: 72px;
	}

	.navbar__actions {
		gap: 0.5rem;
	}

	.btn {
		padding: 0.6rem 1.25rem;
		font-size: 0.85rem;
	}

	.hero {
		padding: 6rem 1.5rem 2rem;
	}

	.hero__container {
		gap: 2rem;
	}

	.hero__title {
		font-size: 2.5rem;
	}

	.pricing-grid,
	.top-features,
	.faq-grid {
		grid-template-columns: 1fr;
	}

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

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

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

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

	.footer__brand {
		grid-column: span 2;
		max-width: 100%;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.section {
		padding: 3rem 1.5rem;
	}

	.section__title {
		font-size: 1.75rem;
	}
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
	.navbar {
		height: 68px;
		padding: 0 1rem;
	}

	.navbar__mobile-menu {
		top: 68px;
		max-height: calc(100vh - 68px);
	}

	.navbar__logo img {
		height: 32px;
	}

	.navbar__actions .btn {
		padding: 0.5rem 1rem;
		font-size: 0.8rem;
	}

	.navbar__actions .btn-ghost {
		display: none;
	}

	.hero {
		padding: 5.5rem 1rem 2rem;
		min-height: calc(100vh - 68px);
	}

	.hero__container {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 2rem;
	}

	.hero__title {
		font-size: 2rem;
		line-height: 1.2;
	}

	.hero__subtitle {
		margin: 0 auto 1.5rem;
		font-size: 1rem;
	}

	.hero__actions {
		justify-content: center;
		flex-wrap: wrap;
	}

	.hero__stats {
		justify-content: center;
		flex-wrap: wrap;
		gap: 1.5rem;
	}

	.hero__form-wrapper {
		padding: 1rem;
	}

	.hero__form {
		padding: 1.5rem;
	}

	.hero__form-row {
		grid-template-columns: 1fr;
	}

	.section {
		padding: 2.5rem 1rem;
	}

	.section__title {
		font-size: 1.5rem;
	}

	.section__subtitle {
		font-size: 0.95rem;
	}

	.top-features {
		gap: 1rem;
	}

	.top-feature {
		padding: 1.5rem;
	}

	.steps-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.25rem;
	}

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

	.comparison-table {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.comparison-table table {
		min-width: 600px;
	}

	.enterprise-cta {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
		padding: 1.25rem;
	}

	.contact-form {
		padding: 1.5rem;
	}

	.contact-form__row {
		grid-template-columns: 1fr;
	}

	.footer {
		padding: 3rem 1rem 1.5rem;
	}

	.footer__grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.footer__brand {
		grid-column: span 1;
	}

	.footer__bottom {
		flex-direction: column;
		gap: 0.5rem;
		text-align: center;
	}

	.logos-bar {
		padding: 1.5rem 1rem;
	}

	.logos-bar__grid {
		gap: 1.5rem;
		flex-wrap: wrap;
	}

	.urgent-banner {
		padding: 3rem 1.5rem;
	}

	.urgent-banner__title {
		font-size: 2rem;
	}

	.urgent-banner__subtitle {
		font-size: 1rem;
	}

	.urgent-banner__examples {
		gap: 0.5rem;
	}

	.urgent-banner__example {
		font-size: 0.8rem;
		padding: 0.5rem 1rem;
	}
}

/* Mobile Devices (480px and below) */
@media (max-width: 480px) {
	.navbar {
		height: 64px;
		padding: 0 0.75rem;
	}

	.navbar__mobile-menu {
		top: 64px;
		max-height: calc(100vh - 64px);
	}

	.navbar__container {
		padding: 0 0.5rem;
	}

	.navbar__logo {
		min-width: 120px;
	}

	.navbar__logo img {
		height: 28px;
	}

	.navbar__actions .btn {
		padding: 0.5rem 0.75rem;
		font-size: 0.75rem;
	}

	.navbar__actions .btn svg {
		width: 14px;
		height: 14px;
	}

	.hero {
		padding: 5rem 0.75rem 1.5rem;
		min-height: calc(100vh - 64px);
	}

	.hero__title {
		font-size: 1.75rem;
	}

	.hero__subtitle {
		font-size: 0.95rem;
	}

	.hero__badge {
		font-size: 0.75rem;
		padding: 0.35rem 0.65rem;
	}

	.hero__actions {
		flex-direction: column;
		width: 100%;
	}

	.hero__actions .btn {
		width: 100%;
		justify-content: center;
	}

	.hero__stats {
		flex-direction: column;
		gap: 1rem;
		align-items: center;
		text-align: center;
	}

	.hero__stat-value {
		font-size: 1.25rem;
	}

	.hero__form-wrapper {
		padding: 0.75rem;
	}

	.hero__form {
		padding: 1.25rem;
		gap: 0.875rem;
	}

	.hero__form-title {
		font-size: 1.1rem;
	}

	.hero__form-subtitle {
		font-size: 0.8rem;
	}

	.section {
		padding: 2rem 0.75rem;
	}

	.section__header {
		margin-bottom: 2rem;
	}

	.section__title {
		font-size: 1.35rem;
	}

	.section__subtitle {
		font-size: 0.9rem;
	}

	.templates-grid,
	.other-features__grid,
	.steps-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.top-feature {
		padding: 1.25rem;
	}

	.top-feature__icon {
		width: 48px;
		height: 48px;
	}

	.top-feature__title {
		font-size: 1.1rem;
	}

	.top-feature__description {
		font-size: 0.85rem;
	}

	.step-card__number {
		width: 40px;
		height: 40px;
		font-size: 1.1rem;
	}

	.step-card__title {
		font-size: 0.95rem;
	}

	.step-card__description {
		font-size: 0.8rem;
	}

	.pricing-card {
		padding: 1.25rem;
	}

	.pricing-card__amount {
		font-size: 1.75rem;
	}

	.trust-badges {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}

	.testimonial-card {
		padding: 1.25rem;
	}

	.contact-info {
		margin-bottom: 1.5rem;
	}

	.contact-info h3 {
		font-size: 1.25rem;
	}

	.contact-form-wrapper {
		padding: 0.75rem;
	}

	.contact-form {
		padding: 1.25rem;
	}

	.contact-form__title {
		font-size: 1.2rem;
	}

	.contact-form__subtitle {
		font-size: 0.85rem;
	}

	.faq-item__question {
		padding: 1rem;
		font-size: 0.9rem;
	}

	.faq-item__answer {
		padding: 0 1rem 1rem;
		font-size: 0.85rem;
	}

	.cta-section {
		padding: 2.5rem 0.75rem;
	}

	.cta-section h2 {
		font-size: 1.5rem;
	}

	.cta-section p {
		font-size: 1rem;
	}

	.footer {
		padding: 2rem 0.75rem 1rem;
	}

	.footer__logo {
		height: 28px;
	}

	.logos-bar__grid {
		gap: 1rem;
	}

	.logos-bar__item {
		font-size: 1rem;
	}

	.urgent-banner {
		padding: 2.5rem 1rem;
	}

	.urgent-banner__badge {
		font-size: 0.7rem;
		padding: 0.4rem 1rem;
	}

	.urgent-banner__title {
		font-size: 1.5rem;
	}

	.urgent-banner__subtitle {
		font-size: 0.9rem;
		margin-bottom: 1.5rem;
	}

	.urgent-banner__examples {
		flex-direction: column;
		align-items: center;
	}

	.urgent-banner__example {
		width: 100%;
		max-width: 280px;
		text-align: center;
	}

	.urgent-banner__cta {
		font-size: 1rem;
		padding: 0.875rem 2rem;
	}
}

/* Extra Small Devices (360px and below) */
@media (max-width: 360px) {
	.hero__title {
		font-size: 1.5rem;
	}

	.hero__form {
		padding: 1rem;
	}

	.section__title {
		font-size: 1.25rem;
	}

	.btn {
		padding: 0.6rem 1rem;
		font-size: 0.8rem;
	}
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
	.hero {
		padding: 4rem 1rem 1.5rem;
		min-height: auto;
	}

	.hero__container {
		gap: 1.5rem;
	}
}
