/* ============================================================
   Services Website Landing — «Создание и разработка сайтов под ключ»
   ============================================================ */

/* ---------- Shared Variables ---------- */
:root {
	--website-primary: #ff5e14;
	--website-bg: #0d0d20;
	--website-card-bg: #1a1934;
	--website-text: #ffffff;
	--website-text-muted: rgba(255, 255, 255, 0.55);
	--website-text-dim: rgba(255, 255, 255, 0.35);
	--website-border: rgba(255, 255, 255, 0.06);
	--website-border-hover: rgba(255, 94, 20, 0.25);
}

/* ---------- Shared Tech Mesh Grid (все секции) ---------- */
section.website-hero-section.section::before,
section.website-pains-section.section::before,
section.website-tariffs-section.section::before,
section.website-capabilities-section.section::before,
section.website-stages-section.section::before,
section.website-why-us-section.section::before,
section.website-faq-section.section::before,
section.website-cta-section.section::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
		radial-gradient(rgba(255, 94, 20, 0.10) 1px, transparent 1px);
	background-size: 40px 40px, 40px 40px, 160px 160px, 160px 160px, 20px 20px;
	-webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 40%, transparent 70%);
	mask-image: radial-gradient(ellipse at 50% 30%, black 40%, transparent 70%);
	pointer-events: none;
}

/* CTA section — своя маска, посветлее */
section.website-cta-section.section::before {
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		radial-gradient(rgba(255, 94, 20, 0.08) 1px, transparent 1px);
	background-size: 40px 40px, 40px 40px, 20px 20px;
}

/* У CTA секции убираем дублирующийся ::before (он был встроен) */
section.website-cta-section.section::before {
	z-index: 1;
}

/* ============================================================
   1. HERO SECTION
   ============================================================ */

section.website-hero-section.section {
	position: relative;
	background-color: var(--website-bg);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	padding: 0;
}

.website-hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.website-hero-gradient {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 20% 50%, rgba(255, 94, 20, 0.12) 0%, transparent 55%),
		radial-gradient(ellipse at 80% 20%, rgba(100, 140, 255, 0.10) 0%, transparent 50%),
		radial-gradient(ellipse at 50% 80%, rgba(136, 85, 255, 0.08) 0%, transparent 50%);
}

.website-hero-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		radial-gradient(rgba(255, 94, 20, 0.08) 1px, transparent 1px);
	background-size: 60px 60px, 60px 60px, 30px 30px;
	-webkit-mask-image: radial-gradient(ellipse at 60% 50%, black 35%, transparent 65%);
	mask-image: radial-gradient(ellipse at 60% 50%, black 35%, transparent 65%);
}

.website-hero-glow {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.website-hero-glow--1 {
	top: -200px;
	right: -100px;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(255, 94, 20, 0.08) 0%, transparent 65%);
}

.website-hero-glow--2 {
	bottom: -150px;
	left: -150px;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(100, 140, 255, 0.06) 0%, transparent 65%);
}

.website-hero-container {
	position: relative;
	z-index: 2;
	flex: 1;
	display: flex;
	align-items: center;
	gap: 60px;
	padding-top: calc(var(--header-height) + 40px);
	padding-bottom: 100px;
}

.website-hero-content {
	flex: 1;
	max-width: 780px;
}

/* Tags */
.website-hero-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 24px;
}

.website-hero-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px 8px 12px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 100px;
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
	transition: all 0.3s ease;
	position: relative;
}

/* Gold diamond accent before each tag */
.website-hero-tag::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	background: linear-gradient(135deg, #f5d06e, #d4a020);
	border-radius: 1px;
	transform: rotate(45deg);
	flex-shrink: 0;
	box-shadow: 0 0 6px rgba(213, 160, 32, 0.3);
	transition: box-shadow 0.3s ease;
}

.website-hero-tag:hover {
	border-color: rgba(213, 160, 32, 0.4);
	color: #fff;
}

.website-hero-tag:hover::before {
	box-shadow: 0 0 10px rgba(213, 160, 32, 0.5);
}

.website-hero-tag-icon {
	flex-shrink: 0;
	opacity: 0.7;
}

/* Title */
.website-hero-title {
	font-family: var(--font-heading);
	font-size: 50px;
	font-weight: 700;
	line-height: 1.15;
	color: #ffffff;
	letter-spacing: -0.03em;
	margin-bottom: 20px;
}

.website-hero-title-accent {
	color: var(--website-primary);
	display: block;
}

.website-hero-divider {
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, var(--website-primary), rgba(255, 94, 20, 0.2));
	border-radius: 2px;
	margin-bottom: 20px;
}

/* Subtitle */
.website-hero-subtitle {
	font-size: 17px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 32px;
	max-width: 540px;
}

/* CTA */
.website-hero-cta-group {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.website-hero-btn {
	padding: 16px 36px;
	font-size: 17px;
}

.website-hero-expert {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.5);
	font-size: 13px;
	line-height: 1.4;
}

.website-hero-expert svg {
	flex-shrink: 0;
	opacity: 0.5;
}

.website-hero-expert-highlight {
	color: rgba(255, 255, 255, 0.85);
	font-weight: 600;
}

.website-hero-expert-muted {
	color: rgba(255, 255, 255, 0.35);
}

/* Orb */
.website-hero-orb {
	flex-shrink: 0;
	width: 420px;
	height: 525px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.website-hero-orb-svg {
	width: 100%;
	height: 100%;
}

/* Stats bar */
.website-hero-stats {
	position: relative;
	z-index: 2;
	background: rgba(255, 255, 255, 0.03);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding: 18px 0;
}

.website-hero-stats-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
}

.website-hero-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 6px 40px 6px 0;
}

.website-hero-stat-number {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 800;
	color: var(--website-primary);
	line-height: 1.1;
}

.website-hero-stat-label {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.4);
	margin-top: 2px;
	white-space: nowrap;
}

.website-hero-stat-divider {
	width: 1px;
	height: 32px;
	background: rgba(255, 255, 255, 0.08);
	margin-right: 40px;
}

/* ============================================================
   2. PAINS SECTION
   ============================================================ */

section.website-pains-section.section {
	position: relative;
	background-color: var(--website-bg);
	overflow: hidden;
	padding: 80px 0;
}

.website-pains-cosmic-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		linear-gradient(170deg, #0a0a1a 0%, #0d0d20 20%, #1a180d 60%, #0a0a16 100%);
}

.website-pains-cosmic-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 80% 20%, rgba(255, 94, 20, 0.12) 0%, transparent 50%),
		radial-gradient(ellipse at 20% 80%, rgba(255, 94, 20, 0.08) 0%, transparent 50%);
}

.website-pains-header {
	margin-bottom: 44px;
}

.website-pains-title-group {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.website-pains-marker {
	display: flex;
	align-items: center;
	gap: 10px;
}

.website-pains-marker-line {
	width: 32px;
	height: 2px;
	background: var(--color-primary);
	opacity: 0.6;
	border-radius: 1px;
}

.website-pains-marker-dot {
	display: block;
	width: 6px;
	height: 6px;
	background: var(--color-primary);
	border-radius: 1px;
	transform: rotate(45deg);
	box-shadow: 0 0 8px rgba(255, 94, 20, 0.3);
}

.website-pains-title {
	font-family: var(--font-heading);
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2;
	color: #ffffff;
	letter-spacing: -0.02em;
	margin: 0;
	max-width: 700px;
}

.website-pains-title-accent {
	color: var(--website-primary);
}

/* Accordion list */
.website-pains-list {
	margin: 0 auto;
	max-width: 800px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.website-pains-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: border-color 0.3s ease, background 0.3s ease;
}

.website-pains-card.active {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 94, 20, 0.25);
}

.website-pains-trigger {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	padding: 20px 24px;
	background: none;
	border: none;
	cursor: pointer;
	font-family: var(--font-primary);
	font-size: 16px;
	font-weight: 600;
	text-align: left;
	color: rgba(255, 255, 255, 0.85);
	transition: background 0.3s ease;
	line-height: 1.4;
}

.website-pains-num {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 800;
	color: rgba(255, 94, 20, 0.3);
	flex-shrink: 0;
	width: 40px;
}

.website-pains-trigger-title {
	flex: 1;
}

.website-pains-arrow {
	flex-shrink: 0;
	color: var(--website-primary);
	transition: transform 0.3s ease;
}

.website-pains-card.active .website-pains-arrow {
	transform: rotate(180deg);
}

.website-pains-card.active .website-pains-trigger {
	color: #ffffff;
}

.website-pains-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.website-pains-card.active .website-pains-content {
	max-height: 300px;
}

.website-pains-body {
	padding: 0 24px 20px;
	padding-left: 80px;
}

.website-pains-label {
	display: inline-block;
	padding: 3px 10px;
	font-size: 12px;
	font-weight: 600;
	border-radius: 4px;
	margin-bottom: 8px;
}

.website-pains-label--ok {
	background: rgba(40, 167, 69, 0.12);
	color: #28a745;
}

.website-pains-desc {
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   3. TARIFFS SECTION
   ============================================================ */

section.website-tariffs-section.section {
	position: relative;
	background-color: var(--website-bg);
	overflow: hidden;
	padding: 80px 0;
}

.website-tariffs-cosmic-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		linear-gradient(170deg, #0a0a1a 0%, #0d0d20 20%, #0d1218 60%, #0a0a16 100%);
}

.website-tariffs-cosmic-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 80% 20%, rgba(100, 140, 180, 0.14) 0%, transparent 50%),
		radial-gradient(ellipse at 20% 80%, rgba(100, 140, 180, 0.10) 0%, transparent 50%);
}

.website-tariffs-header {
	margin-bottom: 44px;
}

.website-tariffs-title-group {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.website-tariffs-marker {
	display: flex;
	align-items: center;
	gap: 10px;
}

.website-tariffs-marker-line {
	width: 32px;
	height: 2px;
	background: var(--color-primary);
	opacity: 0.6;
	border-radius: 1px;
}

.website-tariffs-marker-dot {
	display: block;
	width: 6px;
	height: 6px;
	background: var(--color-primary);
	border-radius: 1px;
	transform: rotate(45deg);
	box-shadow: 0 0 8px rgba(255, 94, 20, 0.3);
}

.website-tariffs-title {
	font-family: var(--font-heading);
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2;
	color: #ffffff;
	letter-spacing: -0.02em;
	margin: 0;
	max-width: 800px;
}

.website-tariffs-title-accent {
	color: var(--website-primary);
}

/* Tariffs Grid */
.website-tariffs-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.website-tariff-card {
	position: relative;
	background: #1a1934;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: var(--radius-lg);
	padding: 40px 28px 32px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
	            border-color 0.4s ease,
	            box-shadow 0.4s ease;
}

.website-tariff-card:hover {
	transform: translateY(-6px);
	border-color: rgba(255, 94, 20, 0.25);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.website-tariff-card--featured {
	border-color: rgba(255, 94, 20, 0.2);
	background: linear-gradient(180deg, rgba(255, 94, 20, 0.06) 0%, #1a1934 100%);
	transform: scale(1.03);
	z-index: 2;
}

.website-tariff-card--featured:hover {
	transform: scale(1.03) translateY(-6px);
}

.website-tariff-card-glow {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60%;
	background: linear-gradient(to top, rgba(255, 94, 20, 0.06), transparent);
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
}

.website-tariff-card:hover .website-tariff-card-glow {
	opacity: 1;
}

.website-tariff-badge {
	display: inline-block;
	align-self: flex-start;
	padding: 4px 12px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.05);
	border-radius: 4px;
	margin-bottom: 16px;
}

.website-tariff-badge--featured {
	background: var(--website-primary);
	color: #fff;
}

.website-tariff-name {
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 16px;
	line-height: 1.3;
}

.website-tariff-price {
	display: flex;
	align-items: baseline;
	gap: 2px;
	margin-bottom: 24px;
}

.website-tariff-price-amount {
	font-family: var(--font-heading);
	font-size: 42px;
	font-weight: 800;
	color: #ffffff;
	line-height: 1;
}

.website-tariff-price-currency {
	font-size: 20px;
	font-weight: 600;
	color: var(--website-primary);
}

.website-tariff-features {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.website-tariff-features li {
	position: relative;
	padding-left: 22px;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.65);
}

.website-tariff-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--website-primary);
	font-weight: 700;
	font-size: 13px;
}

.website-tariff-btn {
	width: 100%;
	justify-content: center;
}

.website-tariffs-note {
	text-align: center;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.35);
	margin-top: 32px;
}

/* ============================================================
   4. CAPABILITIES SECTION
   ============================================================ */

section.website-capabilities-section.section {
	position: relative;
	background-color: var(--website-bg);
	overflow: hidden;
	padding: 80px 0;
}

.website-capabilities-cosmic-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		linear-gradient(170deg, #0a0a1a 0%, #0d0d20 20%, #1a0d0d 60%, #0a0a16 100%);
}

.website-capabilities-cosmic-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 80% 20%, rgba(220, 70, 30, 0.14) 0%, transparent 50%),
		radial-gradient(ellipse at 20% 80%, rgba(220, 70, 30, 0.10) 0%, transparent 50%);
}

.website-capabilities-header {
	margin-bottom: 44px;
}

.website-capabilities-title-group {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.website-capabilities-marker {
	display: flex;
	align-items: center;
	gap: 10px;
}

.website-capabilities-marker-line {
	width: 32px;
	height: 2px;
	background: var(--color-primary);
	opacity: 0.6;
	border-radius: 1px;
}

.website-capabilities-marker-dot {
	display: block;
	width: 6px;
	height: 6px;
	background: var(--color-primary);
	border-radius: 1px;
	transform: rotate(45deg);
	box-shadow: 0 0 8px rgba(255, 94, 20, 0.3);
}

.website-capabilities-title {
	font-family: var(--font-heading);
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2;
	color: #ffffff;
	letter-spacing: -0.02em;
	margin: 0;
	max-width: 800px;
}

.website-capabilities-title-accent {
	color: var(--website-primary);
}

.website-capabilities-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}

.website-capabilities-card {
	position: relative;
	background: #1a1934;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: var(--radius-md);
	padding: 28px 20px 24px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
	            border-color 0.4s ease;
}

.website-capabilities-card:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 94, 20, 0.25);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.website-capabilities-card-glow {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(to top, rgba(255, 94, 20, 0.05), transparent);
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
}

.website-capabilities-card:hover .website-capabilities-card-glow {
	opacity: 1;
}

.website-capabilities-icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 94, 20, 0.1);
	border-radius: 50%;
	margin-bottom: 16px;
	flex-shrink: 0;
}

.website-capabilities-card-title {
	font-family: var(--font-heading);
	font-size: 17px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 10px;
	line-height: 1.3;
}

.website-capabilities-card-desc {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.55);
}

/* ============================================================
   5. STAGES SECTION
   ============================================================ */

section.website-stages-section.section {
	position: relative;
	background-color: var(--website-bg);
	overflow: hidden;
	padding: 80px 0;
}

.website-stages-cosmic-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		linear-gradient(170deg, #0a0a1a 0%, #0d0d20 20%, #0d1218 60%, #0a0a16 100%);
}

.website-stages-header {
	margin-bottom: 44px;
}

.website-stages-title-group {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.website-stages-marker {
	display: flex;
	align-items: center;
	gap: 10px;
}

.website-stages-marker-line {
	width: 32px;
	height: 2px;
	background: var(--color-primary);
	opacity: 0.6;
	border-radius: 1px;
}

.website-stages-marker-dot {
	display: block;
	width: 6px;
	height: 6px;
	background: var(--color-primary);
	border-radius: 1px;
	transform: rotate(45deg);
	box-shadow: 0 0 8px rgba(255, 94, 20, 0.3);
}

.website-stages-title {
	font-family: var(--font-heading);
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2;
	color: #ffffff;
	letter-spacing: -0.02em;
	margin: 0;
	max-width: 800px;
}

.website-stages-title-accent {
	color: var(--website-primary);
}

.website-stages-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	max-width: 1100px;
	margin: 0 auto;
}

.website-stage-card {
	position: relative;
	background: #1a1934;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: var(--radius-md);
	padding: 24px 24px 20px;
	display: flex;
	gap: 16px;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
	overflow: hidden;
}

.website-stage-card:hover {
	border-color: rgba(255, 94, 20, 0.2);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.website-stage-num {
	font-family: var(--font-heading);
	font-size: 36px;
	font-weight: 800;
	color: rgba(255, 94, 20, 0.2);
	line-height: 1;
	flex-shrink: 0;
	min-width: 40px;
}

.website-stage-body {
	flex: 1;
}

.website-stage-title {
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 8px;
	line-height: 1.3;
}

.website-stage-desc {
	font-size: 13px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.55);
}

/* CTA after stages */
.website-stages-cta {
	text-align: center;
	margin-top: 40px;
}

/* ============================================================
   6. WHY-US SECTION
   ============================================================ */

section.website-why-us-section.section {
	position: relative;
	background-color: var(--website-bg);
	overflow: hidden;
	padding: 80px 0;
}

.website-why-us-cosmic-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		linear-gradient(170deg, #0a0a1a 0%, #0d0d20 20%, #1a180d 60%, #0a0a16 100%);
}

.website-why-us-cosmic-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 80% 20%, rgba(220, 170, 40, 0.14) 0%, transparent 50%),
		radial-gradient(ellipse at 20% 80%, rgba(190, 150, 35, 0.10) 0%, transparent 50%);
}

.website-why-us-header {
	margin-bottom: 44px;
}

.website-why-us-title-group {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.website-why-us-marker {
	display: flex;
	align-items: center;
	gap: 10px;
}

.website-why-us-marker-line {
	width: 32px;
	height: 2px;
	background: var(--color-primary);
	opacity: 0.6;
	border-radius: 1px;
}

.website-why-us-marker-dot {
	display: block;
	width: 6px;
	height: 6px;
	background: var(--color-primary);
	border-radius: 1px;
	transform: rotate(45deg);
	box-shadow: 0 0 8px rgba(255, 94, 20, 0.3);
}

.website-why-us-title {
	font-family: var(--font-heading);
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2;
	color: #ffffff;
	letter-spacing: -0.02em;
	margin: 0;
	max-width: 700px;
}

.website-why-us-title-accent {
	color: var(--website-primary);
}

.website-why-us-two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

.website-why-us-about {
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 24px;
}

.website-why-us-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.website-why-us-list li {
	position: relative;
	padding-left: 22px;
	font-size: 15px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.7);
}

.website-why-us-list li::before {
	content: '—';
	position: absolute;
	left: 0;
	color: var(--website-primary);
	font-weight: 600;
}

.website-why-us-advantages {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.website-why-us-advantage {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding: 20px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: var(--radius-md);
	transition: border-color 0.3s ease;
}

.website-why-us-advantage:hover {
	border-color: rgba(255, 94, 20, 0.2);
}

.website-why-us-advantage-icon {
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 94, 20, 0.1);
	border-radius: 50%;
}

.website-why-us-advantage-title {
	font-family: var(--font-heading);
	font-size: 15px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 4px;
	line-height: 1.3;
}

.website-why-us-advantage-desc {
	font-size: 13px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.55);
}

.website-why-us-stats {
	display: flex;
	justify-content: center;
	gap: 60px;
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.website-why-us-stat {
	text-align: center;
}

.website-why-us-stat-number {
	font-family: var(--font-heading);
	font-size: 36px;
	font-weight: 800;
	color: var(--website-primary);
	display: block;
	line-height: 1.1;
}

.website-why-us-stat-label {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.4);
	margin-top: 4px;
}

/* ============================================================
   7. FAQ SECTION
   ============================================================ */

section.website-faq-section.section {
	position: relative;
	background-color: var(--website-bg);
	overflow: hidden;
	padding: 80px 0;
}

.website-faq-cosmic-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		linear-gradient(170deg, #0a0a1a 0%, #0d0d20 20%, #0d1218 60%, #0a0a16 100%);
}

.website-faq-cosmic-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 80% 20%, rgba(100, 140, 180, 0.14) 0%, transparent 50%),
		radial-gradient(ellipse at 20% 80%, rgba(80, 120, 160, 0.10) 0%, transparent 50%);
}

.website-faq-header {
	margin-bottom: 44px;
}

.website-faq-title-group {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.website-faq-marker {
	display: flex;
	align-items: center;
	gap: 10px;
}

.website-faq-marker-line {
	width: 32px;
	height: 2px;
	background: var(--color-primary);
	opacity: 0.6;
	border-radius: 1px;
}

.website-faq-marker-dot {
	display: block;
	width: 6px;
	height: 6px;
	background: var(--color-primary);
	border-radius: 1px;
	transform: rotate(45deg);
	box-shadow: 0 0 8px rgba(255, 94, 20, 0.3);
}

.website-faq-title {
	font-family: var(--font-heading);
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2;
	color: #ffffff;
	letter-spacing: -0.02em;
	margin: 0;
	max-width: 700px;
}

.website-faq-title-accent {
	color: var(--website-primary);
}

.website-faq-list {
	margin: 0 auto;
	max-width: 800px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.website-faq-item {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: border-color 0.3s ease, background 0.3s ease;
}

.website-faq-item.active {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 94, 20, 0.25);
}

.website-faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 20px 24px;
	background: none;
	border: none;
	cursor: pointer;
	font-family: var(--font-primary);
	font-size: 16px;
	font-weight: 600;
	text-align: left;
	color: rgba(255, 255, 255, 0.85);
	transition: background 0.3s ease;
	line-height: 1.4;
}

.website-faq-question svg {
	flex-shrink: 0;
	color: var(--color-primary);
	transition: transform 0.3s ease;
}

.website-faq-item.active .website-faq-question svg {
	transform: rotate(180deg);
}

.website-faq-item.active .website-faq-question {
	color: #ffffff;
}

.website-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.website-faq-item.active .website-faq-answer {
	max-height: 500px;
}

.website-faq-answer > div {
	padding: 0 24px 20px;
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.65);
}

.website-faq-answer p {
	margin-bottom: 0;
}

/* ============================================================
   8. CTA SECTION
   ============================================================ */

section.website-cta-section.section {
	position: relative;
	background: linear-gradient(135deg, #0a0a1a 0%, #0d0d20 30%, #12122a 60%, #0a0a16 100%);
	overflow: hidden;
	padding: 60px 0;
	min-height: auto;
}

.website-cta-wrapper {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.website-cta-title {
	font-family: var(--font-heading);
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	color: #ffffff;
	margin-bottom: 12px;
	letter-spacing: -0.02em;
}

.website-cta-text {
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 24px;
	max-width: 480px;
}

.website-cta-contacts {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.website-cta-contacts-label {
	color: rgba(255, 255, 255, 0.4);
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 4px;
}

.website-cta-phone {
	display: inline-block;
	font-size: 26px;
	font-weight: 800;
	font-family: var(--font-heading);
	color: #ffffff;
	margin-bottom: 8px;
	transition: color 0.3s ease;
	letter-spacing: -0.02em;
}

.website-cta-phone:hover {
	color: var(--website-primary);
}

.website-cta-social {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 8px;
}

.website-cta-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 14px;
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.8);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 100px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.website-cta-pill:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 94, 20, 0.35);
	color: #ffffff;
	transform: translateY(-1px);
}

.website-cta-pill svg,
.website-cta-pill img {
	flex-shrink: 0;
}

.website-cta-email {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	transition: color 0.3s ease;
	margin-top: 2px;
}

.website-cta-email:hover {
	color: var(--website-primary);
}

/* CTA Form */
.website-cta-form {
	background: #1a1934;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-lg);
	padding: 28px 28px 24px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
	.website-hero-title {
		font-size: 38px;
	}

	.website-hero-orb {
		display: none;
	}

	.website-tariffs-grid {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin: 0 auto;
	}

	.website-tariff-card--featured {
		transform: none;
	}

	.website-tariff-card--featured:hover {
		transform: translateY(-6px);
	}

	.website-capabilities-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.website-stages-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.website-why-us-two-col {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.website-why-us-title,
	.website-pains-title,
	.website-tariffs-title,
	.website-capabilities-title,
	.website-stages-title,
	.website-faq-title {
		font-size: 32px;
	}

	.website-cta-wrapper {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.website-cta-title {
		font-size: 26px;
	}

	.website-hero-container {
		gap: 0;
	}
}

@media (max-width: 767px) {
	.website-hero-title {
		font-size: 30px;
	}

	.website-hero-title br {
		display: none;
	}

	.website-hero-subtitle {
		font-size: 15px;
	}

	.website-hero-cta-group {
		flex-direction: column;
		align-items: stretch;
	}

	.website-hero-btn {
		width: 100%;
		justify-content: center;
	}

	.website-hero-tags {
		gap: 8px;
	}

	.website-hero-tag {
		font-size: 12px;
		padding: 6px 12px;
	}

	.website-hero-stats-inner {
		flex-wrap: wrap;
		justify-content: center;
	}

	.website-hero-stat {
		padding: 4px 20px 4px 0;
	}

	.website-hero-stat-number {
		font-size: 22px;
	}

	.website-hero-stat-divider {
		margin-right: 20px;
	}

	.website-pains-title,
	.website-tariffs-title,
	.website-capabilities-title,
	.website-stages-title,
	.website-why-us-title,
	.website-faq-title {
		font-size: 28px;
	}

	.website-pains-trigger {
		padding: 16px;
		font-size: 15px;
	}

	.website-pains-num {
		font-size: 22px;
		width: 30px;
	}

	.website-pains-body {
		padding-left: 62px;
		padding-right: 16px;
	}

	.website-capabilities-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.website-capabilities-card {
		padding: 20px 16px;
	}

	.website-stages-grid {
		grid-template-columns: 1fr;
	}

	.website-why-us-stats {
		flex-direction: column;
		gap: 20px;
		align-items: center;
	}

	.website-cta-form {
		padding: 24px 20px;
	}

	.website-cta-phone {
		font-size: 22px;
	}
}

@media (max-width: 480px) {
	.website-capabilities-grid {
		grid-template-columns: 1fr;
	}

	.website-hero-stat-label {
		font-size: 10px;
	}
}

/* Section shared z-index */
section.website-hero-section .container,
section.website-pains-section .container,
section.website-tariffs-section .container,
section.website-capabilities-section .container,
section.website-stages-section .container,
section.website-why-us-section .container,
section.website-faq-section .container,
section.website-cta-section .container {
	position: relative;
	z-index: 1;
}