/* ========== ANNOUNCEMENT BAR ========== */
.announcement-bar {
	background: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #ef4444 100%);
	color: #fff;
	text-align: center;
	padding: 10px 24px;
	font-size: 14px;
	font-weight: 700;
	position: relative;
	z-index: 1000;
	letter-spacing: 0.3px;
}
.announcement-bar a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.announcement-bar .close-btn {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255,255,255,0.25);
	border: none;
	color: #fff;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 14px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}
.announcement-bar .close-btn:hover { background: rgba(255,255,255,0.4); }
.announcement-bar.hidden { display: none; }

/* ========== NAVIGATION ========== */
.navbar {
	background: #ffffff;
	border-bottom: 1px solid #e2e8f0;
	position: sticky;
	top: 0;
	z-index: 999;
	box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.navbar .container-wide {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
}
.nav-logo {
	font-size: 22px;
	font-weight: 900;
	color: #032d60;
	display: flex;
	align-items: center;
	gap: 8px;
}
.nav-logo .logo-icon {
	width: 36px;
	height: 36px;
	background: linear-gradient(135deg, #2e844a, #48bb78);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 18px;
	font-weight: 900;
}
.nav-links {
	display: flex;
	align-items: center;
	gap: 32px;
}
.nav-links a {
	font-size: 15px;
	font-weight: 600;
	color: #4a5568;
	transition: color 0.2s;
	position: relative;
}
.nav-links a:hover { color: #032d60; }
.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: #2e844a;
	transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}
.btn-login {
	font-size: 14px;
	font-weight: 600;
	color: #4a5568;
	padding: 8px 16px;
	border-radius: 6px;
	transition: all 0.2s;
}
.btn-login:hover { background: #f7fafc; color: #032d60; }
.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	background: #2e844a;
	padding: 10px 22px;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	transition: all 0.25s;
	box-shadow: 0 2px 8px rgba(46,132,74,0.3);
	font-family: 'Nunito Sans', sans-serif;
}
.btn-primary:hover {
	background: #276b3e;
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(46,132,74,0.35);
}
.mobile-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #032d60;
}

/* ========== HERO SPLIT ========== */
.hero {
	background: linear-gradient(170deg, #032d60 0%, #054a91 60%, #0a6bc4 100%);
	padding: 80px 0 100px;
	position: relative;
	overflow: hidden;
}
.hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, rgba(46,132,74,0.15) 0%, transparent 70%);
	border-radius: 50%;
}
.hero::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
	border-radius: 50%;
}
.hero .container-wide {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 2;
}
.hero-text h1 {
	font-size: 48px;
	font-weight: 900;
	color: #ffffff;
	line-height: 1.15;
	margin-bottom: 20px;
}
.hero-text h1 span {
	background: linear-gradient(135deg, #48bb78, #38a169);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.hero-text .subtitle {
	font-size: 19px;
	color: rgba(255,255,255,0.8);
	line-height: 1.7;
	margin-bottom: 36px;
	max-width: 520px;
}
.hero-form {
	display: flex;
	gap: 12px;
	margin-bottom: 24px;
	max-width: 480px;
}
.hero-form input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid rgba(255,255,255,0.2);
	border-radius: 10px;
	background: rgba(255,255,255,0.1);
	color: #fff;
	font-size: 15px;
	font-family: 'Nunito Sans', sans-serif;
	backdrop-filter: blur(10px);
	transition: border-color 0.3s;
}
.hero-form input::placeholder { color: rgba(255,255,255,0.5); }
.hero-form input:focus {
	outline: none;
	border-color: #48bb78;
	background: rgba(255,255,255,0.15);
}
.hero-form .btn-hero {
	padding: 14px 28px;
	background: #2e844a;
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	white-space: nowrap;
	transition: all 0.25s;
	font-family: 'Nunito Sans', sans-serif;
}
.hero-form .btn-hero:hover {
	background: #276b3e;
	transform: translateY(-1px);
}
.hero-trust {
	display: flex;
	align-items: center;
	gap: 12px;
	color: rgba(255,255,255,0.6);
	font-size: 14px;
}
.hero-trust .trust-avatars { display: flex; }
.hero-trust .trust-avatars span {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 2px solid #032d60;
	margin-left: -8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	color: #fff;
	font-weight: 700;
}
.hero-trust .trust-avatars span:nth-child(1) { background: #e53e3e; margin-left: 0; }
.hero-trust .trust-avatars span:nth-child(2) { background: #dd6b20; }
.hero-trust .trust-avatars span:nth-child(3) { background: #2e844a; }
.hero-trust .trust-avatars span:nth-child(4) { background: #3182ce; }

/* Dashboard mockup */
.hero-dashboard {
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.3);
	overflow: hidden;
	position: relative;
}
.dash-topbar {
	background: #1a202c;
	padding: 10px 16px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot.red { background: #fc5753; }
.dash-dot.yellow { background: #fdbc40; }
.dash-dot.green { background: #33c748; }
.dash-topbar .dash-url {
	flex: 1;
	background: #2d3748;
	border-radius: 4px;
	padding: 4px 12px;
	color: #a0aec0;
	font-size: 11px;
	margin-left: 8px;
}
.dash-body { padding: 20px; }
.dash-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
}
.dash-header h4 { font-size: 14px; color: #032d60; font-weight: 700; }
.dash-badge {
	background: #c6f6d5;
	color: #276b3e;
	padding: 3px 10px;
	border-radius: 12px;
	font-size: 11px;
	font-weight: 700;
}
.dash-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-bottom: 16px;
}
.dash-stat {
	background: #f7fafc;
	border-radius: 8px;
	padding: 12px;
	text-align: center;
}
.dash-stat .value { font-size: 20px; font-weight: 800; color: #032d60; }
.dash-stat .label { font-size: 10px; color: #718096; margin-top: 2px; }
.dash-orders {
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	overflow: hidden;
}
.dash-orders .order-row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 80px;
	padding: 8px 12px;
	font-size: 11px;
	border-bottom: 1px solid #edf2f7;
	align-items: center;
}
.dash-orders .order-row:first-child {
	background: #f7fafc;
	font-weight: 700;
	color: #4a5568;
}
.dash-orders .order-row:last-child { border-bottom: none; }
.status-badge {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 10px;
	font-size: 10px;
	font-weight: 700;
}
.status-badge.delivered { background: #c6f6d5; color: #276b3e; }
.status-badge.transit { background: #bee3f8; color: #2b6cb0; }
.status-badge.created { background: #fefcbf; color: #975a16; }

/* ========== LOGO BAR ========== */
.logo-bar {
	background: #ffffff;
	padding: 48px 0;
	border-bottom: 1px solid #e2e8f0;
}
.logo-bar-inner { text-align: center; }
.logo-bar-inner p {
	font-size: 13px;
	font-weight: 700;
	color: #a0aec0;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 28px;
}
.logos-row {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 48px;
	flex-wrap: wrap;
}
.logo-placeholder {
	width: 120px;
	height: 40px;
	background: #edf2f7;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	color: #a0aec0;
	opacity: 0.7;
	transition: opacity 0.3s;
}
.logo-placeholder:hover { opacity: 1; }

/* ========== HOME HERO (centered variant) ========== */
.home-hero .container-wide {
	display: block;
	text-align: center;
}
.home-hero .hero-text {
	max-width: 700px;
	margin: 0 auto;
}
.home-hero .hero-text h1 { font-size: 44px; }
.home-hero .hero-text .subtitle { max-width: 600px; margin-left: auto; margin-right: auto; }
.home-hero__actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	margin-bottom: 40px;
}
.btn-hero {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 14px 28px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 700;
	transition: all 0.25s;
}
.btn-hero--primary {
	background: #2e844a;
	color: #fff;
	box-shadow: 0 2px 8px rgba(46,132,74,0.3);
}
.btn-hero--primary:hover {
	background: #276b3e;
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(46,132,74,0.35);
}
.btn-hero--secondary {
	background: rgba(255,255,255,0.12);
	color: #fff;
	border: 1px solid rgba(255,255,255,0.25);
}
.btn-hero--secondary:hover {
	background: rgba(255,255,255,0.2);
}
.home-hero__trust {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	color: rgba(255,255,255,0.7);
	font-size: 14px;
}
.home-hero__stat {
	font-size: 22px;
	font-weight: 800;
	color: #fff;
}
.home-hero__divider {
	width: 1px;
	height: 28px;
	background: rgba(255,255,255,0.2);
}
/* Home catalog grid: force 3 cols, reuse catalog.css cards */
.home-catalog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 32px;
}
.benefit-card__icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}
.benefit-card__icon--green { background: #e6f9ed; color: #2e844a; }
.benefit-card__icon--blue { background: #ebf5ff; color: #3b82f6; }
.benefit-card__icon--purple { background: #f3e8ff; color: #7c3aed; }

/* ========== 3-COLUMN BENEFITS ========== */
.benefits { padding: 100px 0; background: #f5f7fa; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
	display: inline-block;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 2.5px;
	color: #2e844a;
	background: rgba(46,132,74,0.1);
	padding: 6px 16px;
	border-radius: 20px;
	margin-bottom: 16px;
}
.section-header h2 {
	font-size: 38px;
	font-weight: 900;
	color: #032d60;
	margin-bottom: 16px;
}
.section-header p {
	font-size: 18px;
	color: #718096;
	max-width: 600px;
	margin: 0 auto;
}
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}
.benefit-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 40px 32px;
	border-top: 4px solid #2e844a;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
}
.benefit-card::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100px;
	height: 100px;
	background: radial-gradient(circle at top right, rgba(46,132,74,0.05), transparent);
}
.benefit-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}
.benefit-icon {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, rgba(46,132,74,0.1), rgba(46,132,74,0.05));
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	margin-bottom: 24px;
}
.benefit-card h3 { font-size: 20px; font-weight: 800; color: #032d60; margin-bottom: 12px; }
.benefit-card p { font-size: 15px; color: #718096; line-height: 1.7; }

/* ========== FEATURE DEEP-DIVE ========== */
.features { padding: 100px 0; background: #ffffff; }
.feature-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	margin-bottom: 100px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-text { order: 2; }
.feature-row.reverse .feature-visual { order: 1; }
.feature-text .feature-label {
	display: inline-block;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #2e844a;
	margin-bottom: 12px;
}
.feature-text h3 { font-size: 32px; font-weight: 900; color: #032d60; margin-bottom: 16px; line-height: 1.25; }
.feature-text p { font-size: 16px; color: #718096; line-height: 1.8; margin-bottom: 24px; }
.feature-list { display: flex; flex-direction: column; gap: 12px; }
.feature-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15px;
	color: #4a5568;
}
.feature-list li .check {
	width: 20px;
	height: 20px;
	min-width: 20px;
	background: #c6f6d5;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	color: #276b3e;
	margin-top: 2px;
}
.feature-visual {
	background: #f7fafc;
	border-radius: 16px;
	padding: 32px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
	border: 1px solid #e2e8f0;
	min-height: 320px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.feature-visual .visual-header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid #e2e8f0;
}
.visual-dot { width: 8px; height: 8px; border-radius: 50%; }
.visual-dot.r { background: #fc5753; }
.visual-dot.y { background: #fdbc40; }
.visual-dot.g { background: #33c748; }
.visual-tab {
	background: #edf2f7;
	border-radius: 4px 4px 0 0;
	padding: 4px 12px;
	font-size: 11px;
	color: #718096;
	margin-left: 8px;
}
.visual-mockup-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid #edf2f7;
}
.visual-mockup-row:last-child { border-bottom: none; }
.vm-icon {
	width: 32px; height: 32px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}
.vm-text { flex: 1; }
.vm-text .vm-title { font-size: 13px; font-weight: 700; color: #1a202c; }
.vm-text .vm-sub { font-size: 11px; color: #a0aec0; }
.vm-badge {
	padding: 3px 10px;
	border-radius: 10px;
	font-size: 10px;
	font-weight: 700;
}
.vm-badge.green { background: #c6f6d5; color: #276b3e; }
.vm-badge.blue { background: #bee3f8; color: #2b6cb0; }
.vm-badge.orange { background: #feebc8; color: #975a16; }

/* ========== ROI CALCULATOR ========== */
.roi-section {
	padding: 100px 0;
	background: linear-gradient(170deg, #f0fff4 0%, #f5f7fa 100%);
}
.roi-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 60px;
	box-shadow: 0 8px 40px rgba(0,0,0,0.08);
	max-width: 900px;
	margin: 0 auto;
	border-top: 4px solid #2e844a;
}
.roi-card h2 { font-size: 32px; font-weight: 900; color: #032d60; text-align: center; margin-bottom: 8px; }
.roi-card .roi-subtitle { text-align: center; color: #718096; font-size: 16px; margin-bottom: 40px; }
.roi-inputs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	margin-bottom: 40px;
}
.roi-input-group label { display: block; font-size: 14px; font-weight: 700; color: #032d60; margin-bottom: 12px; }
.roi-input-group .slider-value { font-size: 28px; font-weight: 900; color: #2e844a; margin-bottom: 8px; }
.roi-input-group input[type="range"] {
	width: 100%;
	height: 6px;
	-webkit-appearance: none;
	appearance: none;
	background: #e2e8f0;
	border-radius: 3px;
	outline: none;
}
.roi-input-group input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 22px;
	height: 22px;
	background: #2e844a;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(46,132,74,0.3);
}
.roi-results {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	background: linear-gradient(135deg, #032d60, #054a91);
	border-radius: 16px;
	padding: 32px;
}
.roi-result { text-align: center; color: #fff; }
.roi-result .roi-num { font-size: 36px; font-weight: 900; margin-bottom: 4px; }
.roi-result .roi-label { font-size: 13px; opacity: 0.7; }

/* ========== PLUGIN CATALOG ========== */
.catalog { padding: 100px 0; background: #ffffff; }
.catalog-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 32px;
}
.catalog-featured {
	background: #ffffff;
	border-radius: 20px;
	border: 2px solid #2e844a;
	box-shadow: 0 8px 32px rgba(46,132,74,0.1);
	padding: 40px;
	position: relative;
	overflow: hidden;
}
.catalog-featured::before {
	content: 'ПОПУЛЯРНОЕ';
	position: absolute;
	top: 20px;
	right: -32px;
	background: #2e844a;
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 1px;
	padding: 6px 40px;
	transform: rotate(45deg);
}
.catalog-featured .cf-header { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.cf-icon {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, #2e844a, #48bb78);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 28px;
	font-weight: 900;
}
.cf-meta h3 { font-size: 24px; font-weight: 900; color: #032d60; }
.cf-meta .cf-version { font-size: 13px; color: #718096; }
.catalog-featured .cf-desc { font-size: 15px; color: #4a5568; line-height: 1.7; margin-bottom: 24px; }
.cf-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.cf-tags span {
	background: #f0fff4;
	color: #276b3e;
	padding: 4px 12px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 600;
}
.cf-actions { display: flex; gap: 12px; }
.btn-demo {
	display: inline-block;
	padding: 12px 28px;
	background: #032d60;
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.25s;
	font-family: 'Nunito Sans', sans-serif;
}
.btn-demo:hover { background: #021e42; transform: translateY(-1px); }
.btn-buy {
	display: inline-block;
	padding: 12px 28px;
	background: #2e844a;
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.25s;
	font-family: 'Nunito Sans', sans-serif;
}
.btn-buy:hover { background: #276b3e; transform: translateY(-1px); }
.catalog-side { display: flex; flex-direction: column; gap: 20px; }
.catalog-mini {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 24px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.04);
	opacity: 0.7;
	position: relative;
}
.catalog-mini .soon-badge {
	display: inline-block;
	background: #fefcbf;
	color: #975a16;
	font-size: 10px;
	font-weight: 800;
	padding: 3px 10px;
	border-radius: 10px;
	margin-bottom: 8px;
}
.catalog-mini h4 { font-size: 16px; font-weight: 700; color: #032d60; margin-bottom: 4px; }
.catalog-mini p { font-size: 13px; color: #a0aec0; }

/* ========== TESTIMONIALS CAROUSEL ========== */
.testimonials { padding: 100px 0; background: #f5f7fa; }
.testimonial-carousel {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}
.testimonial-track {
	display: flex;
	transition: transform 0.5s ease;
}
.testimonial-slide { min-width: 100%; padding: 0 20px; }
.testimonial-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 48px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	text-align: center;
	border-top: 4px solid #2e844a;
}
.testimonial-card .stars { font-size: 20px; color: #f59e0b; margin-bottom: 20px; letter-spacing: 4px; }
.testimonial-card blockquote { font-size: 18px; color: #4a5568; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-card .author { display: flex; align-items: center; justify-content: center; gap: 12px; }
.testimonial-card .author-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 18px;
	color: #fff;
}
.testimonial-card .author-info .name { font-size: 15px; font-weight: 700; color: #032d60; }
.testimonial-card .author-info .role { font-size: 13px; color: #a0aec0; }
.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 32px; }
.carousel-dots .dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #cbd5e0;
	border: none;
	cursor: pointer;
	transition: all 0.3s;
	padding: 0;
}
.carousel-dots .dot.active {
	background: #2e844a;
	width: 28px;
	border-radius: 5px;
}

/* ========== PRICING TABLE ========== */
.pricing { padding: 100px 0; background: #ffffff; }
.pricing-table-wrapper { overflow-x: auto; margin-top: 20px; }
.pricing-comparison { width: 100%; border-collapse: collapse; min-width: 700px; }
.pricing-comparison thead th {
	padding: 24px 20px;
	text-align: center;
	font-size: 13px;
	font-weight: 700;
	color: #718096;
	border-bottom: 2px solid #e2e8f0;
	vertical-align: bottom;
}
.pricing-comparison thead th:first-child { text-align: left; width: 280px; }
.pricing-comparison thead .plan-name { font-size: 20px; font-weight: 900; color: #032d60; display: block; margin-bottom: 4px; }
.pricing-comparison thead .plan-price { font-size: 28px; font-weight: 900; color: #2e844a; display: block; }
.pricing-comparison thead .plan-price small { font-size: 14px; font-weight: 600; color: #a0aec0; }
.pricing-comparison thead .plan-sub { font-size: 12px; color: #a0aec0; display: block; margin-top: 2px; }
.pricing-comparison thead th.highlighted {
	background: #f0fff4;
	border-top: 4px solid #2e844a;
	border-radius: 12px 12px 0 0;
	position: relative;
}
.pricing-comparison thead th.highlighted::after {
	content: 'ВЫГОДНО';
	position: absolute;
	top: 8px;
	right: 12px;
	background: #2e844a;
	color: #fff;
	font-size: 9px;
	font-weight: 800;
	padding: 2px 8px;
	border-radius: 6px;
	letter-spacing: 1px;
}
.pricing-comparison tbody td {
	padding: 16px 20px;
	text-align: center;
	font-size: 14px;
	color: #4a5568;
	border-bottom: 1px solid #f0f4f8;
}
.pricing-comparison tbody td:first-child { text-align: left; font-weight: 600; color: #1a202c; }
.pricing-comparison tbody td.highlighted { background: #f0fff4; }
.pricing-comparison tbody tr:hover td { background: #f7fafc; }
.pricing-comparison tbody tr:hover td.highlighted { background: #e6ffed; }
.pricing-comparison .check { color: #2e844a; font-weight: 700; font-size: 18px; }
.pricing-comparison .cross { color: #cbd5e0; font-size: 18px; }
.pricing-comparison .category-row td {
	background: #f7fafc;
	font-weight: 800;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #032d60;
	padding: 12px 20px;
}
.pricing-comparison tfoot td { padding: 24px 20px; text-align: center; border-top: 2px solid #e2e8f0; }
.pricing-comparison tfoot td:first-child { text-align: left; }
.btn-pricing {
	display: inline-block;
	padding: 12px 28px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 700;
	border: none;
	cursor: pointer;
	transition: all 0.25s;
	font-family: 'Nunito Sans', sans-serif;
}
.btn-pricing.outline { background: transparent; border: 2px solid #e2e8f0; color: #4a5568; }
.btn-pricing.outline:hover { border-color: #032d60; color: #032d60; }
.btn-pricing.filled { background: #2e844a; color: #fff; box-shadow: 0 2px 8px rgba(46,132,74,0.3); }
.btn-pricing.filled:hover { background: #276b3e; transform: translateY(-1px); }
.btn-pricing.dark { background: #032d60; color: #fff; }
.btn-pricing.dark:hover { background: #021e42; transform: translateY(-1px); }

/* ========== FAQ ========== */
.faq { padding: 100px 0; background: #f5f7fa; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.faq-item {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.04);
	overflow: hidden;
	border: 1px solid #e2e8f0;
	transition: box-shadow 0.3s;
}
.faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.faq-question {
	width: 100%;
	text-align: left;
	background: none;
	border: none;
	padding: 20px 24px;
	font-size: 15px;
	font-weight: 700;
	color: #032d60;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	font-family: 'Nunito Sans', sans-serif;
}
.faq-question .faq-icon {
	width: 24px;
	height: 24px;
	min-width: 24px;
	background: #f0fff4;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: #2e844a;
	transition: transform 0.3s;
}
.faq-item.open .faq-question .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 14px; color: #718096; line-height: 1.7; }

/* ========== CTA SECTION ========== */
.cta-section {
	padding: 100px 0;
	background: linear-gradient(170deg, #032d60 0%, #054a91 100%);
	position: relative;
	overflow: hidden;
}
.cta-section::before {
	content: '';
	position: absolute;
	top: -40%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(46,132,74,0.15), transparent);
	border-radius: 50%;
}
.cta-inner { text-align: center; position: relative; z-index: 2; }
.cta-inner h2 { font-size: 40px; font-weight: 900; color: #ffffff; margin-bottom: 16px; }
.cta-inner p {
	font-size: 18px;
	color: rgba(255,255,255,0.7);
	margin-bottom: 40px;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-cta-primary {
	display: inline-block;
	padding: 16px 40px;
	background: #2e844a;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.25s;
	font-family: 'Nunito Sans', sans-serif;
	box-shadow: 0 4px 16px rgba(46,132,74,0.3);
}
.btn-cta-primary:hover { background: #276b3e; transform: translateY(-2px); }
.btn-cta-secondary {
	display: inline-block;
	padding: 16px 40px;
	background: transparent;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	border: 2px solid rgba(255,255,255,0.3);
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.25s;
	font-family: 'Nunito Sans', sans-serif;
}
.btn-cta-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ========== MEGA FOOTER ========== */
.footer {
	background: #0a1628;
	padding: 80px 0 0;
	color: #a0aec0;
}
.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
	gap: 40px;
	margin-bottom: 60px;
}
.footer-brand .footer-logo {
	font-size: 22px;
	font-weight: 900;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
}
.footer-brand .footer-logo-icon {
	width: 32px;
	height: 32px;
	background: linear-gradient(135deg, #2e844a, #48bb78);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 14px;
	font-weight: 900;
}
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
	width: 36px;
	height: 36px;
	background: rgba(255,255,255,0.08);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #a0aec0;
	font-size: 14px;
	transition: all 0.2s;
	font-weight: 700;
}
.footer-social a:hover { background: #2e844a; color: #fff; }
.footer-col h4 {
	font-size: 13px;
	font-weight: 800;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: #718096; transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-newsletter h4 {
	font-size: 13px;
	font-weight: 800;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 12px;
}
.footer-newsletter p { font-size: 13px; margin-bottom: 16px; }
.footer-newsletter-form { display: flex; gap: 8px; }
.footer-newsletter-form input {
	flex: 1;
	padding: 10px 14px;
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: 8px;
	background: rgba(255,255,255,0.05);
	color: #fff;
	font-size: 13px;
	font-family: 'Nunito Sans', sans-serif;
}
.footer-newsletter-form input::placeholder { color: #4a5568; }
.footer-newsletter-form button {
	padding: 10px 18px;
	background: #2e844a;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-weight: 700;
	font-size: 13px;
	cursor: pointer;
	transition: background 0.2s;
	font-family: 'Nunito Sans', sans-serif;
}
.footer-newsletter-form button:hover { background: #276b3e; }
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.08);
	padding: 24px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}
.footer-bottom p { font-size: 13px; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: #718096; transition: color 0.2s; }
.footer-bottom-links a:hover { color: #fff; }

/* ========== FOCUS STATES (Accessibility) ========== */
.btn-primary:focus-visible,
.btn-hero:focus-visible,
.btn-demo:focus-visible,
.btn-buy:focus-visible,
.btn-pricing:focus-visible,
.btn-cta-primary:focus-visible,
.btn-cta-secondary:focus-visible,
.btn-login:focus-visible,
.faq-question:focus-visible,
.carousel-dots .dot:focus-visible,
.mobile-toggle:focus-visible,
.footer-newsletter-form button:focus-visible {
	outline: 2px solid #2e844a;
	outline-offset: 2px;
}
.nav-links a:focus-visible { color: #032d60; }
.nav-links a:focus-visible::after { width: 100%; }
.footer-newsletter-form input:focus-visible {
	outline: 2px solid #2e844a;
	outline-offset: -1px;
	border-color: #2e844a;
}

/* ========== NAV DROPDOWN (Plugins) ========== */
.nav-dropdown {
	position: relative;
	display: flex;
	align-items: center;
}
.nav-dropdown__trigger {
	font-size: 15px;
	font-weight: 600;
	color: #4a5568;
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 0;
	font-family: inherit;
	transition: color 0.2s;
}
.nav-dropdown__trigger:hover { color: #032d60; }
.nav-dropdown__arrow { transition: transform 0.2s; }
.nav-dropdown.open .nav-dropdown__arrow { transform: rotate(180deg); }
.nav-dropdown__menu {
	display: none;
	position: absolute;
	top: calc(100% + 14px);
	left: 50%;
	transform: translateX(-50%);
	min-width: 220px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
	padding: 8px 0;
	z-index: 1000;
	animation: dropdownFade 0.2s ease;
}
.nav-dropdown.open .nav-dropdown__menu { display: block; }
.nav-dropdown__menu::before {
	content: '';
	position: absolute;
	top: -6px;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	width: 12px;
	height: 12px;
	background: #fff;
	box-shadow: -2px -2px 4px rgba(0,0,0,0.04);
}
@keyframes dropdownFade {
	from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
	to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.nav-dropdown__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 18px;
	font-size: 14px;
	font-weight: 600;
	color: #2d3748;
	transition: background 0.15s, color 0.15s;
}
.nav-dropdown__item:hover { background: #f0fdf4; color: #2e844a; }
.nav-dropdown__item--soon { opacity: 0.55; }
.nav-dropdown__badge {
	font-size: 11px;
	font-weight: 700;
	color: #718096;
	background: #edf2f7;
	padding: 2px 8px;
	border-radius: 10px;
}
.nav-dropdown__empty {
	display: block;
	padding: 12px 18px;
	font-size: 13px;
	color: #a0aec0;
}

/* ========== NAV CART ========== */
.nav-cart {
	position: relative;
	display: flex;
	align-items: center;
}
.nav-cart__link {
	position: relative;
	display: flex;
	align-items: center;
	padding: 6px;
	border-radius: 8px;
	color: #4a5568;
	transition: background 0.2s, color 0.2s;
}
.nav-cart__link:hover { background: #f7fafc; color: #032d60; }
.nav-cart__count {
	position: absolute;
	top: -2px;
	right: -4px;
	min-width: 18px;
	height: 18px;
	background: #2e844a;
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
	line-height: 1;
}
.nav-cart__count--empty { display: none; }
.nav-cart__dropdown {
	display: none;
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	min-width: 300px;
	max-width: 360px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.06);
	z-index: 1000;
	animation: dropdownFade 0.2s ease;
}
.nav-cart.open .nav-cart__dropdown { display: block; }
.nav-cart__dropdown-inner { padding: 16px; }
.nav-cart__dropdown-inner .woocommerce-mini-cart { list-style: none; padding: 0; margin: 0; }
.nav-cart__dropdown-inner .woocommerce-mini-cart-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
	border-bottom: 1px solid #f1f5f9;
	font-size: 13px;
}
.nav-cart__dropdown-inner .woocommerce-mini-cart-item:last-child { border-bottom: 0; }
.nav-cart__dropdown-inner .woocommerce-mini-cart-item a.remove { color: #e53e3e !important; font-size: 18px; text-decoration: none; }
.nav-cart__dropdown-inner .woocommerce-mini-cart__total {
	display: flex;
	justify-content: space-between;
	padding: 12px 0 8px;
	border-top: 1px solid #e2e8f0;
	font-weight: 700;
	font-size: 14px;
}
.nav-cart__dropdown-inner .woocommerce-mini-cart__buttons {
	display: flex;
	gap: 8px;
	padding-top: 8px;
}
.nav-cart__dropdown-inner .woocommerce-mini-cart__buttons a {
	flex: 1;
	text-align: center;
	padding: 10px 14px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 700;
	transition: all 0.2s;
}
.nav-cart__dropdown-inner .woocommerce-mini-cart__buttons .button:first-child {
	background: #f7fafc;
	color: #2d3748;
	border: 1px solid #e2e8f0;
}
.nav-cart__dropdown-inner .woocommerce-mini-cart__buttons .button:first-child:hover {
	background: #edf2f7;
}
.nav-cart__dropdown-inner .woocommerce-mini-cart__buttons .checkout {
	background: #2e844a;
	color: #fff;
}
.nav-cart__dropdown-inner .woocommerce-mini-cart__buttons .checkout:hover {
	background: #276b3e;
}
.nav-cart__dropdown-inner .woocommerce-mini-cart__empty-message {
	text-align: center;
	padding: 20px 0;
	color: #a0aec0;
	font-size: 13px;
}

/* ========== FOOTER ACCORDION (mobile) ========== */
.footer-col__heading {
	font-size: 13px;
	font-weight: 800;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 20px;
}
.footer-col__list { list-style: none; padding: 0; margin: 0; }
.footer-col__list li { margin-bottom: 10px; }
.footer-col__list li a { font-size: 14px; color: #718096; transition: color 0.2s; }
.footer-col__list li a:hover { color: #fff; }
.footer-badge {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	color: #a0aec0;
	background: rgba(255,255,255,0.06);
	padding: 1px 6px;
	border-radius: 8px;
	margin-left: 6px;
	vertical-align: middle;
}

/* ========== MOBILE NAV ========== */
.nav-links.show {
	display: flex !important;
	flex-direction: column;
	position: absolute;
	top: 72px;
	left: 0;
	right: 0;
	background: #ffffff;
	border-bottom: 1px solid #e2e8f0;
	padding: 16px 24px;
	gap: 16px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.1);
	z-index: 998;
	animation: mobileNavSlide 0.25s ease;
}
.nav-actions.show {
	display: flex !important;
	flex-direction: column;
	position: absolute;
	top: auto;
	left: 0;
	right: 0;
	background: #ffffff;
	padding: 0 24px 16px;
	gap: 12px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.1);
	z-index: 998;
}
@keyframes mobileNavSlide {
	from { opacity: 0; transform: translateY(-8px); }
	to { opacity: 1; transform: translateY(0); }
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
	.testimonial-track { transition: none; }
	html { scroll-behavior: auto; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
	.hero .container-wide { grid-template-columns: 1fr; }
	.hero-dashboard { max-width: 500px; margin-top: 40px; }
	.hero-text h1 { font-size: 38px; }
	.feature-row { grid-template-columns: 1fr; gap: 40px; }
	.feature-row.reverse .feature-text { order: 1; }
	.feature-row.reverse .feature-visual { order: 2; }
	.catalog-grid { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: repeat(2, 1fr); }
	.roi-card { padding: 40px 32px; }
}
@media (max-width: 768px) {
	.nav-links { display: none; }
	.nav-actions { display: none; }
	.mobile-toggle { display: block; }
	.navbar .container-wide { position: relative; }
	/* Keep cart icon visible on mobile beside hamburger */
	.navbar .nav-cart {
		display: flex !important;
		position: absolute;
		right: 56px;
		top: 50%;
		transform: translateY(-50%);
	}
	.hero-text h1 { font-size: 30px; }
	.hero { padding: 60px 0 80px; }
	.hero-form { flex-direction: column; }
	.benefits-grid { grid-template-columns: 1fr; }
	.benefits, .features, .roi-section, .catalog, .testimonials, .pricing, .faq, .cta-section { padding: 60px 0; }
	.roi-inputs { grid-template-columns: 1fr; }
	.roi-card { padding: 24px 20px; }
	.roi-results { grid-template-columns: 1fr; gap: 16px; }
	.faq-grid { grid-template-columns: 1fr; }
	.section-header h2 { font-size: 28px; }
	.footer-grid { grid-template-columns: 1fr; }
	.cta-inner h2 { font-size: 28px; }
	.testimonial-card { padding: 32px 20px; }
	.testimonial-card blockquote { font-size: 16px; }

	/* Footer accordion on mobile */
	.footer-col--accordion .footer-col__heading {
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 0;
		padding: 14px 0;
		border-bottom: 1px solid rgba(255,255,255,0.08);
		user-select: none;
	}
	.footer-col--accordion .footer-col__heading::after {
		content: '+';
		font-size: 18px;
		font-weight: 400;
		color: #718096;
		transition: transform 0.2s;
	}
	.footer-col--accordion.open .footer-col__heading::after {
		content: '\2212';
	}
	.footer-col--accordion .footer-col__list,
	.footer-col--accordion > .menu {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}
	.footer-col--accordion.open .footer-col__list,
	.footer-col--accordion.open > .menu {
		max-height: 300px;
		padding-top: 12px;
	}

	/* Nav dropdown in mobile menu */
	.nav-links.show .nav-dropdown { width: 100%; }
	.nav-links.show .nav-dropdown__menu {
		position: static;
		transform: none;
		box-shadow: none;
		border-radius: 8px;
		background: #f7fafc;
		margin-top: 4px;
	}
	.nav-links.show .nav-dropdown__menu::before { display: none; }

	/* Cart visible on mobile */
	.nav-cart { order: -1; }
}
@media (max-width: 480px) {
	.announcement-bar { font-size: 12px; padding: 8px 40px 8px 12px; }
	.section-header h2 { font-size: 24px; }
	.hero-text h1 { font-size: 26px; }
	.hero-text .subtitle { font-size: 16px; }
	.feature-text h3 { font-size: 24px; }
	.roi-card h2 { font-size: 24px; }
	.roi-result .roi-num { font-size: 28px; }
	.cta-inner h2 { font-size: 24px; }
	.cta-buttons { flex-direction: column; align-items: center; }
	.btn-cta-primary, .btn-cta-secondary { width: 100%; text-align: center; }
}

/* ========== LANGUAGE SWITCHER ========== */
.lang-switcher {
	display: flex;
	align-items: center;
	gap: 2px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.5px;
	user-select: none;
}
.lang-switcher__current {
	color: #1a202c;
	padding: 4px 6px;
	border-radius: 4px;
	background: #edf2f7;
}
.lang-switcher__sep {
	color: #a0aec0;
	margin: 0 1px;
}
.lang-switcher__link {
	color: #718096;
	padding: 4px 6px;
	border-radius: 4px;
	text-decoration: none;
	transition: color 0.2s, background 0.2s;
}
.lang-switcher__link:hover {
	color: #1a202c;
	background: #edf2f7;
}
