:root {
	--primary: #962905;
	--primary-dark: #782904;
	--primary-light: #b94310;
	--accent: #d36134;
	--bg: #fafafa;
	--bg-alt: #ffffff;
	--text: #271411;
	--text-light: #6b7280;
	--border: #e5e7eb;
	--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
	--radius: 12px;
	--radius-lg: 20px;
	--max-width: 1280px;
}

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

body {
	font-family: 'EB Garamond', serif;
	color: var(--text);
	background: var(--bg);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

a {
	color: var(--primary);
	text-decoration: none;
	transition: color 0.2s;
}

a:hover {
	color: var(--primary-dark);
}

.container {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 24px;
}

header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 24px;
}

.header-brand {
	display: flex;
	align-items: center;
	gap: 12px;
}

.logo {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	overflow: hidden;
	display: block;
}

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

.brand-name {
	font-size: 20px;
	font-weight: 700;
	color: var(--text);
	letter-spacing: -0.5px;
}

.header-nav {
	display: flex;
	gap: 32px;
}

.header-nav a {
	font-size: 15px;
	font-weight: 500;
	color: var(--text);
	padding: 8px 0;
	position: relative;
}

.header-nav a:hover {
	color: var(--primary);
}

.header-nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary);
	transition: width 0.3s;
}

.header-nav a:hover::after {
	width: 100%;
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 1001;
	position: relative;
}

.mobile-menu-toggle span {
	width: 25px;
	height: 3px;
	background: var(--text);
	border-radius: 2px;
	transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100vh;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding-top: 80px;
	overflow-y: auto;
}

.mobile-nav.active {
	display: block;
}

.mobile-nav-inner {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 24px;
}

.mobile-nav a {
	font-size: 18px;
	font-weight: 500;
	color: var(--text);
	padding: 16px 0;
	border-bottom: 1px solid var(--border);
	text-decoration: none;
	transition: color 0.2s;
}

.mobile-nav a:hover {
	color: var(--primary);
}

.hero-full {
	position: relative;
	padding: 80px 0 0;
	background: linear-gradient(180deg, #fdf3f0 0%, #ffffff 100%);
	overflow: hidden;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
		circle at 30% 20%,
		rgba(150, 53, 5, 0.08) 0%,
		transparent 50%
	);
	pointer-events: none;
}

.hero-content {
	position: relative;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	padding-bottom: 60px;
}

.hero-badge {
	display: inline-block;
	padding: 8px 16px;
	background: rgba(150, 44, 5, 0.1);
	color: var(--primary-dark);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 20px;
	margin-bottom: 24px;
}

.hero-heading {
	font-size: clamp(36px, 5vw, 56px);
	font-weight: 800;
	line-height: 1.1;
	color: var(--text);
	margin-bottom: 24px;
	letter-spacing: -1px;
}

.hero-description {
	font-size: 18px;
	color: var(--text-light);
	line-height: 1.7;
	margin-bottom: 40px;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.hero-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.button-primary,
.button-secondary {
	display: inline-block;
	padding: 14px 32px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 8px;
	transition: all 0.3s;
	border: none;
	cursor: pointer;
}

.button-primary {
	background: var(--primary);
	color: white;
	box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
}

.button-primary:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
	color: white;
	text-decoration: none;
}

.button-secondary {
	background: white;
	color: var(--text);
	border: 2px solid var(--border);
}

.button-secondary:hover {
	border-color: var(--primary);
	color: var(--primary);
	text-decoration: none;
}

.hero-image-wrapper {
	margin-top: 60px;
	padding: 0 24px;
}

.hero-image {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: block;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
}

.stats-section {
	background: var(--bg-alt);
	padding: 60px 0;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	text-align: center;
}

.stat-item {
	padding: 20px;
}

.stat-number {
	font-size: 48px;
	font-weight: 800;
	color: var(--primary);
	line-height: 1;
	margin-bottom: 8px;
}

.stat-label {
	font-size: 14px;
	color: var(--text-light);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.features-section {
	padding: 100px 0;
	background: var(--bg);
}

.section-header {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 60px;
}

.section-title {
	font-size: 42px;
	font-weight: 800;
	color: var(--text);
	margin-bottom: 16px;
	letter-spacing: -1px;
}

.section-subtitle {
	font-size: 18px;
	color: var(--text-light);
	line-height: 1.6;
}

.features-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.feature-block {
	background: var(--bg-alt);
	padding: 40px 32px;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
	transition: all 0.3s;
}

.feature-block:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary-light);
}

.feature-icon {
	font-size: 48px;
	margin-bottom: 20px;
	display: block;
}

.feature-title {
	font-size: 22px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 12px;
}

.feature-text {
	font-size: 15px;
	color: var(--text-light);
	line-height: 1.7;
}

.showcase-section {
	padding: 100px 0;
	background: var(--bg-alt);
}

.showcase-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.showcase-label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--primary);
	margin-bottom: 16px;
}

.showcase-title {
	font-size: 40px;
	font-weight: 800;
	color: var(--text);
	margin-bottom: 24px;
	line-height: 1.2;
	letter-spacing: -0.5px;
}

.showcase-text {
	font-size: 17px;
	color: var(--text-light);
	line-height: 1.7;
	margin-bottom: 32px;
}

.showcase-list {
	list-style: none;
	margin-bottom: 32px;
}

.showcase-list li {
	padding: 12px 0;
	padding-left: 32px;
	position: relative;
	font-size: 16px;
	color: var(--text);
}

.showcase-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--primary);
	font-weight: 700;
	font-size: 20px;
}

.showcase-image {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

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

.process-section {
	padding: 100px 0;
	background: var(--bg);
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

.process-step {
	text-align: center;
	padding: 24px;
}

.step-number {
	font-size: 64px;
	font-weight: 800;
	color: rgba(5, 150, 105, 0.1);
	line-height: 1;
	margin-bottom: 16px;
}

.step-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 12px;
}

.step-text {
	font-size: 15px;
	color: var(--text-light);
	line-height: 1.6;
}

.image-section {
	padding: 0;
	background: var(--bg-alt);
}

.image-section-wrapper {
	padding: 0;
}

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

.contact-section {
	padding: 100px 0;
	background: var(--bg);
}

.contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
}

.contact-title {
	font-size: 42px;
	font-weight: 800;
	color: var(--text);
	margin-bottom: 20px;
	letter-spacing: -1px;
}

.contact-description {
	font-size: 17px;
	color: var(--text-light);
	line-height: 1.7;
	margin-bottom: 40px;
}

.contact-details {
	margin-bottom: 40px;
}

.contact-item {
	margin-bottom: 24px;
}

.contact-item strong {
	display: block;
	font-size: 14px;
	color: var(--text-light);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 8px;
}

.contact-item p {
	font-size: 16px;
	color: var(--text);
}

.contact-map {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.contact-map iframe {
	width: 100%;
	height: 300px;
	border: 0;
	display: block;
}

.contact-form-wrapper {
	background: var(--bg-alt);
	padding: 40px;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group label {
	font-size: 14px;
	font-weight: 600;
	color: var(--text);
	margin-bottom: 8px;
}

.required {
	color: var(--primary);
}

.form-input {
	padding: 12px 16px;
	font-size: 16px;
	border: 2px solid var(--border);
	border-radius: 8px;
	font-family: inherit;
	transition: all 0.2s;
	background: white;
}

.form-input:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.form-textarea {
	min-height: 140px;
	resize: vertical;
}

select.form-input {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23111827' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 40px;
	cursor: pointer;
}

.button-full {
	width: 100%;
	text-align: center;
}

.form-note {
	font-size: 12px;
	color: var(--text-light);
	text-align: center;
}

footer {
	background: #37231f;
	color: #f9fafb;
	padding: 60px 0 24px;
}

.footer-wrapper {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 24px;
}

.footer-content {
	display: grid;
	grid-template-columns: 2fr 3fr;
	gap: 60px;
	margin-bottom: 40px;
}

.footer-logo {
	font-size: 24px;
	font-weight: 700;
	color: white;
	display: block;
	margin-bottom: 12px;
}

.footer-tagline {
	font-size: 14px;
	color: #9ca3af;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.footer-column h4 {
	font-size: 14px;
	font-weight: 700;
	color: white;
	margin-bottom: 16px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.footer-column a {
	display: block;
	font-size: 14px;
	color: #9ca3af;
	margin-bottom: 12px;
	transition: color 0.2s;
}

.footer-column a:hover {
	color: var(--accent);
}

.footer-bottom {
	padding-top: 24px;
	border-top: 1px solid #374151;
	text-align: center;
}

.footer-bottom p {
	font-size: 14px;
	color: #9ca3af;
}

.cookie-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #ffffff;
	color: #111827;
	padding: 24px;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	border-top: 2px solid var(--primary);
}

.cookie-content {
	margin-bottom: 20px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.cookie-content p {
	font-size: 14px;
	line-height: 1.6;
	color: var(--text);
	margin: 0;
}

.cookie-bar-buttons {
	display: flex;
	gap: 12px;
	justify-content: flex-end;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.btn-cookie {
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 600;
	border-radius: 8px;
	border: 2px solid var(--border);
	background: white;
	color: var(--text);
	cursor: pointer;
	transition: all 0.2s;
}

.btn-cookie-primary {
	background: var(--primary);
	border-color: var(--primary);
	color: white;
}

.btn-cookie:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

.btn-cookie-primary:hover {
	background: var(--primary-dark);
	border-color: var(--primary-dark);
}

.pricing-section {
	padding: 100px 0;
	background: var(--bg-alt);
}

.pricing-table-wrapper {
	margin-bottom: 60px;
	overflow-x: auto;
}

.pricing-table {
	width: 100%;
	border-collapse: collapse;
	background: white;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
	margin-bottom: 24px;
}

.pricing-table thead {
	background: var(--primary);
	color: white;
}

.pricing-table th {
	padding: 20px 16px;
	text-align: left;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.pricing-table td {
	padding: 20px 16px;
	border-bottom: 1px solid var(--border);
	font-size: 15px;
	color: var(--text);
}

.pricing-table tbody tr:hover {
	background: #f9fafb;
}

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

.pricing-table strong {
	color: var(--text);
	font-weight: 700;
	display: block;
	margin-bottom: 4px;
}

.pricing-note {
	font-size: 13px;
	color: var(--text-light);
	font-style: italic;
	text-align: center;
	margin-top: 16px;
}

.pricing-example {
	background: linear-gradient(
		135deg,
		rgba(5, 150, 105, 0.1) 0%,
		rgba(5, 150, 105, 0.05) 100%
	);
	padding: 40px;
	border-radius: var(--radius-lg);
	border: 2px solid var(--primary-light);
	text-align: center;
}

.pricing-example-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 24px;
}

.pricing-example-content {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 24px;
	text-align: left;
}

.example-item {
	padding: 16px;
	background: white;
	border-radius: 8px;
	font-size: 16px;
}

.example-item strong {
	color: var(--primary-dark);
	display: block;
	margin-bottom: 4px;
}

.faq-section {
	padding: 100px 0;
	background: var(--bg);
}

.faq-list {
	max-width: 900px;
	margin: 0 auto;
}

.faq-item {
	background: var(--bg-alt);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 32px;
	margin-bottom: 24px;
	transition: all 0.3s;
}

.faq-item:hover {
	box-shadow: var(--shadow);
	border-color: var(--primary-light);
}

.faq-question {
	font-size: 20px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 16px;
	line-height: 1.4;
}

.faq-answer {
	font-size: 16px;
	color: var(--text-light);
	line-height: 1.7;
}

.cta-section {
	padding: 100px 0;
	background: linear-gradient(
		135deg,
		var(--primary) 0%,
		var(--primary-dark) 100%
	);
	color: white;
}

.cta-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.cta-title {
	font-size: 42px;
	font-weight: 800;
	color: white;
	margin-bottom: 24px;
	letter-spacing: -1px;
}

.cta-text {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.95);
	line-height: 1.7;
	margin-bottom: 32px;
}

.cta-benefits {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	max-width: 600px;
	margin: 0 auto 32px;
	text-align: left;
}

.cta-benefit {
	font-size: 16px;
	color: white;
	padding: 12px 0;
}

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

	.showcase-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

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

	.contact-wrapper {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.pricing-example-content {
		grid-template-columns: 1fr;
	}

	.cta-benefits {
		grid-template-columns: 1fr;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

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

@media (max-width: 768px) {
	.header-wrapper {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}

	.header-nav {
		display: none;
	}

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

	.mobile-nav {
		display: none;
	}

	.hero-full {
		padding: 40px 0 0;
	}

	.hero-content {
		padding-bottom: 40px;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.features-section,
	.showcase-section,
	.process-section,
	.contact-section {
		padding: 60px 0;
	}

	.section-title {
		font-size: 32px;
	}

	.features-list {
		grid-template-columns: 1fr;
	}

	.process-steps {
		grid-template-columns: 1fr;
	}

	.footer-links {
		grid-template-columns: 1fr;
	}

	.cookie-bar {
		padding: 20px 16px;
	}

	.cookie-bar-buttons {
		flex-direction: column;
	}

	.btn-cookie {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 16px;
	}

	.hero-heading {
		font-size: 32px;
	}

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

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

	.contact-form-wrapper {
		padding: 24px;
	}

	.pricing-table {
		font-size: 13px;
	}

	.pricing-table th,
	.pricing-table td {
		padding: 12px 8px;
	}

	.pricing-example {
		padding: 24px;
	}

	.cta-title {
		font-size: 32px;
	}

	.faq-item {
		padding: 24px;
	}

	.faq-question {
		font-size: 18px;
	}
}
