﻿/*!
Theme Name: arsenzakirov_v2
Theme URI: https://arsenzakirov.ru
Description: A custom theme based on _tw
Version: 0.1.0
Author: Arsen Zakirov
Author URI: https://arsenzakirov.ru
Text Domain: arsenzakirov_v2
Requires at least: 6.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

arsenzakirov_v2 is based on _tw https://underscoretw.com/, (C) 2021-2026 Greg Sullivan
_tw is distributed under the terms of the GNU GPL v2 or later.

_tw is based on Underscores https://underscores.me/ and Varia https://github.com/Automattic/themes/tree/master/varia, (C) 2012-2026 Automattic, Inc.
Underscores and Varia are distributed under the terms of the GNU GPL v2 or later.
*/

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
	--bg: #f7f7fa;
	--surface: #ffffff;
	--surface-2: #f3f4f6;
	--text: #111827;
	--muted: #4b5563;
	--line: #e5e7eb;
	--primary: #7c3aed;
	--primary-2: #6366f1;
	--accent: #a78bfa;
	--dark-0: #0b0f19;
	--dark-1: #111322;
	--dark-2: #1e1b4b;
	--shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 18px 48px rgba(15, 23, 42, 0.06);
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: 'Geist', sans-serif;
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.16em;
}

img {
	max-width: 100%;
	display: block;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	clip: auto !important;
	clip-path: none;
	background: #fff;
	color: #111827;
	display: block;
	height: auto;
	left: 1rem;
	line-height: normal;
	padding: 0.75rem 1rem;
	position: absolute;
	top: 1rem;
	width: auto;
	z-index: 100000;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
}

body.home.blog #content,
body.home #content,
body.page-template-default #content,
body.page #content {
	padding: 0;
}

#page {
	min-height: 100vh;
}

.landing-shell {
	max-width: 64rem;
	margin: 0 auto;
	padding: 0 1rem;
}

.content-shell {
	max-width: 64rem;
	margin: 0 auto;
	padding: 0 1rem;
}

@media (min-width: 640px) {
	.landing-shell {
		padding: 0 1.5rem;
	}

	.content-shell {
		padding: 0 1.5rem;
	}
}

@media (min-width: 1024px) {
	.landing-shell {
		padding: 0 2rem;
	}

	.content-shell {
		padding: 0 2rem;
	}
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.82);
	backdrop-filter: blur(18px);
}

.site-header__inner {
	max-width: 64rem;
	min-height: 5rem;
	margin: 0 auto;
	padding: 0 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

@media (min-width: 640px) {
	.site-header__inner {
		padding: 0 1.5rem;
	}
}

@media (min-width: 1024px) {
	.site-header__inner {
		padding: 0 2rem;
	}
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.9rem;
	text-decoration: none;
}

.site-brand__avatar {
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 9999px;
	object-fit: cover;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.12);
}

.site-brand__text {
	display: flex;
	flex-direction: column;
}

.site-brand__name {
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: #111827;
	line-height: 1.15;
}

.site-brand__tagline {
	font-size: 0.75rem;
	color: #6b7280;
}

.site-header__menu {
	position: relative;
}

.site-header__menu-toggle {
	list-style: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border: 1px solid var(--line);
	border-radius: 0.9rem;
	background: #fff;
	color: #4b5563;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.site-header__menu-toggle::-webkit-details-marker {
	display: none;
}

.site-navigation {
	position: absolute;
	right: 0;
	top: calc(100% + 0.75rem);
	display: none;
	flex-direction: column;
	gap: 0.25rem;
	width: 14rem;
	padding: 0.75rem;
	border: 1px solid var(--line);
	border-radius: 1rem;
	background: #fff;
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.site-header__menu[open] .site-navigation {
	display: flex;
}

.site-navigation a {
	padding: 0.65rem 0.8rem;
	border-radius: 0.75rem;
	color: var(--muted);
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
}

.site-navigation a:hover,
.site-navigation a:focus-visible {
	background: #f3f4f6;
	color: var(--primary);
}

.site-header__actions {
	display: none;
}

.navbar-menu,
.navbar-mobile-menu,
.footer-primary-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.navbar-menu li,
.navbar-mobile-menu li,
.footer-primary-menu li {
	margin: 0;
	padding: 0;
}

.navbar-menu a,
.navbar-mobile-menu a,
.footer-primary-menu a {
	text-decoration: none;
}

.navbar-menu a {
	color: #4b5563;
	font-size: 0.95rem;
	font-weight: 600;
	transition: color 0.2s ease;
}

.navbar-menu a:hover,
.navbar-menu a:focus-visible {
	color: #7c3aed;
}

.navbar-mobile-menu a {
	display: block;
	padding: 0.5rem 0.75rem;
	border-radius: 0.75rem;
	color: #4b5563;
	font-size: 0.95rem;
	font-weight: 600;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.navbar-mobile-menu a:hover,
.navbar-mobile-menu a:focus-visible {
	background: #f3f4f6;
	color: #7c3aed;
}

.footer-primary-menu a {
	color: #cbd5e1;
	transition: color 0.2s ease;
}

.footer-primary-menu a:hover,
.footer-primary-menu a:focus-visible {
	color: #ffffff;
}

@media (min-width: 768px) {
	.site-header__menu {
		display: none;
	}

	.site-navigation {
		position: static;
		display: flex;
		flex-direction: row;
		width: auto;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		gap: 1.25rem;
	}

	.site-navigation a {
		padding: 0;
		font-size: 0.95rem;
	}

	.site-header__actions {
		display: block;
	}
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.875rem;
	padding: 0.8rem 1.4rem;
	border-radius: 0.9rem;
	font-size: 0.92rem;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.btn--primary {
	background: var(--primary);
	color: #fff;
	box-shadow: 0 12px 24px rgba(124, 58, 237, 0.24);
}

.btn--primary:hover {
	box-shadow: 0 16px 28px rgba(124, 58, 237, 0.28);
}

.btn--ghost {
	background: transparent;
	color: #e5e7eb;
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 0;
	padding-left: 0;
	padding-right: 0;
	min-height: auto;
}

.btn--ghost-dark {
	color: var(--text);
	border-bottom-color: rgba(17, 24, 39, 0.25);
}

.landing-page {
	overflow: hidden;
}

.landing-section {
	padding: 1rem 0;
}

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

.landing-section--dark {
	background: linear-gradient(135deg, var(--dark-0) 0%, var(--dark-1) 52%, var(--dark-2) 100%);
	color: #fff;
}

.landing-section--audit {
	padding-top: 0.5rem;
}

.landing-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, var(--dark-0) 0%, var(--dark-1) 52%, var(--dark-2) 100%);
	color: #fff;
}

.landing-hero::before,
.landing-hero::after {
	content: "";
	position: absolute;
	border-radius: 9999px;
	pointer-events: none;
	filter: blur(120px);
}

.landing-hero::before {
	left: -8rem;
	top: -5rem;
	width: 20rem;
	height: 20rem;
	background: rgba(147, 51, 234, 0.2);
}

.landing-hero::after {
	right: -6rem;
	top: 6rem;
	width: 24rem;
	height: 24rem;
	background: rgba(99, 102, 241, 0.18);
}

.landing-hero__shell {
	position: relative;
	padding-top: 6rem;
	padding-bottom: 6.5rem;
	text-align: center;
}

.landing-hero__glow {
	position: absolute;
	border-radius: 9999px;
	pointer-events: none;
	filter: blur(120px);
}

.landing-hero__glow--left {
	left: -8rem;
	top: -5rem;
	width: 20rem;
	height: 20rem;
	background: rgba(147, 51, 234, 0.2);
}

.landing-hero__glow--right {
	right: -6rem;
	top: 6rem;
	width: 24rem;
	height: 24rem;
	background: rgba(99, 102, 241, 0.18);
}

.landing-hero__badge {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	padding: 0.5rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 9999px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(124, 58, 237, 0.1));
	color: #c4b5fd;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.74rem;
}

.landing-hero__title {
	position: relative;
	z-index: 1;
	max-width: 12ch;
	margin: 0 auto;
	font-family: 'Poppins', sans-serif;
	font-size: clamp(2.6rem, 6vw, 4.8rem);
	font-weight: 800;
	letter-spacing: -0.05em;
	line-height: 0.96;
}

.landing-hero__lead {
	position: relative;
	z-index: 1;
	max-width: 52rem;
	margin: 1.5rem auto 0;
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	line-height: 1.7;
	color: #cbd5e1;
}

.landing-hero__cta {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.9rem;
	margin-top: 2rem;
}

.landing-hero__cta--left {
	align-items: flex-start;
}

@media (min-width: 640px) {
	.landing-hero__cta {
		flex-direction: row;
	}
}

.section-heading {
	max-width: 48rem;
	margin: 0 auto 2rem;
	text-align: center;
}

.section-heading--left {
	text-align: left;
	margin-left: 0;
	margin-right: 0;
}

.section-heading--light h2,
.section-heading--light p {
	color: #fff;
}

.section-heading h2 {
	margin: 0;
	font-family: 'Poppins', sans-serif;
	font-size: clamp(1.9rem, 4vw, 3.15rem);
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1.06;
}

.section-kicker {
	margin: 0 0 0.8rem;
	color: var(--primary);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.section-lead {
	max-width: 52rem;
	margin: 1rem auto 0;
	color: var(--muted);
	font-size: clamp(1rem, 1.7vw, 1.1rem);
	line-height: 1.7;
}

.section-heading--light .section-lead {
	color: #cbd5e1;
}

.stats-grid,
.cards-grid,
.tools-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 640px) {
	.stats-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cards-grid--3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.stats-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.cards-grid--3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.cards-grid--4 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.tools-grid {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}
}

.stat-card,
.audience-card,
.testimonial-card,
.roadmap-item,
.price-card,
.blog-card,
.tool-card,
.faq-item,
.audit-panel {
	border: 1px solid var(--line);
	border-radius: 1.2rem;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: var(--shadow);
}

.stat-card {
	position: relative;
	overflow: hidden;
	min-height: 11rem;
	padding: 1.3rem;
}

.stat-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 0.3rem;
	background: linear-gradient(90deg, rgba(124, 58, 237, 0.75), rgba(99, 102, 241, 0.75));
}

.stat-card--blue::before {
	background: linear-gradient(90deg, rgba(37, 99, 235, 0.75), rgba(34, 211, 238, 0.75));
}

.stat-card--pink::before {
	background: linear-gradient(90deg, rgba(236, 72, 153, 0.75), rgba(244, 63, 94, 0.75));
}

.stat-card--emerald::before {
	background: linear-gradient(90deg, rgba(5, 150, 105, 0.75), rgba(20, 184, 166, 0.75));
}

.stat-card__label {
	margin: 0 0 0.75rem;
	color: #6b7280;
	font-size: 0.86rem;
	font-weight: 600;
}

.stat-card__value {
	margin: 0 0 0.25rem;
	font-size: 1.7rem;
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1;
}

.stat-card__text {
	margin: 0;
	color: var(--muted);
	font-size: 0.92rem;
	line-height: 1.45;
}

.audience-card,
.testimonial-card,
.price-card,
.blog-card,
.tool-card,
.faq-item,
.audit-panel {
	padding: 1.5rem;
}

.audience-card {
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.audience-card:hover {
	transform: translateY(-0.2rem);
	border-color: rgba(124, 58, 237, 0.35);
	box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
}

.audience-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	margin-bottom: 1rem;
	border-radius: 9999px;
	background: rgba(124, 58, 237, 0.1);
	color: var(--primary);
	font-size: 1.2rem;
}

.audience-card h3,
.price-card h3 {
	margin: 0 0 0.5rem;
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.15;
}

.audience-card p,
.price-card p,
.blog-card p {
	margin: 0;
	color: var(--muted);
	line-height: 1.65;
}

.landing-section--dark .audience-card,
.landing-section--dark .testimonial-card {
	background: linear-gradient(180deg, rgba(2, 6, 23, 0.95) 0%, rgba(24, 18, 53, 0.98) 100%);
	border-color: rgba(255, 255, 255, 0.08);
	color: #e5e7eb;
}

.testimonial-card {
	background: linear-gradient(180deg, rgba(2, 6, 23, 0.95) 0%, rgba(24, 18, 53, 0.98) 100%);
	border-color: rgba(255, 255, 255, 0.08);
	color: #e5e7eb;
}

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

.testimonial-card p {
	color: #cbd5e1;
}

.testimonial-card__person {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	margin-top: 1.25rem;
}

.testimonial-card__avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-weight: 700;
}

.testimonial-card__name {
	color: #fff;
	font-weight: 600;
}

.testimonial-card__meta {
	color: #94a3b8;
	font-size: 0.875rem;
}

.roadmap-list {
	display: grid;
	gap: 1rem;
}

.roadmap-item {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
	align-items: start;
}

.roadmap-item__marker {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 9999px;
	background: #fff;
	border: 2px solid #d1d5db;
	color: var(--primary);
	font-weight: 700;
	box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.08);
}

.roadmap-item--done .roadmap-item__marker {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
	color: #fff;
	border-color: transparent;
}

.roadmap-item--current .roadmap-item__marker {
	background: #fff;
	border-color: var(--primary);
	color: var(--primary);
	box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.12);
}

.roadmap-item h3 {
	margin: 0 0 0.4rem;
	font-size: 1.03rem;
	font-weight: 800;
}

.roadmap-item p {
	margin: 0;
	color: var(--muted);
	line-height: 1.65;
}

.price-card__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.9rem;
}

.price-card__price {
	color: var(--primary);
	font-size: 1rem;
	font-weight: 800;
	text-align: right;
}

.price-card__list {
	margin: 1rem 0 0 1.1rem;
	padding: 0;
	color: var(--muted);
}

.price-card__list li + li {
	margin-top: 0.45rem;
}

.tool-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 8.25rem;
	gap: 0.8rem;
	text-align: center;
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.tool-card:hover {
	transform: translateY(-0.15rem);
	border-color: rgba(124, 58, 237, 0.28);
}

.tool-card img {
	width: 4.75rem;
	height: 4.75rem;
	object-fit: contain;
}

.tool-card span {
	font-weight: 700;
	color: var(--text);
}

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

@media (min-width: 768px) {
	.blog-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.blog-card {
	padding: 0;
	overflow: hidden;
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.blog-card:hover {
	transform: translateY(-0.15rem);
}

.blog-card__image img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.blog-card__body {
	padding: 1.2rem;
}

.blog-card__meta {
	margin-bottom: 0.35rem;
	color: #6b7280;
	font-size: 0.85rem;
}

.blog-card h3 {
	margin: 0 0 0.5rem;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
}

.blog-card h3 a {
	text-decoration: none;
}

.blog-card h3 a:hover {
	color: var(--primary);
}

.faq-list {
	display: grid;
	gap: 0.875rem;
}

.faq-item {
	padding: 0;
	overflow: hidden;
}

.faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.25rem;
	cursor: pointer;
	list-style: none;
	font-weight: 700;
	color: var(--text);
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "+";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 9999px;
	background: rgba(0, 0, 0, 0.04);
	color: rgba(17, 24, 39, 0.65);
	flex-shrink: 0;
}

.faq-item[open] summary::after {
	content: "Г—";
}

.faq-item__content {
	padding: 0 1.25rem 1.15rem;
}

.faq-item__content p {
	margin: 0;
	color: var(--muted);
	line-height: 1.65;
}

.audit-panel {
	background: linear-gradient(180deg, #ffffff 0%, #f8f7ff 100%);
}

.audit-panel h2 {
	margin: 0;
	max-width: 18ch;
	font-family: 'Poppins', sans-serif;
	font-size: clamp(1.9rem, 4vw, 3.15rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.06;
}

.audit-panel .section-lead {
	margin-left: 0;
	margin-right: 0;
}

.site-footer {
	position: relative;
	overflow: hidden;
	padding-top: 3rem;
	padding-bottom: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background: linear-gradient(135deg, var(--dark-0) 0%, var(--dark-1) 52%, var(--dark-2) 100%);
	color: #e5e7eb;
}

.site-footer::before,
.site-footer::after {
	content: "";
	position: absolute;
	border-radius: 9999px;
	pointer-events: none;
	filter: blur(120px);
}

.site-footer::before {
	left: -8rem;
	top: -5rem;
	width: 20rem;
	height: 20rem;
	background: rgba(147, 51, 234, 0.18);
}

.site-footer::after {
	right: -6rem;
	top: 6rem;
	width: 24rem;
	height: 24rem;
	background: rgba(99, 102, 241, 0.16);
}

.site-footer__grid {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 2.5rem;
}

@media (min-width: 1024px) {
	.site-footer__grid {
		grid-template-columns: 1.4fr 1fr 1fr;
	}
}

.site-footer__brand,
.site-footer__nav,
.site-footer__services {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.site-footer__brand .site-brand__name,
.site-footer__nav h2,
.site-footer__services h2,
.site-footer__bottom p,
.site-footer__bottom a {
	color: #fff;
}

.site-footer__text,
.site-footer__nav a,
.site-footer__services li,
.site-footer__bottom p {
	color: #cbd5e1;
}

.site-footer__nav ul,
.site-footer__services ul {
	margin: 0;
	padding-left: 1.1rem;
}

.site-footer__nav li + li,
.site-footer__services li + li {
	margin-top: 0.45rem;
}

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 2rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .btn--primary {
	align-self: flex-start;
}

body.audit-modal-open {
	overflow: hidden;
}

.audit-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: grid;
	place-items: center;
	padding: 1.25rem;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.22s ease;
}

.audit-modal[hidden] {
	display: none !important;
}

body.audit-modal-open .audit-modal {
	opacity: 1;
	pointer-events: auto;
}

.audit-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.55);
	backdrop-filter: blur(8px);
}

.audit-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 38rem);
	max-height: calc(100vh - 2.5rem);
	overflow: hidden;
	border: 1px solid rgba(209, 213, 219, 0.65);
	border-radius: 1.5rem;
	background: #fff;
	box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
}

.audit-modal__inner {
	position: relative;
	padding: 3.25rem 2rem 2.25rem;
}

.audit-modal__close {
	position: absolute;
	top: 0.9rem;
	right: 0.9rem;
	left: auto;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 9999px;
	border: 0;
	padding: 0;
	background: #fff;
	color: #111827;
	font-size: 2.2rem;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(15, 23, 42, 0.16);
}

.audit-modal__form .wpcf7 {
	width: 100%;
}

.audit-modal__form .wpcf7 form {
	margin: 0;
}

.audit-cf7-card {
	width: 100%;
	max-width: 30rem;
	margin: 0 auto;
	text-align: center;
}

.audit-cf7-title {
	margin: 0;
	color: #111827;
	font-size: clamp(2rem, 4.2vw, 3.25rem);
	font-weight: 500;
	letter-spacing: -0.04em;
	line-height: 1.05;
}

.audit-cf7-subtitle {
	margin: 0.8rem 0 0;
	color: #64748b;
	font-size: 1.05rem;
	line-height: 1.55;
}

.audit-cf7-block {
	width: 100%;
	margin-top: 1rem;
}

.audit-cf7-field {
	display: flex;
	align-items: center;
	width: 100%;
	height: 3.75rem;
	border: 1px solid rgba(209, 213, 219, 0.8);
	border-radius: 9999px;
	background: #fff;
	overflow: hidden;
	padding: 0 1.4rem 0 1.45rem;
	box-sizing: border-box;
}

.audit-cf7-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 1.4rem;
	height: 1.4rem;
	margin-right: 0.75rem;
	color: #6b7280;
}

.audit-cf7-control {
	flex: 1 1 auto;
	height: 100%;
	display: flex;
	align-items: center;
}

.audit-cf7-control .wpcf7-form-control-wrap {
	display: flex;
	align-items: center;
	height: 100%;
	width: 100%;
}

.audit-cf7-input {
	display: block;
	width: 100%;
	height: auto;
	border: 0 !important;
	outline: none;
	background: transparent !important;
	padding: 0;
	line-height: 1.2;
	color: #4b5563;
	font: inherit;
	box-shadow: none !important;
	text-align: left;
}

.audit-cf7-input::placeholder {
	color: #6b7280;
	opacity: 1;
}

.audit-cf7-input:focus {
	box-shadow: none !important;
}

.audit-cf7-link {
	margin-top: 1rem;
	text-align: left;
}

.audit-cf7-link a {
	color: #4f46e5;
	font-size: 1rem;
	text-decoration: none;
}

.audit-cf7-link a:hover {
	text-decoration: underline;
}

.audit-cf7-comment {
	margin-top: 1rem;
}

.audit-cf7-comment .audit-cf7-field {
	margin-top: 0;
}

.audit-cf7-comment input,
.audit-cf7-comment .audit-cf7-input {
	display: block;
	width: 100%;
	height: 3.75rem;
	border: 1px solid rgba(209, 213, 219, 0.8);
	border-radius: 9999px;
	background: #fff;
	padding: 0 1.4rem;
	color: #4b5563;
	font: inherit;
	box-sizing: border-box;
}

.audit-cf7-comment .audit-cf7-field {
	display: flex;
	align-items: center;
	width: 100%;
	height: 3.75rem;
	border: 1px solid rgba(209, 213, 219, 0.8);
	border-radius: 9999px;
	background: #fff;
	overflow: hidden;
	padding: 0 1.4rem 0 1.45rem;
	box-sizing: border-box;
}

.audit-cf7-comment .audit-cf7-field .audit-cf7-control {
	display: flex;
	align-items: center;
	height: 100%;
	min-width: 0;
}

.audit-cf7-comment .audit-cf7-field .audit-cf7-icon {
	margin-right: 0.5rem;
}

.audit-cf7-comment .audit-cf7-field .audit-cf7-input {
	padding-top: 0;
	padding-bottom: 0;
	line-height: 3.75rem;
	padding-left: 0;
}

.audit-cf7-comment input::placeholder,
.audit-cf7-comment .audit-cf7-input::placeholder {
	color: #6b7280;
}

.audit-cf7-consent {
	margin-top: 1rem;
	text-align: left;
}

.audit-cf7-consent .wpcf7-list-item {
	margin: 0;
}

.audit-cf7-consent label {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	color: #475467;
	font-size: 0.92rem;
	line-height: 1.4;
	cursor: pointer;
}

.audit-cf7-consent input[type="checkbox"] {
	flex: 0 0 auto;
	margin-top: 0.2rem;
	accent-color: #635bff;
}

.audit-cf7-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 3.5rem;
	margin-top: 1rem;
	border: 0;
	border-radius: 9999px;
	background: #7c3aed;
	color: #fff;
	font-size: 1.1rem;
	font-weight: 500;
	cursor: pointer;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.audit-cf7-button:hover {
	opacity: 0.92;
	transform: translateY(-1px);
}

.audit-cf7-footer {
	margin: 1rem 0 0;
	color: #6b7280;
	font-size: 0.875rem;
	line-height: 1.5;
	text-align: center;
}

.audit-modal__form .wpcf7-not-valid-tip {
	margin-top: 0.35rem;
	font-size: 0.75rem;
	text-align: left;
}

.audit-modal__form .wpcf7-response-output {
	margin: 1rem 0 0;
	border-radius: 0.75rem;
	padding: 0.75rem 1rem;
	text-align: left;
}

@media (max-width: 767px) {
	.site-header__actions {
		display: none;
	}

	.landing-hero__shell {
		padding-top: 4.5rem;
		padding-bottom: 5rem;
	}

	.landing-hero__title {
		max-width: 14ch;
	}

	.section-heading {
		margin-bottom: 1.5rem;
	}

	.stat-card,
	.audience-card,
	.testimonial-card,
	.roadmap-item,
	.price-card,
	.blog-card,
	.tool-card,
	.faq-item,
	.audit-panel {
		padding: 1.25rem;
	}

	.audit-modal__inner {
		padding: 1.5rem 1.25rem 1.25rem;
	}

}


