﻿:root {
	--w4w-bg: #10100f;
	--w4w-bg-soft: #1a1917;
	--w4w-surface: #faf9f6;
	--w4w-surface-alt: #f3f1ec;
	--w4w-text: #1c1b19;
	--w4w-text-muted: #6f6c66;
	--w4w-text-light: #eceae4;
	--w4w-accent: #3f5d48;
	--w4w-accent-hover: #2f4836;
	--w4w-accent-soft: #e6efe8;
	--w4w-border: #ddd9d0;
	--w4w-radius: 4px;
	--w4w-radius-lg: 8px;
	--w4w-header-h: 76px;
	--w4w-font: "Manrope", system-ui, sans-serif;
	--w4w-font-display: "Fraunces", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }

body {
	margin: 0;
	font-family: var(--w4w-font);
	font-size: 1rem;
	color: var(--w4w-text);
	line-height: 1.65;
	background: var(--w4w-surface);
	-webkit-font-smoothing: antialiased;
}

body.w4w-nav-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, .w4w-hero__title, .w4w-page-hero__title {
	font-family: var(--w4w-font-display);
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.15;
}

.w4w-container {
	width: min(1140px, calc(100% - 2.5rem));
	margin-inline: auto;
}

.w4w-container--narrow { width: min(720px, calc(100% - 2.5rem)); }

.w4w-main { padding-top: var(--w4w-header-h); }

.w4w-front { padding-top: 0; }

.w4w-main:has(> .w4w-page-hero:first-child) { padding-top: 0; }

.w4w-front .w4w-hero {
	padding-top: calc(5rem + var(--w4w-header-h));
}

/* Header */
.w4w-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1000;
	background: #10100f;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.w4w-header.is-scrolled {
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
	border-color: rgba(255, 255, 255, 0.12);
}

.w4w-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--w4w-header-h);
	gap: 1.5rem;
}

.w4w-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	color: #fff;
	font-weight: 600;
	font-size: 1rem;
	letter-spacing: -0.01em;
	text-transform: none;
	flex-shrink: 0;
}

.w4w-logo:hover { color: #fff; opacity: 0.88; }

.w4w-logo__mark {
	width: 2.25rem;
	height: 2.25rem;
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.04);
	display: grid;
	place-items: center;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0;
}

.w4w-nav {
	display: flex;
	align-items: center;
	gap: 1.75rem;
	margin-left: auto;
}

.w4w-lang {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.w4w-lang__item a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.25rem;
	padding: 0.35rem 0.55rem;
	border-radius: 999px;
	font-family: var(--w4w-font-mono);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.18);
	text-decoration: none;
	transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.w4w-lang__item a:hover,
.w4w-lang__item.is-active a {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.45);
	background: rgba(255, 255, 255, 0.08);
}

.w4w-nav__list,
.w4w-nav .menu {
	display: flex;
	align-items: center;
	gap: 1.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.w4w-nav__list li,
.w4w-nav .menu li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.w4w-nav__list a,
.w4w-nav .menu a {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.01em;
	transition: color 0.2s;
	white-space: nowrap;
}

.w4w-nav__list a:hover,
.w4w-nav .menu a:hover,
.w4w-nav__list .current-menu-item > a,
.w4w-nav .menu .current-menu-item > a { color: #fff; }

.w4w-header__cta {
	flex-shrink: 0;
	padding: 0.65rem 1.15rem;
	font-size: 0.8125rem;
}

.w4w-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.w4w-burger span {
	display: block;
	width: 22px;
	height: 1.5px;
	margin-inline: auto;
	background: #fff;
	transition: transform 0.2s, opacity 0.2s;
}

.w4w-burger.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.w4w-burger.is-active span:nth-child(2) { opacity: 0; }
.w4w-burger.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Buttons */
.w4w-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.8rem 1.5rem;
	font-family: var(--w4w-font);
	font-weight: 600;
	font-size: 0.875rem;
	letter-spacing: 0.02em;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.w4w-btn--primary {
	background: var(--w4w-accent);
	color: #fff !important;
	border-color: var(--w4w-accent);
}

.w4w-btn--primary:hover {
	background: var(--w4w-accent-hover);
	border-color: var(--w4w-accent-hover);
}

.w4w-btn--outline {
	background: transparent;
	border-color: var(--w4w-border);
	color: var(--w4w-text) !important;
}

.w4w-btn--outline:hover { border-color: var(--w4w-text); }

.w4w-btn--ghost {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.28);
	color: #fff !important;
}

.w4w-btn--ghost:hover { border-color: rgba(255, 255, 255, 0.55); background: rgba(255, 255, 255, 0.04); }

.w4w-btn--lg { padding: 0.95rem 1.75rem; }
.w4w-btn--block { width: 100%; }

/* Hero */
.w4w-hero {
	background: var(--w4w-bg);
	color: var(--w4w-text-light);
	padding: 5rem 0 4.5rem;
	position: relative;
	overflow: hidden;
}

.w4w-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 20%, transparent 75%);
	pointer-events: none;
}

.w4w-hero__ambient {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 0;
}

.w4w-hero__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(72px);
	opacity: 0.55;
	will-change: transform;
}

.w4w-hero__orb--1 {
	width: min(42vw, 420px);
	height: min(42vw, 420px);
	top: -12%;
	left: -8%;
	background: radial-gradient(circle, rgba(63, 93, 72, 0.55) 0%, transparent 70%);
	animation: w4w-orb-drift-1 18s ease-in-out infinite;
}

.w4w-hero__orb--2 {
	width: min(36vw, 360px);
	height: min(36vw, 360px);
	top: 18%;
	right: -6%;
	background: radial-gradient(circle, rgba(196, 168, 130, 0.22) 0%, transparent 70%);
	animation: w4w-orb-drift-2 22s ease-in-out infinite;
}

.w4w-hero__orb--3 {
	width: min(28vw, 280px);
	height: min(28vw, 280px);
	bottom: -8%;
	left: 38%;
	background: radial-gradient(circle, rgba(63, 93, 72, 0.35) 0%, transparent 70%);
	animation: w4w-orb-drift-3 16s ease-in-out infinite;
}

@keyframes w4w-orb-drift-1 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(6%, 8%) scale(1.08); }
}

@keyframes w4w-orb-drift-2 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(-8%, 6%) scale(1.05); }
}

@keyframes w4w-orb-drift-3 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(5%, -7%) scale(1.1); }
}

.w4w-hero__content > * {
	animation: w4w-rise-in 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.w4w-hero__content > *:nth-child(1) { animation-delay: 0.08s; }
.w4w-hero__content > *:nth-child(2) { animation-delay: 0.18s; }
.w4w-hero__content > *:nth-child(3) { animation-delay: 0.28s; }
.w4w-hero__content > *:nth-child(4) { animation-delay: 0.38s; }
.w4w-hero__content > *:nth-child(5) { animation-delay: 0.5s; }

.w4w-hero__visual {
	animation: w4w-rise-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
	perspective: 1200px;
}

.w4w-hero__visual-stack {
	transform-style: preserve-3d;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

@keyframes w4w-rise-in {
	from {
		opacity: 0;
		transform: translateY(32px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.w4w-hero__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 3.5rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

.w4w-eyebrow {
	margin: 0 0 1.25rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
}

.w4w-hero__title {
	font-size: clamp(2.25rem, 4.5vw, 3.35rem);
	margin: 0 0 1.25rem;
	max-width: 16em;
}

.w4w-hero__lead {
	margin: 0;
	max-width: 38rem;
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.62);
	line-height: 1.7;
}

.w4w-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 2rem 0 2.5rem;
}

.w4w-hero__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	list-style: none;
	padding: 0;
	margin: 0;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.w4w-hero__stats li {
	padding: 1rem 1.15rem;
	background: var(--w4w-bg);
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.5);
}

.w4w-hero__stats strong {
	display: block;
	margin-bottom: 0.2rem;
	font-family: var(--w4w-font-display);
	font-size: 1.5rem;
	font-weight: 500;
	color: #fff;
}

/* Hero visual: code + mockup */
.w4w-hero__visual-stack {
	position: relative;
	min-height: 340px;
}

.w4w-code {
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: #0a0a09;
	overflow: hidden;
}

.w4w-code__head {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.65rem 0.85rem;
	background: rgba(255, 255, 255, 0.03);
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.w4w-code__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
}

.w4w-code__dot:nth-child(1) { background: #5c4a3a; }
.w4w-code__dot:nth-child(2) { background: #4a5240; }
.w4w-code__dot:nth-child(3) { background: #3f5d48; }

.w4w-code__file {
	margin-left: auto;
	font-family: "JetBrains Mono", monospace;
	font-size: 0.68rem;
	color: rgba(255, 255, 255, 0.35);
}

.w4w-code__body {
	margin: 0;
	padding: 1.15rem 1rem 1.25rem;
	min-height: 280px;
	max-height: 280px;
	overflow: hidden;
	font-family: "JetBrains Mono", monospace;
	font-size: 0.72rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.72);
	white-space: pre-wrap;
	word-break: break-word;
}

.w4w-code__output { display: inline; }

.w4w-code__cursor {
	display: inline-block;
	width: 7px;
	height: 1.05em;
	margin-left: 1px;
	vertical-align: text-bottom;
	background: var(--w4w-accent-soft);
	animation: w4w-blink 1s step-end infinite;
}

@keyframes w4w-blink {
	50% { opacity: 0; }
}

.w4w-code .tok-tag { color: #8fb89a; }
.w4w-code .tok-attr { color: #a8b4c4; }
.w4w-code .tok-str { color: #c4a882; }
.w4w-code .tok-punct { color: rgba(255, 255, 255, 0.35); }

.w4w-mockup {
	position: absolute;
	right: -0.5rem;
	bottom: -1rem;
	width: min(58%, 300px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: var(--w4w-bg-soft);
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
	z-index: 2;
}

.w4w-mockup__chrome {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.55rem 0.75rem;
	background: rgba(255, 255, 255, 0.04);
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.w4w-mockup__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.14);
}

.w4w-mockup__url {
	margin-left: 0.35rem;
	flex: 1;
	padding: 0.2rem 0.5rem;
	font-family: "JetBrains Mono", monospace;
	font-size: 0.62rem;
	color: rgba(255, 255, 255, 0.35);
	background: rgba(0, 0, 0, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.06);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.w4w-mockup__body {
	background: #0d0d0c;
	padding: 1.25rem;
	min-height: 200px;
}

.w4w-mockup__line,
.w4w-mockup__blocks,
.w4w-mockup__cta {
	opacity: 0;
	transform: translateY(6px);
	transition: opacity 0.45s ease, transform 0.45s ease;
}

.w4w-mockup__line.is-built,
.w4w-mockup__blocks.is-built,
.w4w-mockup__cta.is-built {
	opacity: 1;
	transform: translateY(0);
}

.w4w-mockup__line {
	height: 8px;
	background: rgba(255, 255, 255, 0.08);
	margin-bottom: 0.85rem;
}

.w4w-mockup__line--short { width: 48%; }

.w4w-mockup__blocks {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.65rem;
	margin-top: 1.25rem;
}

.w4w-mockup__blocks span {
	height: 56px;
	background: rgba(63, 93, 72, 0.2);
	border: 1px solid rgba(63, 93, 72, 0.35);
	opacity: 0;
	transform: scale(0.92);
	transition: opacity 0.35s ease, transform 0.35s ease;
}

.w4w-mockup__blocks.is-built span:nth-child(1) { opacity: 1; transform: scale(1); transition-delay: 0.05s; }
.w4w-mockup__blocks.is-built span:nth-child(2) { opacity: 1; transform: scale(1); transition-delay: 0.15s; }
.w4w-mockup__blocks.is-built span:nth-child(3) { opacity: 1; transform: scale(1); transition-delay: 0.25s; }

.w4w-mockup__cta {
	margin-top: 1.25rem;
	height: 36px;
	width: 45%;
	background: var(--w4w-accent);
}

/* Trust bar */
.w4w-trust {
	padding: 0;
	background: var(--w4w-surface);
	border-bottom: 1px solid var(--w4w-border);
}

.w4w-trust__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.w4w-trust__item {
	padding: 2rem 1.5rem;
	border-right: 1px solid var(--w4w-border);
}

.w4w-trust__item:last-child { border-right: 0; }

.w4w-trust__mark {
	display: block;
	margin-bottom: 0.85rem;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--w4w-accent);
}

.w4w-trust__item h3 {
	margin: 0 0 0.4rem;
	font-family: var(--w4w-font);
	font-size: 0.95rem;
	font-weight: 600;
}

.w4w-trust__item p {
	margin: 0;
	font-size: 0.875rem;
	color: var(--w4w-text-muted);
	line-height: 1.55;
}

/* Sections */
.w4w-section { padding: 5rem 0; }
.w4w-section--muted { background: var(--w4w-surface-alt); }
.w4w-section--dark { background: var(--w4w-bg); color: var(--w4w-text-light); }

.w4w-section__head { max-width: 560px; margin-bottom: 3rem; }

.w4w-section__head h2 {
	margin: 0 0 0.75rem;
	font-size: clamp(1.75rem, 3vw, 2.35rem);
}

.w4w-section__head p {
	margin: 0;
	color: var(--w4w-text-muted);
	font-size: 1rem;
}

.w4w-section--dark .w4w-section__head p,
.w4w-section__head--light p { color: rgba(255, 255, 255, 0.55); }

.w4w-section__head--light { color: #fff; }

.w4w-section__title-center {
	text-align: center;
	margin: 0 0 2.5rem;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.w4w-contact-sidebar__note {
	margin: 1.5rem 0 0;
	font-size: 0.875rem;
	color: var(--w4w-text-muted);
	line-height: 1.6;
}

.w4w-price-card__features { list-style: none; padding: 0; margin: 0 0 1.75rem; flex: 1; }

/* Index / numbers */
.w4w-index,
.w4w-card__num,
.w4w-service-detail__num {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--w4w-accent);
	margin-bottom: 1rem;
}

.w4w-section--dark .w4w-index,
.w4w-section--dark .w4w-card__num { color: rgba(255, 255, 255, 0.4); }

/* Cards */
.w4w-cards { display: grid; gap: 1px; background: var(--w4w-border); border: 1px solid var(--w4w-border); }
.w4w-cards--3 { grid-template-columns: repeat(3, 1fr); }
.w4w-cards--2 { grid-template-columns: repeat(2, 1fr); }

.w4w-card {
	background: var(--w4w-surface);
	padding: 1.75rem;
}

.w4w-card--link {
	display: block;
	position: relative;
	overflow: hidden;
	transition: background 0.25s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.w4w-card--link::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent 30%, rgba(63, 93, 72, 0.08) 50%, transparent 70%);
	transform: translateX(-120%);
	transition: transform 0.65s ease;
	pointer-events: none;
}

.w4w-card--link:hover {
	background: #fff;
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(28, 27, 25, 0.08);
}

.w4w-card--link:hover::after { transform: translateX(120%); }

.w4w-card h3 {
	margin: 0 0 0.65rem;
	font-family: var(--w4w-font);
	font-size: 1.05rem;
	font-weight: 600;
}

.w4w-card p {
	margin: 0;
	font-size: 0.9rem;
	color: var(--w4w-text-muted);
	line-height: 1.6;
}

.w4w-card__more {
	display: inline-block;
	margin-top: 1.25rem;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--w4w-accent);
}

.w4w-card--dark {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.07);
}

.w4w-section--dark .w4w-cards {
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(255, 255, 255, 0.07);
}

.w4w-section--dark .w4w-card--dark { background: var(--w4w-bg-soft); }

.w4w-card--dark h3 { color: #fff; }
.w4w-card--dark p { color: rgba(255, 255, 255, 0.55); }

/* Process */
.w4w-process {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	counter-reset: step;
	position: relative;
	--w4w-process-gap: 2rem;
	--w4w-process-dot: 14px;
}

.w4w-process::before {
	content: "";
	position: absolute;
	top: calc(0.85rem + var(--w4w-process-dot) / 2 - 0.5px);
	left: calc(var(--w4w-process-dot) / 2);
	width: calc(3 * ((100% - 3 * var(--w4w-process-gap)) / 4 + var(--w4w-process-gap)));
	height: 1px;
	background: linear-gradient(90deg, var(--w4w-accent), var(--w4w-accent));
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.w4w-process.is-line-drawn::before { transform: scaleX(1); }

.w4w-process__step {
	position: relative;
	padding-top: 2rem;
}

.w4w-process__step::before {
	content: "";
	position: absolute;
	top: 0.85rem;
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--w4w-surface);
	border: 2px solid var(--w4w-accent);
	box-shadow: 0 0 0 6px var(--w4w-surface);
	box-sizing: border-box;
	transform: scale(0);
	transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.w4w-process__step.is-visible::before { transform: scale(1); }

.w4w-process__num {
	display: none;
}

.w4w-process__step h3 {
	margin: 0 0 0.5rem;
	font-family: var(--w4w-font);
	font-size: 1rem;
	font-weight: 600;
}

.w4w-process__step p {
	margin: 0;
	font-size: 0.875rem;
	color: var(--w4w-text-muted);
}

/* Pricing */
.w4w-pricing {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--w4w-border);
	border: 1px solid var(--w4w-border);
	align-items: stretch;
}

.w4w-price-card {
	background: var(--w4w-surface);
	padding: 2rem 1.75rem;
	display: flex;
	flex-direction: column;
	position: relative;
}

.w4w-price-card--featured {
	background: var(--w4w-bg);
	color: var(--w4w-text-light);
}

.w4w-price-card__badge {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--w4w-accent-soft);
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 0.25rem 0.5rem;
}

.w4w-price-card h2,
.w4w-price-card h3 {
	margin: 0 0 0.35rem;
	font-family: var(--w4w-font-display);
	font-size: 1.35rem;
}

.w4w-price-card__num {
	display: block;
	margin-bottom: 0.85rem;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--w4w-accent);
}

.w4w-price-card--featured .w4w-price-card__num { color: var(--w4w-accent-soft); }

.w4w-price-card__title {
	margin: 0 0 0.65rem;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--w4w-text);
	line-height: 1.4;
}

.w4w-price-card--featured .w4w-price-card__title { color: #fff; }

.w4w-price-card__desc {
	margin: 0 0 1.25rem;
	font-size: 0.875rem;
	color: var(--w4w-text-muted);
	line-height: 1.6;
}

.w4w-price-card--featured .w4w-price-card__desc { color: rgba(255, 255, 255, 0.55); }

.w4w-price-card__price {
	margin: 0 0 1.5rem;
	font-family: var(--w4w-font-display);
	font-size: 2.25rem;
	font-weight: 500;
	line-height: 1;
}

.w4w-price-card__price span {
	font-family: var(--w4w-font);
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--w4w-text-muted);
}

.w4w-price-card--featured .w4w-price-card__price span { color: rgba(255, 255, 255, 0.45); }

.w4w-price-card ul {
	list-style: none;
	padding: 0;
	margin: 0 0 1.75rem;
	flex: 1;
}

.w4w-price-card li {
	position: relative;
	padding: 0.4rem 0 0.4rem 1.1rem;
	font-size: 0.875rem;
	color: var(--w4w-text-muted);
	line-height: 1.5;
}

.w4w-price-card li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.75rem;
	width: 5px;
	height: 5px;
	background: var(--w4w-accent);
	border-radius: 50%;
}

.w4w-price-card--featured li { color: rgba(255, 255, 255, 0.55); }
.w4w-price-card--featured li::before { background: var(--w4w-accent-soft); }

.w4w-price-card--featured .w4w-btn--outline {
	border-color: rgba(255, 255, 255, 0.25);
	color: #fff !important;
}

/* FAQ */
.w4w-faq { border-top: 1px solid var(--w4w-border); }

.w4w-faq__item { border-bottom: 1px solid var(--w4w-border); }

.w4w-faq__question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.5rem;
	padding: 1.25rem 0;
	border: 0;
	background: none;
	font: inherit;
	font-size: 0.95rem;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	color: var(--w4w-text);
}

.w4w-faq__icon {
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	position: relative;
}

.w4w-faq__icon::before,
.w4w-faq__icon::after {
	content: "";
	position: absolute;
	background: var(--w4w-text);
	transition: transform 0.2s;
}

.w4w-faq__icon::before {
	width: 100%;
	height: 1.5px;
	top: 50%;
	transform: translateY(-50%);
}

.w4w-faq__icon::after {
	width: 1.5px;
	height: 100%;
	left: 50%;
	transform: translateX(-50%);
}

.w4w-faq__item.is-open .w4w-faq__icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.w4w-faq__answer {
	padding: 0 0 1.25rem;
	color: var(--w4w-text-muted);
	font-size: 0.9rem;
	line-height: 1.65;
}

.w4w-faq__answer[hidden] { display: none; }

/* CTA */
.w4w-cta-band {
	background: var(--w4w-accent);
	color: #fff;
	padding: 3.5rem 0;
}

.w4w-cta-band__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.w4w-cta-band h2 {
	margin: 0 0 0.5rem;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	color: #fff;
}

.w4w-cta-band p {
	margin: 0;
	max-width: 32rem;
	font-size: 0.95rem;
	opacity: 0.85;
	line-height: 1.6;
}

.w4w-cta-band .w4w-btn--primary {
	background: #fff;
	color: var(--w4w-accent) !important;
	border-color: #fff;
}

.w4w-cta-band .w4w-btn--primary:hover { background: var(--w4w-surface); }

/* Page hero */
.w4w-page-hero {
	background: var(--w4w-bg);
	color: var(--w4w-text-light);
	padding: calc(4rem + var(--w4w-header-h)) 0 3rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.w4w-page-hero__title {
	margin: 0;
	font-size: clamp(2rem, 3.5vw, 2.75rem);
}

.w4w-page-hero__lead {
	margin: 1rem 0 0;
	max-width: 36rem;
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.65;
}

/* Services detail */
.w4w-service-detail { display: grid; gap: 1px; background: var(--w4w-border); border: 1px solid var(--w4w-border); }

.w4w-service-detail__item {
	display: grid;
	grid-template-columns: 4rem 1fr;
	gap: 1.5rem;
	padding: 2rem;
	background: var(--w4w-surface);
}

.w4w-service-detail__num { margin: 0; padding-top: 0.25rem; }

.w4w-service-detail__item h2 {
	margin: 0 0 0.5rem;
	font-family: var(--w4w-font);
	font-size: 1.15rem;
	font-weight: 600;
}

.w4w-service-detail__benefit {
	margin-top: 0.85rem;
	font-size: 0.875rem;
	color: var(--w4w-text-muted);
}

.w4w-service-detail__benefit strong { color: var(--w4w-text); font-weight: 600; }

/* About */
.w4w-about-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 4rem;
	align-items: start;
}

.w4w-about-story h2 {
	margin: 0 0 1.25rem;
	font-size: 1.5rem;
}

.w4w-about-story p {
	margin: 0 0 1rem;
	color: var(--w4w-text-muted);
	line-height: 1.7;
}

.w4w-about-aside h3 {
	margin: 0 0 1rem;
	font-family: var(--w4w-font);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--w4w-text-muted);
}

.w4w-tags {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.w4w-tags li {
	padding: 0.4rem 0.75rem;
	font-size: 0.8rem;
	font-weight: 500;
	border: 1px solid var(--w4w-border);
	background: var(--w4w-surface);
}

.w4w-included-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	background: var(--w4w-border);
	border: 1px solid var(--w4w-border);
}

.w4w-included-grid__item {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	padding: 1.75rem 1.35rem;
	background: var(--w4w-surface);
}

.w4w-included-grid__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 1.75rem;
	width: 1.75rem;
	height: 1.75rem;
	margin-top: 0.1rem;
	border-radius: 50%;
	background: var(--w4w-accent-soft);
	color: var(--w4w-accent);
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1;
}

.w4w-included-grid__text {
	font-size: 0.9rem;
	color: var(--w4w-text-muted);
	line-height: 1.55;
}

.w4w-section--included .w4w-section__title-center {
	margin-bottom: 2rem;
}

.w4w-stats-bar {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: var(--w4w-border);
	border: 1px solid var(--w4w-border);
	text-align: center;
}

.w4w-stats-bar > div {
	padding: 1.5rem;
	background: var(--w4w-surface);
}

.w4w-stats-bar strong {
	display: block;
	font-family: var(--w4w-font-display);
	font-size: 1.75rem;
	font-weight: 500;
	color: var(--w4w-text);
	margin-bottom: 0.25rem;
}

.w4w-stats-bar span { font-size: 0.8rem; color: var(--w4w-text-muted); }

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

.w4w-form__row { margin-bottom: 1.25rem; }

.w4w-form label {
	display: block;
	margin-bottom: 0.4rem;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--w4w-text-muted);
}

.w4w-form input,
.w4w-form select,
.w4w-form textarea {
	width: 100%;
	padding: 0.85rem 1rem;
	font: inherit;
	font-size: 0.95rem;
	border: 1px solid var(--w4w-border);
	background: #fff;
	color: var(--w4w-text);
	transition: border-color 0.2s;
}

.w4w-form input:focus,
.w4w-form select:focus,
.w4w-form textarea:focus {
	outline: none;
	border-color: var(--w4w-accent);
}

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

.w4w-form__hint {
	margin: 0.35rem 0 0;
	font-size: 0.8rem;
	line-height: 1.45;
	color: var(--w4w-text-muted);
}

.w4w-form__row--checkbox {
	margin-bottom: 1.5rem;
}

.w4w-form__checkbox {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	font-size: 0.85rem;
	font-weight: 400;
	line-height: 1.5;
	text-transform: none;
	letter-spacing: normal;
	color: var(--w4w-text-muted);
	cursor: pointer;
}

.w4w-form__checkbox input {
	width: 1rem;
	height: 1rem;
	margin: 0.15rem 0 0;
	flex-shrink: 0;
	accent-color: var(--w4w-accent);
	cursor: pointer;
}

.w4w-form__checkbox a {
	color: var(--w4w-accent);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.w4w-form__checkbox a:hover {
	color: var(--w4w-accent-hover);
}

.w4w-form input.is-invalid {
	border-color: #b54a4a;
}

.w4w-legal h2 {
	margin: 2rem 0 0.75rem;
	font-family: var(--w4w-font);
	font-size: 1.1rem;
	font-weight: 600;
}

.w4w-legal h2:first-of-type {
	margin-top: 0;
}

.w4w-legal p,
.w4w-legal li {
	color: var(--w4w-text-muted);
}

.w4w-legal ul {
	margin: 0 0 1rem;
	padding-left: 1.25rem;
}

.w4w-legal a {
	color: var(--w4w-accent);
}

.w4w-legal__updated {
	margin-top: 2.5rem;
	font-size: 0.85rem;
	color: var(--w4w-text-muted);
}

.w4w-contact-sidebar {
	padding: 2rem;
	background: var(--w4w-surface-alt);
	border: 1px solid var(--w4w-border);
}

.w4w-contact-sidebar h3 {
	margin: 0 0 1.25rem;
	font-family: var(--w4w-font);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--w4w-text-muted);
}

.w4w-contact-sidebar__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.w4w-contact-sidebar__list li {
	margin-bottom: 1.25rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid var(--w4w-border);
}

.w4w-contact-sidebar__list li:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }

.w4w-contact-sidebar__list strong {
	display: block;
	margin-bottom: 0.25rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--w4w-text-muted);
}

.w4w-contact-sidebar__list a { color: var(--w4w-text); }
.w4w-contact-sidebar__list a:hover { color: var(--w4w-accent); }

.w4w-notice {
	padding: 1rem 1.15rem;
	margin-bottom: 1.5rem;
	font-size: 0.9rem;
	border: 1px solid;
}

.w4w-notice--success { background: var(--w4w-accent-soft); border-color: var(--w4w-accent); color: var(--w4w-accent-hover); }
.w4w-notice--error { background: #fef2f2; border-color: #fecaca; color: #991b1b; }

/* Footer */
.w4w-footer {
	background: var(--w4w-bg);
	color: var(--w4w-text-light);
	padding-top: 4rem;
}

.w4w-footer__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 2.5rem;
	padding-bottom: 3rem;
}

.w4w-logo--footer { margin-bottom: 1rem; }

.w4w-footer__heading {
	margin: 0 0 1rem;
	font-family: var(--w4w-font);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
}

.w4w-footer__tagline {
	margin: 0;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.65;
	max-width: 26rem;
}

.w4w-footer__links { list-style: none; padding: 0; margin: 0; }

.w4w-footer__links a {
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.875rem;
	transition: color 0.2s;
}

.w4w-footer__links a:hover { color: #fff; }
.w4w-footer__links li { margin-bottom: 0.5rem; }

.w4w-footer__contact { list-style: none; padding: 0; margin: 0; }

.w4w-footer__contact a {
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.875rem;
}

.w4w-footer__contact li { margin-bottom: 0.5rem; }

.w4w-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	padding: 1.25rem 0;
}

.w4w-footer__bottom-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem 1.5rem;
	color: rgba(255, 255, 255, 0.35);
	font-size: 0.8rem;
}

.w4w-footer__bottom-inner p {
	margin: 0;
}

.w4w-footer__legal {
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.8rem;
	transition: color 0.2s;
}

.w4w-footer__legal:hover {
	color: rgba(255, 255, 255, 0.75);
}

/* Scroll reveal — лише дочірні елементи, контейнер не ховаємо */
[data-w4w-reveal-child] {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-w4w-reveal-child].is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Typewriter subtitle */
[data-w4w-typewriter] {
	min-height: 1.65em;
}

.w4w-typewriter__cursor {
	display: inline-block;
	width: 2px;
	height: 0.92em;
	margin-left: 2px;
	vertical-align: text-bottom;
	background: var(--w4w-accent);
	animation: w4w-blink 0.85s step-end infinite;
}

.w4w-section--dark .w4w-typewriter__cursor,
.w4w-cta-band .w4w-typewriter__cursor {
	background: rgba(255, 255, 255, 0.75);
}

[data-w4w-typewriter].is-done .w4w-typewriter__cursor {
	opacity: 0;
	animation: none;
	transition: opacity 0.25s ease;
}

.w4w-price-card {
	transition:
		opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.3s ease;
}

.w4w-price-card.is-visible:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 48px rgba(28, 27, 25, 0.1);
}

.w4w-price-card--featured.is-visible:hover {
	box-shadow: 0 24px 56px rgba(63, 93, 72, 0.18);
}

@media (prefers-reduced-motion: reduce) {
	.w4w-hero__orb,
	.w4w-hero__content > *,
	.w4w-hero__visual {
		animation: none !important;
	}

	[data-w4w-reveal-child] {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.w4w-typewriter__cursor {
		display: none;
	}

	.w4w-process::before,
	.w4w-process__step::before {
		transform: none;
		transition: none;
	}

	.w4w-process__step.is-visible::before {
		transform: scale(1);
	}

	.w4w-hero__visual-stack {
		transition: none;
	}
}

/* Responsive */
@media (max-width: 960px) {
	.w4w-hero__grid,
	.w4w-trust__grid,
	.w4w-cards--3,
	.w4w-process,
	.w4w-pricing,
	.w4w-footer__grid,
	.w4w-about-grid,
	.w4w-contact-grid,
	.w4w-stats-bar,
	.w4w-included-grid,
	.w4w-hero__stats { grid-template-columns: 1fr 1fr; }

	.w4w-process::before { display: none; }

	.w4w-process__step::before { display: none; }

	.w4w-process__step { padding-top: 0; }

	.w4w-trust__item { border-right: 0; border-bottom: 1px solid var(--w4w-border); }
	.w4w-cards--2 { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
	.w4w-burger { display: flex; }

	.w4w-nav {
		position: fixed;
		inset: var(--w4w-header-h) 0 0 0;
		background: #10100f;
		flex-direction: column;
		align-items: stretch;
		padding: 1.5rem;
		gap: 1rem;
		margin-left: 0;
		transform: translateX(100%);
		transition: transform 0.25s ease;
		overflow-y: auto;
	}

	.w4w-nav.is-open { transform: translateX(0); }

	.w4w-nav__list,
	.w4w-nav .menu { flex-direction: column; align-items: flex-start; gap: 1.25rem; }

	.w4w-header__cta { width: 100%; margin-top: 0.5rem; text-align: center; }

	.w4w-lang { margin-top: 0.5rem; }

	.w4w-hero__visual-stack {
		min-height: auto;
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}

	.w4w-code__body {
		min-height: 200px;
		max-height: 200px;
		font-size: 0.65rem;
	}

	.w4w-mockup {
		position: relative;
		right: auto;
		bottom: auto;
		width: 100%;
		box-shadow: none;
	}

	.w4w-hero__grid,
	.w4w-trust__grid,
	.w4w-cards--3,
	.w4w-process,
	.w4w-pricing,
	.w4w-footer__grid,
	.w4w-stats-bar,
	.w4w-included-grid,
	.w4w-about-grid,
	.w4w-contact-grid,
	.w4w-hero__stats { grid-template-columns: 1fr; }

	.w4w-hero__actions {
		flex-direction: column;
	}

	.w4w-hero__actions .w4w-btn {
		width: 100%;
	}

	.w4w-section {
		padding: 2.75rem 0;
	}

	.w4w-section__head {
		margin-bottom: 1.75rem;
	}

	.w4w-process {
		gap: 1.5rem;
	}

	.w4w-cta-band__inner { flex-direction: column; align-items: flex-start; }
	.w4w-service-detail__item { grid-template-columns: 1fr; }
}
