/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@500;600;700&display=swap');

/* CSS Variables */
:root {
	--background-color: #ffffff;
	--primary-color: #4a90e2;
	--secondary-color: #f4f7f6;
	--text-color: #333333;
	--heading-color: #2d3748;
	--footer-bg-color: #2d3748;
	--footer-text-color: #a0aec0;
	--white: #ffffff;
	--border-radius: 8px;
	--font-family-base: 'Lato', sans-serif;
	--font-family-heading: 'Poppins', sans-serif;
}

/* Global Styles & Reset */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* Debug outline removed */

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-family-base);
	font-size: 16px;
	line-height: 1.6;
	background-color: var(--background-color);
	color: var(--text-color);
	-webkit-font-smoothing: antialiased;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

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

a:hover {
	color: #357abd;
}

ul {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
}

h1,
h2,
h3 {
	font-family: var(--font-family-heading);
	color: var(--heading-color);
}

/* Header */
.header {
	background-color: var(--background-color);
	padding: 15px 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header__container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-family: var(--font-family-heading);
	color: var(--heading-color);
	font-size: 24px;
}

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

.nav__list {
	display: flex;
	align-items: center;
	gap: 30px;
}

.nav__link {
	font-family: var(--font-family-heading);
	font-weight: 500;
	color: var(--text-color);
	padding: 5px 0;
	position: relative;
}

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

.nav__link:hover::after {
	width: 100%;
}

.nav__link--button {
	background-color: var(--primary-color);
	color: var(--white);
	padding: 10px 20px;
	border-radius: var(--border-radius);
	transition: background-color 0.3s ease;
}

.nav__link--button:hover {
	background-color: #357abd;
	color: var(--white);
}

.nav__link--button::after {
	display: none;
}

.burger {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--heading-color);
	padding: 8px;
	transition: color 0.3s ease;
}

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

.burger:focus {
	outline: 2px solid var(--primary-color);
	outline-offset: 2px;
}

/* Improved button accessibility */
.button:focus {
	outline: 2px solid var(--primary-color);
	outline-offset: 2px;
}

.nav__link:focus {
	outline: 2px solid var(--primary-color);
	outline-offset: 2px;
	border-radius: 3px;
}

.form-input:focus {
	outline: 2px solid var(--primary-color);
	outline-offset: 2px;
}

/* Improve tap targets on mobile */
@media (max-width: 768px) {
	.nav__link,
	.burger,
	.button,
	.form-input,
	.tabs__nav-btn {
		min-height: 44px;
		min-width: 44px;
	}
}

/* Footer */
.footer {
	background-color: var(--footer-bg-color);
	color: var(--footer-text-color);
	padding-top: 60px;
}

.footer__container {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 40px;
	padding-bottom: 60px;
}

.footer__column--about .logo {
	margin-bottom: 20px;
}
.footer__logo .logo__text {
	color: var(--white);
}

.footer__description {
	max-width: 300px;
}

.footer__title {
	font-family: var(--font-family-heading);
	color: var(--white);
	font-size: 18px;
	margin-bottom: 20px;
}

.footer__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer__link {
	color: var(--footer-text-color);
}

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

.footer__list--contacts li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.footer__icon {
	flex-shrink: 0;
	margin-top: 4px;
}

.footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 20px 0;
}

.footer__bottom-container {
	text-align: center;
	font-size: 14px;
}

/* Mobile Responsiveness - Improved breakpoints */
@media (max-width: 1200px) {
	.container {
		padding: 0 20px;
	}
}

@media (max-width: 992px) {
	/* Tablet styles */
	.container {
		padding: 0 30px;
	}

	.header__container {
		padding: 0 15px;
	}

	.nav__list {
		gap: 25px;
	}
	.nav__link {
		font-size: 15px;
	}

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

@media (max-width: 768px) {
	/* Mobile styles */
	.container {
		padding: 0 20px;
	}

	.header {
		padding: 12px 0;
	}

	.header__container {
		padding: 0 5px;
	}

	.logo {
		font-size: 20px;
	}

	.nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 85%;
		max-width: 320px;
		height: 100vh;
		background-color: var(--white);
		box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
		transition: right 0.4s ease-in-out;
		padding-top: 80px;
	}

	.nav--active {
		right: 0;
	}

	.nav__list {
		flex-direction: column;
		align-items: flex-start;
		padding: 0 30px;
		gap: 25px;
	}

	.nav__link {
		font-size: 16px;
		padding: 8px 0;
	}

	.burger {
		display: block;
		z-index: 1001;
		padding: 8px;
	}

	.footer__container {
		grid-template-columns: 1fr;
		gap: 30px;
		text-align: center;
	}

	.footer__column--about {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.footer__list--contacts li {
		justify-content: center;
	}

	.footer__description {
		max-width: 100%;
		margin: 0 auto;
	}
}

/* ... (існуючі стилі) ... */

/* Main content adjustments */
main {
	padding-top: 72px; /* Header height offset */
}

/* General Button Style */
.button {
	display: inline-block;
	background-color: var(--primary-color);
	color: var(--white);
	padding: 12px 28px;
	border-radius: var(--border-radius);
	font-family: var(--font-family-heading);
	font-weight: 600;
	font-size: 16px;
	text-align: center;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.button:hover {
	background-color: #357abd;
	color: var(--white);
	transform: translateY(-2px);
}

/* Hero Section */
.hero {
	padding: 80px 0;
	background-color: var(--background-color);
	min-height: calc(100vh - 72px);
	display: flex;
	align-items: center;
}

.hero__container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero__title {
	font-size: 48px;
	line-height: 1.2;
	margin-bottom: 20px;
}

.hero__description {
	font-size: 18px;
	margin-bottom: 30px;
	max-width: 500px;
}

.hero__image-wrapper {
	position: relative;
}
.hero__image-wrapper::before {
	content: '';
	position: absolute;
	top: -5%;
	left: -5%;
	width: 110%;
	height: 110%;
	background: linear-gradient(
		45deg,
		rgba(74, 144, 226, 0.1),
		rgba(74, 144, 226, 0)
	);
	border-radius: 50% 50% 50% 70% / 60% 50% 50% 40%;
	z-index: 0;
	transform: rotate(-15deg);
}

.hero__image {
	width: 100%;
	height: auto;
	border-radius: var(--border-radius);
	position: relative;
	z-index: 1;
}

/* Improved Hero Responsive Design */
@media (max-width: 1200px) {
	.hero__container {
		gap: 40px;
		max-width: 100%;
	}
	.hero__title {
		font-size: 44px;
	}
}

@media (max-width: 992px) {
	/* Tablet hero styles */
	.hero {
		padding: 60px 0;
		min-height: auto;
	}

	.hero__title {
		font-size: 36px;
		line-height: 1.3;
		margin-bottom: 15px;
	}

	.hero__description {
		font-size: 16px;
		margin-bottom: 25px;
	}

	.hero__container {
		gap: 30px;
		align-items: center;
	}
}

@media (max-width: 768px) {
	/* Mobile hero styles */
	main {
		padding-top: 60px; /* Adjusted for smaller header */
	}

	.hero {
		padding: 40px 0;
		text-align: center;
		min-height: auto;
	}

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

	.hero__content {
		order: 2; /* Text comes after image on mobile */
		max-width: 100%;
	}

	.hero__image-wrapper {
		order: 1;
		max-width: 320px;
		margin: 0 auto;
	}

	.hero__title {
		font-size: 28px;
		margin-bottom: 15px;
	}

	.hero__description {
		font-size: 15px;
		margin: 0 auto 25px auto;
		max-width: 100%;
	}

	.hero__button {
		width: 100%;
		max-width: 280px;
		margin: 0 auto;
	}
}

@media (max-width: 480px) {
	/* Small mobile devices */
	.hero {
		padding: 30px 0;
	}

	.hero__title {
		font-size: 24px;
	}

	.hero__description {
		font-size: 14px;
	}

	.hero__image-wrapper {
		max-width: 280px;
	}

	.hero__button {
		max-width: 100%;
		padding: 14px 20px;
		font-size: 15px;
	}
}

/* ... (існуючі стилі) ... */

/* General Section Header Style */
.section-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 60px auto;
}

.section-header__title {
	font-size: 36px;
	margin-bottom: 15px;
}

.section-header__subtitle {
	font-size: 18px;
	color: #6c757d;
}

/* How It Works Section */
.how-it-works {
	padding: 80px 0;
	background-color: var(--secondary-color);
}

.how-it-works__steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.step-card {
	background-color: var(--white);
	padding: 40px;
	border-radius: var(--border-radius);
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.step-card__icon {
	margin-bottom: 25px;
	color: var(--primary-color);
}

.step-card__icon i svg {
	width: 50px;
	height: 50px;
}

.step-card__title {
	font-size: 22px;
	margin-bottom: 10px;
}

.step-card__description {
	font-size: 16px;
	line-height: 1.6;
}

/* Improved How It Works Responsive */
@media (max-width: 992px) {
	/* Tablet styles */
	.how-it-works {
		padding: 60px 0;
	}

	.how-it-works__steps {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.section-header__title {
		font-size: 32px;
	}
	.section-header__subtitle {
		font-size: 16px;
	}

	.step-card {
		padding: 35px;
		max-width: 500px;
		margin: 0 auto;
	}
}

@media (max-width: 768px) {
	/* Mobile styles */
	.how-it-works {
		padding: 40px 0;
	}

	.section-header {
		margin: 0 auto 40px auto;
	}

	.section-header__title {
		font-size: 26px;
		margin-bottom: 12px;
	}

	.section-header__subtitle {
		font-size: 15px;
	}

	.step-card {
		padding: 25px;
		text-align: center;
	}

	.step-card__title {
		font-size: 20px;
		margin-bottom: 8px;
	}

	.step-card__description {
		font-size: 14px;
	}
}

/* ... (існуючі стилі) ... */

/* Use Cases Section */
.use-cases {
	padding: 80px 0;
	background-color: var(--background-color);
}

.tabs {
	background: var(--white);
	padding: 30px;
	border-radius: var(--border-radius);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.tabs__nav {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.tabs__nav-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 25px;
	font-family: var(--font-family-heading);
	font-size: 16px;
	font-weight: 600;
	border: 2px solid #e2e8f0;
	background-color: transparent;
	color: var(--text-color);
	border-radius: var(--border-radius);
	cursor: pointer;
	transition: all 0.3s ease;
}

.tabs__nav-btn:hover {
	background-color: var(--secondary-color);
	border-color: var(--primary-color);
}

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

.tabs__pane {
	display: none;
	animation: fadeIn 0.5s ease-in-out;
}

.tabs__pane--active {
	display: block;
}

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

.tabs__pane-title {
	font-size: 28px;
	margin-bottom: 15px;
}

.tabs__pane-description {
	margin-bottom: 25px;
}

.tabs__pane-image img {
	width: 100%;
	border-radius: var(--border-radius);
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Mobile Responsiveness for new sections */
@media (max-width: 992px) {
	/* Tablet styles */
	.use-cases {
		padding: 60px 0;
	}

	.tabs {
		padding: 25px;
	}

	.tabs__nav-btn {
		padding: 10px 20px;
		font-size: 15px;
	}

	.tabs__pane-container {
		gap: 30px;
	}

	.tabs__pane-title {
		font-size: 24px;
	}
}

@media (max-width: 768px) {
	/* Mobile styles */
	.use-cases {
		padding: 40px 0;
	}

	.tabs {
		padding: 20px;
	}

	.tabs__nav {
		flex-direction: column;
		gap: 10px;
		margin-bottom: 25px;
	}

	.tabs__nav-btn {
		width: 100%;
		justify-content: center;
		padding: 12px 20px;
		font-size: 14px;
	}

	.tabs__pane-container {
		grid-template-columns: 1fr;
		gap: 20px;
		text-align: center;
	}

	.tabs__pane-image {
		order: -1; /* Image on top */
		margin-bottom: 15px;
	}

	.tabs__pane-title {
		font-size: 20px;
		margin-bottom: 12px;
	}

	.tabs__pane-description {
		font-size: 14px;
		margin-bottom: 20px;
	}

	.tabs__pane-text .button {
		width: 100%;
		max-width: 250px;
	}
}

/* ... (існуючі стилі) ... */

/* Tools Section */
.tools {
	padding: 80px 0;
	background-color: var(--secondary-color);
}

.tools__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.tool-card {
	background-color: var(--white);
	padding: 25px;
	border-radius: var(--border-radius);
	border: 1px solid #e2e8f0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tool-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	border-color: var(--primary-color);
}

.tool-card__icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: var(--secondary-color);
	color: var(--primary-color);
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}

.tool-card__icon svg {
	width: 30px;
	height: 30px;
}

.tool-card__title {
	font-size: 20px;
	margin-bottom: 10px;
}

.tool-card__description {
	font-size: 15px;
	color: #6c757d;
}

.tools__footer-text {
	text-align: center;
	margin-top: 40px;
	font-size: 16px;
	color: #6c757d;
}

@media (max-width: 1200px) {
	.tools__grid {
		gap: 25px;
	}
}

@media (max-width: 992px) {
	/* Mobile styles for Tools */
	.tools {
		padding: 60px 0;
	}

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

	.tool-card {
		padding: 20px;
	}

	.tool-card__title {
		font-size: 18px;
	}

	.tool-card__description {
		font-size: 14px;
	}

	.tools__footer-text {
		font-size: 15px;
		margin-top: 30px;
	}
}

@media (max-width: 768px) {
	/* Mobile styles */
	.tools {
		padding: 40px 0;
	}

	.tools__grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.tool-card {
		padding: 20px 15px;
	}

	.tool-card__icon {
		width: 50px;
		height: 50px;
		margin-bottom: 15px;
	}

	.tool-card__icon svg {
		width: 25px;
		height: 25px;
	}

	.tool-card__title {
		font-size: 16px;
		margin-bottom: 8px;
	}

	.tool-card__description {
		font-size: 13px;
		line-height: 1.5;
	}
}

/* ... (існуючі стилі) ... */

/* FAQ Section */
.faq {
	padding: 80px 0;
	background-color: var(--background-color);
}

.accordion {
	max-width: 800px;
	margin: 0 auto;
	border-top: 1px solid #e2e8f0;
}

.accordion__item {
	border-bottom: 1px solid #e2e8f0;
}

.accordion__header {
	width: 100%;
	background: none;
	border: none;
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: left;
	cursor: pointer;
}

.accordion__title {
	font-family: var(--font-family-heading);
	font-weight: 600;
	font-size: 18px;
	color: var(--heading-color);
	padding-right: 15px;
}

.accordion__icon {
	flex-shrink: 0;
	color: var(--primary-color);
	transition: transform 0.3s ease-in-out;
}

.accordion__content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease-out;
}

.accordion__content p {
	padding-bottom: 20px;
	line-height: 1.7;
}

.accordion__item--active .accordion__icon {
	transform: rotate(180deg);
}

/* ... (існуючі стилі) ... */

/* Contact Section */
.contact {
	padding: 80px 0;
	background-color: var(--secondary-color);
}

.contact__wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	background-color: var(--white);
	padding: 50px;
	border-radius: var(--border-radius);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact__info-title {
	font-size: 28px;
	margin-bottom: 15px;
}

.contact__info-text {
	margin-bottom: 30px;
	line-height: 1.7;
}

.contact__info-details {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.contact__info-item {
	display: flex;
	align-items: center;
	gap: 10px;
}
.contact__info-item a {
	color: var(--text-color);
	font-weight: 600;
}
.contact__info-item a:hover {
	color: var(--primary-color);
}
.contact__info-item i {
	color: var(--primary-color);
}

.form-group {
	margin-bottom: 20px;
}

.form-label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	font-size: 14px;
}

.form-input {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #e2e8f0;
	border-radius: var(--border-radius);
	font-size: 16px;
	font-family: var(--font-family-base);
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

.form-group--checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.form-group--checkbox input {
	margin-top: 5px;
}

.form-group--checkbox label {
	font-size: 14px;
	font-weight: 400;
}

.form-group--checkbox a {
	text-decoration: underline;
}

.contact-form__button {
	width: 100%;
}

.form-success-message {
	display: none; /* Hidden by default */
	text-align: center;
	padding: 40px;
	border: 2px dashed var(--primary-color);
	border-radius: var(--border-radius);
}
.form-success-message i {
	color: var(--primary-color);
	margin-bottom: 15px;
}
.form-success-message h4 {
	font-size: 22px;
	margin-bottom: 10px;
}

/* Improved Contact Responsive */
@media (max-width: 992px) {
	/* Tablet styles */
	.contact {
		padding: 60px 0;
	}

	.contact__wrapper {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 40px;
	}

	.contact__info-title {
		font-size: 24px;
	}
}

@media (max-width: 768px) {
	/* Mobile styles */
	.contact {
		padding: 40px 0;
	}

	.contact__wrapper {
		padding: 25px 20px;
		gap: 30px;
	}

	.contact__info-title {
		font-size: 20px;
		margin-bottom: 12px;
	}

	.contact__info-text {
		font-size: 14px;
		margin-bottom: 25px;
	}

	.contact__info-details {
		gap: 12px;
	}

	.contact__info-item {
		font-size: 14px;
	}

	.form-group {
		margin-bottom: 18px;
	}

	.form-input {
		padding: 11px 13px;
		font-size: 15px;
	}

	.form-label {
		font-size: 13px;
		margin-bottom: 6px;
	}

	.form-group--checkbox label {
		font-size: 13px;
		line-height: 1.4;
	}

	.contact-form__button {
		padding: 12px 20px;
		font-size: 15px;
	}
}

/* ... (всі існуючі стилі) ... */

/* Policy Pages Styles */
.pages {
	padding: 60px 0;
}
.pages .container {
	max-width: 800px;
}
.pages h1 {
	font-size: 1.5rem;
	margin-bottom: 30px;
}
.pages h2 {
	font-size: 1.5rem;
	margin-top: 40px;
	margin-bottom: 20px;
}
.pages p {
	margin-bottom: 20px;
	line-height: 1.7;
}
.pages ul {
	margin-bottom: 20px;
	padding-left: 20px;
}
.pages li {
	margin-bottom: 10px;
	list-style-type: disc;
}
.pages a {
	text-decoration: underline;
}
.pages a:hover {
	color: #357abd;
}

/* Cookie Pop-up */
.cookie-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: var(--footer-bg-color);
	color: var(--footer-text-color);
	padding: 20px 0;
	z-index: 2000;
	box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
	transform: translateY(120%);
	transition: transform 0.5s ease-in-out;
}

.cookie-popup--active {
	transform: translateY(0);
}

.cookie-popup__container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.cookie-popup__text {
	font-size: 15px;
}
.cookie-popup__text a {
	color: var(--white);
	text-decoration: underline;
}

.cookie-popup__button {
	flex-shrink: 0;
	padding: 10px 25px;
}

@media (max-width: 768px) {
	.cookie-popup__container {
		flex-direction: column;
		text-align: center;
		gap: 15px;
	}

	.cookie-popup__text {
		font-size: 14px;
	}

	.cookie-popup__button {
		padding: 8px 20px;
		font-size: 14px;
	}
}

/* Large screen improvements */
@media (min-width: 1400px) {
	.container {
		max-width: 1300px;
		padding: 0 30px;
	}

	.hero__container {
		gap: 80px;
		max-width: 1200px;
		margin: 0 auto;
	}

	.hero__title {
		font-size: 52px;
	}

	.how-it-works__steps {
		gap: 40px;
		max-width: 1000px;
		margin: 0 auto;
	}

	.tools__grid {
		gap: 40px;
		max-width: 1000px;
		margin: 0 auto;
	}
}

/* Additional mobile improvements */
@media (max-width: 480px) {
	/* Extra small devices */
	.container {
		padding: 0 15px;
	}

	.header__container {
		padding: 0;
	}

	.logo {
		font-size: 18px;
	}

	.logo svg {
		width: 32px;
		height: 32px;
	}

	.nav {
		width: 90%;
		max-width: 280px;
	}

	.nav__list {
		padding: 0 20px;
		gap: 20px;
	}

	.nav__link {
		font-size: 15px;
		padding: 6px 0;
	}

	.burger {
		padding: 6px;
	}

	/* Section adjustments for very small screens */
	.how-it-works,
	.use-cases,
	.tools,
	.faq,
	.contact {
		padding: 30px 0;
	}

	.section-header {
		margin: 0 auto 30px auto;
	}

	.section-header__title {
		font-size: 22px;
	}

	.section-header__subtitle {
		font-size: 13px;
	}

	.step-card {
		padding: 20px 15px;
	}

	.tool-card {
		padding: 15px;
	}

	.tabs {
		padding: 15px;
	}

	.contact__wrapper {
		padding: 20px 15px;
		gap: 25px;
	}

	.footer {
		padding-top: 40px;
	}

	.footer__container {
		gap: 25px;
		padding-bottom: 40px;
	}
}
