/* FinVisor24 Styles
   Color Palette:
   - Primary: Elektric Indigo (#6F42C1)
   - Secondary: Lime Green (#D4E157)
   - Background: Ultra Light Graphite (#FAFAFA)
   - Text: Graphite Black (#212121)
   - Accent: Powder Pink (#F06292)
*/

/* Reset & Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Arial", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #212121;
	background-color: #fafafa;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 1rem;
	font-weight: 700;
	line-height: 1.2;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
	margin-bottom: 2rem;
	position: relative;
}

h2:after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 50px;
	height: 4px;
	background-color: #d4e157;
}

h3 {
	font-size: 1.5rem;
}

p {
	margin-bottom: 1rem;
}

a {
	color: #6f42c1;
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: #f06292;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

section {
	padding: 80px 0;
}

.btn {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
}

.btn-primary {
	background-color: #6f42c1;
	color: white;
}

.btn-primary:hover {
	background-color: #5a35a0;
	color: white;
}

.btn-secondary {
	background-color: #d4e157;
	color: #212121;
}

.btn-secondary:hover {
	background-color: #b8c440;
	color: #212121;
}

ul {
	list-style: none;
}

/* Header & Navigation */
.site-header {
	background-color: white;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
}

.site-header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
}

.logo a {
	display: block;
}

.nav-toggle {
	display: none;
}

.nav-toggle-label {
	display: none;
	cursor: pointer;
}

.main-nav ul {
	display: flex;
	gap: 20px;
}

.main-nav a {
	color: #212121;
	font-weight: 600;
}

.main-nav a:hover {
	color: #6f42c1;
}

/* Hero Section */
.hero {
	padding: 150px 0 80px;
	background-color: #6f42c1;
	color: white;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-image: linear-gradient(135deg, rgba(111, 66, 193, 0.9) 0%, rgba(240, 98, 146, 0.8) 100%);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
}

.hero p {
	font-size: 1.25rem;
	max-width: 800px;
	margin: 0 auto 2rem;
}

/* Advantages Section */
.advantages {
	background-color: white;
}

.advantages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
}

.advantage-card {
	padding: 30px;
	border-radius: 8px;
	background-color: #fafafa;
	transition: transform 0.3s ease;
}

.advantage-card:hover {
	transform: translateY(-5px);
}

.advantage-card h3 {
	color: #6f42c1;
}

/* Services Section */
.services {
	background-color: #fafafa;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
}

.service-card {
	padding: 30px;
	border-radius: 8px;
	background-color: white;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

.service-card:hover {
	transform: translateY(-5px);
}

.service-card h3 {
	color: #6f42c1;
}

.service-price {
	font-size: 1.5rem;
	font-weight: 700;
	color: #f06292;
	margin: 1rem 0;
}

.service-features {
	margin-bottom: 1.5rem;
}

.service-features li {
	margin-bottom: 0.5rem;
	position: relative;
	padding-left: 25px;
}

.service-features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #d4e157;
	font-weight: bold;
}

/* Testimonials Section */
.testimonials {
	background-color: white;
	text-align: center;
	padding: 80px 0;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.testimonial-item {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.testimonial-content {
	padding: 30px;
	border-radius: 8px;
	background-color: #fafafa;
	margin-bottom: 20px;
	flex-grow: 1;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

.testimonial-item:hover .testimonial-content {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-author {
	font-weight: 700;
	color: #6f42c1;
	margin-bottom: 10px;
}

/* How We Work Section */
.how-we-work {
	background-color: #fafafa;
}

.steps {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	counter-reset: step;
}

.step {
	flex-basis: calc(25% - 30px);
	margin-bottom: 30px;
	position: relative;
	padding-top: 60px;
}

.step::before {
	counter-increment: step;
	content: counter(step);
	position: absolute;
	top: 0;
	left: 0;
	width: 50px;
	height: 50px;
	background-color: #d4e157;
	color: #212121;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.5rem;
}

/* Order Form Section */
.order-form {
	background-color: white;
}

.form-container {
	max-width: 600px;
	margin: 0 auto;
	padding: 30px;
	border-radius: 8px;
	background-color: #fafafa;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
}

.form-control {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
}

.form-control:focus {
	border-color: #6f42c1;
	outline: none;
}

.form-check {
	display: flex;
	align-items: flex-start;
	margin-bottom: 10px;
}

.form-check input[type="checkbox"] {
	margin-top: 5px;
	margin-right: 10px;
}

.form-service {
	padding: 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	margin-bottom: 10px;
}

.form-service:hover {
	border-color: #6f42c1;
}

.service-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.service-name {
	font-weight: 600;
}

.service-price {
	color: #f06292;
}

/* FAQ Section */
.faq {
	background-color: #fafafa;
}

.faq-item {
	margin-bottom: 20px;
	border-radius: 8px;
	overflow: hidden;
}

.faq-question {
	background-color: white;
	padding: 15px;
	cursor: pointer;
	font-weight: 600;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-question::after {
	content: "+";
	font-size: 1.5rem;
	color: #6f42c1;
}

.faq-answer {
	padding: 15px;
	background-color: #f5f5f5;
	display: none;
}

.faq-item:target .faq-answer {
	display: block;
}

.faq-item:target .faq-question::after {
	content: "-";
}

/* Contact Section */
.contact {
	background-color: white;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.contact-info address {
	font-style: normal;
}

.contact-map {
	border-radius: 8px;
	overflow: hidden;
}

/* Footer */
.site-footer {
	background-color: #212121;
	color: white;
	padding: 60px 0 30px;
}

.footer-columns {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 30px;
	margin-bottom: 30px;
}

.footer-column h3 {
	color: #d4e157;
	margin-bottom: 15px;
}

.footer-column ul li {
	margin-bottom: 10px;
}

.footer-column a {
	color: white;
}

.footer-column a:hover {
	color: #d4e157;
}

.copyright {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
	text-align: center;
}

/* Cookie Banner */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(33, 33, 33, 0.9);
	color: white;
	padding: 15px 0;
	z-index: 9999;
}

.cookie-banner .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cookie-banner p {
	margin-bottom: 0;
	padding-right: 20px;
}

/* Media Queries */
@media (max-width: 992px) {
	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.75rem;
	}

	.step {
		flex-basis: calc(50% - 20px);
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}

	.testimonials-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
}

@media (max-width: 768px) {
	.nav-toggle-label {
		display: block;
	}

	.nav-toggle-label span,
	.nav-toggle-label span::before,
	.nav-toggle-label span::after {
		display: block;
		width: 25px;
		height: 3px;
		background-color: #212121;
		position: relative;
		transition: all 0.3s ease;
	}

	.nav-toggle-label span::before,
	.nav-toggle-label span::after {
		content: "";
		position: absolute;
	}

	.nav-toggle-label span::before {
		bottom: 8px;
	}

	.nav-toggle-label span::after {
		top: 8px;
	}

	.nav-toggle:checked ~ .nav-toggle-label span {
		background-color: transparent;
	}

	.nav-toggle:checked ~ .nav-toggle-label span::before {
		transform: rotate(45deg);
		bottom: 0;
	}

	.nav-toggle:checked ~ .nav-toggle-label span::after {
		transform: rotate(-45deg);
		top: 0;
	}

	.main-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background-color: white;
		overflow: hidden;
		max-height: 0;
		transition: max-height 0.3s ease;
	}

	.nav-toggle:checked ~ .main-nav {
		max-height: 500px;
		box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
	}

	.main-nav ul {
		flex-direction: column;
		padding: 20px;
		gap: 15px;
	}

	.services-grid,
	.advantages-grid {
		grid-template-columns: 1fr;
	}

	.footer-columns {
		grid-template-columns: 1fr;
	}

	.cookie-banner .container {
		flex-direction: column;
	}

	.cookie-banner p {
		margin-bottom: 15px;
		padding-right: 0;
	}
}

@media (max-width: 576px) {
	section {
		padding: 50px 0;
	}

	.hero {
		padding: 120px 0 50px;
	}

	.step {
		flex-basis: 100%;
	}

	.form-container {
		padding: 20px;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
	}
}
