/* EYY Mirror - zh-eyy.com style */

:root {
	--primary: #10b981;
	--primary-dark: #059669;
	--accent: #0ea5e9;
	--text: #1f2937;
	--text-light: #6b7280;
	--bg: #ffffff;
	--bg-soft: #f9fafb;
	--border: #e5e7eb;
	--radius: 10px;
	--radius-lg: 16px;
	--shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.1);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
	color: var(--text);
	background: var(--bg);
	line-height: 1.7;
	font-size: 15px;
	-webkit-font-smoothing: antialiased;
}

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

a:hover {
	color: var(--primary-dark);
}

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

ul,
ol {
	list-style: none;
}

.container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Header */

.header {
	position: sticky;
	top: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border);
	z-index: 100;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
	gap: 20px;
}

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

.logo-icon {
	width: 32px;
	height: 32px;
	display: inline-block;
	vertical-align: middle;
}

.logo-text {
	display: inline-block;
	vertical-align: middle;
	font-weight: 700;
}

.nav {
	display: flex;
	gap: 28px;
}

.nav a {
	color: var(--text);
	font-size: 14px;
	font-weight: 500;
}

.nav a:hover,
.nav a.active {
	color: var(--primary);
}

.nav-cta {
	background: var(--primary);
	color: #fff;
	padding: 9px 20px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
}

.nav-cta:hover {
	background: var(--primary-dark);
	color: #fff;
}

.hamburger {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	font-size: 20px;
}

/* Hero */

.hero {
	padding: 80px 0 100px;
	background: linear-gradient(180deg, #fff 0%, #f0fdf4 100%);
	text-align: center;
}

.hero-badge {
	display: inline-block;
	padding: 6px 16px;
	background: #ecfdf5;
	color: var(--primary-dark);
	border-radius: 100px;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 20px;
}

.hero h1 {
	font-size: 48px;
	line-height: 1.2;
	font-weight: 800;
	margin-bottom: 20px;
	letter-spacing: -0.5px;
}

.hero h1 .hl {
	color: var(--primary);
}

.hero p {
	font-size: 18px;
	color: var(--text-light);
	margin-bottom: 32px;
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
}

.hero-actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 28px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: 0.2s;
	border: none;
	text-decoration: none;
}

.btn-primary {
	background: var(--primary);
	color: #fff;
}

.btn-primary:hover {
	background: var(--primary-dark);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
	background: #fff;
	color: var(--text);
	border: 1px solid var(--border);
}

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

.hero-stats {
	display: flex;
	gap: 40px;
	margin-top: 50px;
	padding-top: 30px;
	border-top: 1px solid var(--border);
	justify-content: center;
	flex-wrap: wrap;
}

.hero-stat .num {
	font-size: 32px;
	font-weight: 800;
	color: var(--primary);
}

.hero-stat .lbl {
	font-size: 13px;
	color: var(--text-light);
}

/* Sections */

section {
	padding: 80px 0;
}

.eyebrow {
	color: var(--primary);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 12px;
	display: block;
}

.section-title {
	font-size: 36px;
	font-weight: 800;
	margin-bottom: 16px;
	line-height: 1.2;
}

.section-sub {
	font-size: 16px;
	color: var(--text-light);
	max-width: 680px;
	line-height: 1.7;
}

.section-head {
	text-align: center;
	margin-bottom: 56px;
}

.section-head .section-sub {
	margin: 0 auto;
}

/* Cards */

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

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

.card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 32px 28px;
	transition: 0.3s;
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary);
}

.card-icon {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	background: #ecfdf5;
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	margin-bottom: 18px;
}

.card h3 {
	font-size: 19px;
	font-weight: 700;
	margin-bottom: 10px;
}

.card p {
	color: var(--text-light);
	font-size: 14px;
	line-height: 1.7;
}

/* Feature rows */

.feature-section {
	background: var(--bg-soft);
}

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

.feature-row.reverse > div:first-child {
	order: 2;
}

.feature-text h2 {
	font-size: 30px;
	font-weight: 800;
	margin-bottom: 16px;
}

.feature-text p {
	color: var(--text-light);
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 14px;
}

.feature-text ul {
	margin-top: 18px;
}

.feature-text ul li {
	padding: 8px 0;
	color: var(--text-light);
	display: flex;
	align-items: center;
	gap: 10px;
}

.feature-text ul li::before {
	content: "✓";
	color: var(--primary);
	font-weight: 700;
}

.feature-img {
	background: linear-gradient(135deg, #ecfdf5, #f0f9ff);
	border-radius: var(--radius-lg);
	padding: 40px;
	text-align: center;
	font-size: 80px;
}

/* Steps */

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

.step {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px 24px;
	position: relative;
}

.step-num {
	position: absolute;
	top: -16px;
	left: 24px;
	width: 32px;
	height: 32px;
	background: var(--primary);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}

.step h4 {
	font-size: 16px;
	font-weight: 700;
	margin: 8px 0 8px;
}

.step p {
	font-size: 13px;
	color: var(--text-light);
}

/* CTA */

.cta-section {
	background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
	color: #fff;
	text-align: center;
	padding: 80px 0;
}

.cta-section h2 {
	font-size: 36px;
	font-weight: 800;
	margin-bottom: 16px;
}

.cta-section p {
	font-size: 17px;
	opacity: 0.9;
	margin-bottom: 32px;
	max-width: 620px;
	margin-left: auto;
	margin-right: auto;
}

.cta-actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

.cta-section .btn-primary {
	background: #fff;
	color: var(--primary);
}

.cta-section .btn-secondary {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.3);
}

.cta-section .btn-secondary:hover {
	color: #fff;
	border-color: #fff;
}

/* Friendly links */

.friend-links {
	background: #fff;
	padding: 56px 0 64px;
	border-top: 1px solid var(--border);
}

.friend-links-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 26px;
}

.friend-links-list a {
	color: var(--text-light);
	font-size: 14px;
	padding: 4px 2px;
	border-bottom: 1px dashed var(--border);
}

.friend-links-list a:hover {
	color: var(--primary);
	border-color: var(--primary);
}

/* News center */

.news-center-section {
	background: var(--bg-soft);
	padding: 80px 0;
}

.news-center-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.news-center-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: 0.3s;
	color: var(--text);
}

.news-center-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary);
	text-decoration: none;
}

.news-center-card__media {
	overflow: hidden;
}

.news-center-card__media img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	display: block;
}

.news-center-card__body {
	padding: 20px 22px 24px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.news-center-card__body time {
	font-size: 12px;
	color: var(--text-light);
}

.news-center-card__body h3 {
	font-size: 17px;
	font-weight: 700;
	line-height: 1.5;
	margin: 0;
}

.news-center-card__body p {
	color: var(--text-light);
	font-size: 13px;
	line-height: 1.7;
	margin: 0;
}

/* News center list page */

.news-center-page {
	background: var(--bg-soft);
}

.news-center-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 36px;
	align-items: start;
}

.news-center-main {
	min-width: 0;
}

.news-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	max-width: 880px;
	margin: 0 auto;
}

.news-row {
	display: flex;
	align-items: center;
	gap: 20px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 16px 20px;
	transition: 0.3s;
}

.news-row:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary);
}

.news-row__thumb {
	flex: 0 0 120px;
	width: 120px;
	height: 80px;
	border-radius: 10px;
	overflow: hidden;
}

.news-row__thumb img {
	width: 120px;
	height: 80px;
	object-fit: cover;
	display: block;
	transition: 0.3s;
}

.news-row:hover .news-row__thumb img {
	transform: scale(1.05);
}

.news-row__body {
	flex: 1 1 auto;
	min-width: 0;
}

.news-row__title {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
	margin: 0 0 8px;
}

.news-row__title a {
	color: var(--text);
}

.news-row__title a:hover {
	color: var(--primary);
}

.news-row__time {
	font-size: 13px;
	color: var(--text-light);
}

.news-row__arrow {
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #ecfdf5;
	color: var(--primary);
	font-size: 18px;
	font-weight: 700;
}

.news-row:hover .news-row__arrow {
	background: var(--primary);
	color: #fff;
}

/* News sidebar */

.news-sidebar {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 24px;
	position: sticky;
	top: 84px;
}

.news-sidebar__heading {
	font-size: 18px;
	font-weight: 800;
	color: var(--text);
	padding-bottom: 14px;
	border-bottom: 2px solid var(--primary);
	margin-bottom: 14px;
}

.news-sidebar__list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.news-sidebar__item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 11px 0;
	border-bottom: 1px dashed var(--border);
}

.news-sidebar__item:last-child {
	border-bottom: 0;
}

.news-sidebar__icon {
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
	margin-top: 3px;
	border-radius: 50%;
	background: #ecfdf5;
	position: relative;
}

.news-sidebar__icon::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 5px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--primary);
}

.news-sidebar__link {
	flex: 1 1 auto;
	color: var(--text);
	font-size: 14px;
	line-height: 1.6;
}

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

.news-center-list {
	display: flex;
	flex-direction: column;
	gap: 18px;
	max-width: 880px;
	margin: 0 auto;
}

.news-center-list-item {
	display: flex;
	gap: 22px;
	align-items: flex-start;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 18px;
	transition: 0.3s;
}

.news-center-list-item:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary);
}

.news-center-list-item__media {
	flex: 0 0 220px;
	border-radius: var(--radius);
	overflow: hidden;
}

.news-center-list-item__media img {
	width: 220px;
	height: 124px;
	object-fit: cover;
	display: block;
}

.news-center-list-item__body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-top: 6px;
}

.news-center-list-item__title {
	font-size: 19px;
	font-weight: 700;
	line-height: 1.5;
	margin: 0;
}

.news-center-list-item__title a {
	color: var(--text);
}

.news-center-list-item__title a:hover {
	color: var(--primary);
}

.news-center-list-item__time {
	font-size: 13px;
	color: var(--text-light);
}

.news-pager {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 14px;
	margin-top: 36px;
}

.news-pager__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 22px;
	border-radius: 8px;
	border: 1px solid var(--border);
	background: #fff;
	color: var(--text);
	font-size: 14px;
	font-weight: 600;
}

.news-pager__prev {
	justify-self: start;
}

.news-pager__center {
	justify-self: center;
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
}

.news-pager__next {
	justify-self: end;
}

.news-pager__btn:hover {
	border-color: var(--primary);
	color: var(--primary);
}

.news-pager__center:hover {
	background: var(--primary-dark);
	color: #fff;
}

.news-pager__btn.is-empty {
	opacity: 0.5;
	cursor: default;
	pointer-events: none;
}

/* Pages */

.page-section,
.article-section {
	padding: 60px 0;
}

.page-hero {
	padding: 56px 0 48px;
	background: linear-gradient(180deg, #fff 0%, #f0fdf4 100%);
	text-align: center;
}

.page-hero .hero-badge {
	margin-bottom: 14px;
}

.page-hero h2 {
	font-size: 40px;
	font-weight: 800;
	margin-bottom: 12px;
	line-height: 1.2;
}

.page-hero p {
	color: var(--text-light);
	font-size: 17px;
	max-width: 680px;
	margin: 0 auto;
}

.page-head {
	text-align: center;
	margin-bottom: 40px;
}

.page-title {
	font-size: 36px;
	font-weight: 800;
	margin-bottom: 12px;
	line-height: 1.2;
}

.page-subtitle {
	color: var(--text-light);
	font-size: 16px;
}

.article-content {
	max-width: 880px;
	margin: 0 auto;
}

.article-content h2 {
	font-size: 28px;
	font-weight: 800;
	margin: 40px 0 20px;
}

.article-content h3 {
	font-size: 20px;
	font-weight: 700;
	margin: 32px 0 12px;
}

.article-content p {
	color: var(--text-light);
	margin-bottom: 16px;
	line-height: 1.8;
}

.article-content ul,
.article-content ol {
	margin: 16px 0 16px 24px;
	color: var(--text-light);
}

.article-content li {
	margin-bottom: 8px;
	line-height: 1.8;
}

.article-content strong {
	color: var(--text);
	font-weight: 600;
}

.article-content .wp-block-buttons {
	margin: 28px 0;
	text-align: center;
}

.article-content .wp-block-button__link {
	background: var(--primary);
	color: #fff;
	padding: 13px 28px;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
}

.article-content .faq-section {
	background: var(--bg-soft);
}

.faq-list {
	max-width: 880px;
	margin: 0 auto;
}

.faq-item {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	margin-bottom: 12px;
	overflow: hidden;
}

.faq-q {
	padding: 22px 28px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
}

.faq-q::after {
	content: "+";
	font-size: 24px;
	color: var(--primary);
	transition: 0.3s;
	font-weight: 300;
}

.faq-item.open .faq-q::after {
	transform: rotate(45deg);
}

.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s;
}

.faq-item.open .faq-a {
	max-height: 500px;
}

.faq-a-inner {
	padding: 0 28px 22px;
	color: var(--text-light);
	line-height: 1.8;
	font-size: 14px;
}

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

.dl-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 32px 24px;
	text-align: center;
	transition: 0.3s;
}

.dl-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary);
}

.dl-icon {
	font-size: 44px;
	margin-bottom: 14px;
}

.dl-card h3 {
	font-size: 18px;
	margin-bottom: 6px;
}

.dl-card .dl-meta {
	color: var(--text-light);
	font-size: 13px;
	margin-bottom: 18px;
}

.dl-card .btn {
	width: 100%;
	justify-content: center;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 40px;
}

.contact-block {
	background: linear-gradient(135deg, var(--primary), var(--accent));
	color: #fff;
	border-radius: var(--radius-lg);
	padding: 40px;
}

.contact-block h3 {
	font-size: 22px;
	margin-bottom: 12px;
}

.contact-block p {
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 24px;
}

.contact-item {
	padding: 14px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-item h4 {
	font-size: 14px;
	margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
	color: rgba(255, 255, 255, 0.85);
	font-size: 14px;
	margin: 0;
}

.contact-form {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 40px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--border);
	border-radius: 8px;
	font-size: 14px;
	font-family: inherit;
	transition: 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 110px;
}

.table-wrap {
	overflow-x: auto;
	margin: 24px 0;
	border: 1px solid var(--border);
	border-radius: var(--radius);
}

.table-wrap table {
	width: 100%;
	border-collapse: collapse;
}

.table-wrap th,
.table-wrap td {
	padding: 14px 18px;
	text-align: left;
	border-bottom: 1px solid var(--border);
	font-size: 14px;
}

.table-wrap th {
	background: var(--bg-soft);
	font-weight: 600;
}

.table-wrap tr:last-child td {
	border-bottom: none;
}

.article-meta {
	color: var(--text-light);
	font-size: 13px;
	margin-bottom: 12px;
}

.article-meta a {
	color: var(--primary);
}

.article-title {
	font-size: 36px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 24px;
}

.article-media {
	margin: 0 0 24px;
	border-radius: var(--radius);
	overflow: hidden;
}

.article-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid var(--border);
}

.article-nav__btn {
	display: inline-flex;
	align-items: center;
	padding: 11px 20px;
	border-radius: 8px;
	border: 1px solid var(--border);
	background: #fff;
	color: var(--text);
	font-size: 14px;
	font-weight: 600;
	max-width: 320px;
	line-height: 1.4;
}

.article-nav__btn:hover {
	border-color: var(--primary);
	color: var(--primary);
}

.article-nav__prev {
	margin-right: auto;
	text-align: left;
}

.article-nav__center {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
}

.article-nav__center:hover {
	background: var(--primary-dark);
	color: #fff;
}

.article-nav__next {
	margin-left: auto;
	text-align: right;
}

.article-nav__btn.is-empty {
	opacity: 0.5;
	cursor: default;
	pointer-events: none;
}

.news-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 24px;
}

.news-card {
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px;
}

.news-card h2 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
}

.news-card time {
	font-size: 12px;
	color: var(--text-light);
}

.news-card p {
	margin-top: 8px;
	color: var(--text-light);
	font-size: 14px;
}

.error-404 {
	text-align: center;
	padding: 60px 0;
}

.error-404 h1 {
	font-size: 80px;
	color: var(--primary);
}

.pagination,
.nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin: 30px 0;
}

.page-numbers {
	padding: 8px 14px;
	border: 1px solid var(--border);
	border-radius: 8px;
}

.page-numbers.current {
	background: var(--primary);
	color: #fff;
}

/* Footer */

.site-footer {
	background: #1f2937;
	color: rgba(255, 255, 255, 0.6);
	padding: 56px 0 24px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 36px;
}

.footer-brand .logo {
	color: #fff;
	margin-bottom: 14px;
}

.brand-desc {
	font-size: 13px;
	line-height: 1.7;
}

.brand-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px;
	margin-top: 14px;
	font-size: 12px;
}

.brand-stats {
	display: flex;
	gap: 18px;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	flex-wrap: wrap;
}

.brand-stats strong {
	color: var(--primary);
	font-size: 15px;
	font-weight: 700;
}

.brand-stats span {
	font-size: 12px;
}

.footer-col h4 {
	color: #fff;
	font-size: 14px;
	margin-bottom: 14px;
	font-weight: 600;
}

.footer-col a {
	display: block;
	color: rgba(255, 255, 255, 0.6);
	padding: 5px 0;
	font-size: 13px;
}

.footer-col a:hover {
	color: var(--primary);
	padding-left: 4px;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 20px;
	text-align: center;
	font-size: 12px;
}

.footer-bottom p {
	margin: 4px 0;
}

.footer-bottom a {
	color: rgba(255, 255, 255, 0.6);
}

/* Responsive */

@media (max-width: 968px) {
	.nav {
		display: none;
		position: absolute;
		top: 64px;
		left: 0;
		right: 0;
		background: #fff;
		flex-direction: column;
		padding: 20px 0;
		border-bottom: 1px solid var(--border);
		gap: 0;
	}

	.nav.open {
		display: flex;
	}

	.nav.open a {
		padding: 12px 24px;
		width: 100%;
	}

	.hamburger {
		display: block;
	}

	.hero h1 {
		font-size: 36px;
	}

	.hero p {
		font-size: 16px;
	}

	.grid-3,
	.grid-2,
	.dl-grid {
		grid-template-columns: 1fr;
	}

	.feature-row {
		grid-template-columns: 1fr;
	}

	.feature-row.reverse > div:first-child {
		order: 0;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.steps {
		grid-template-columns: repeat(2, 1fr);
	}

	.section-title {
		font-size: 28px;
	}

	section {
		padding: 60px 0;
	}

	.news-grid {
		grid-template-columns: 1fr;
	}

	.news-center-grid {
		grid-template-columns: 1fr;
	}

	.news-center-list-item {
		flex-direction: column;
	}

	.news-center-list-item__media {
		flex: 1 1 auto;
		width: 100%;
	}

	.news-center-list-item__media img {
		width: 100%;
		height: auto;
		aspect-ratio: 16 / 9;
	}

	.news-row {
		gap: 14px;
		padding: 14px;
	}

	.news-row__thumb {
		flex-basis: 92px;
		width: 92px;
		height: 64px;
	}

	.news-row__thumb img {
		width: 92px;
		height: 64px;
	}

	.news-row__title {
		font-size: 17px;
	}

	.news-row__arrow {
		flex-basis: 34px;
		width: 34px;
		height: 34px;
		font-size: 15px;
	}

	.news-center-layout {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.news-sidebar {
		position: static;
	}

	.article-nav {
		flex-wrap: wrap;
		justify-content: center;
	}

	.article-nav__prev,
	.article-nav__next {
		margin: 0;
		max-width: 100%;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.hero {
		padding: 60px 0 70px;
	}

	.hero h1 {
		font-size: 28px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.steps {
		grid-template-columns: 1fr;
	}
}

/* Friend links inline (subtle one-liner) */
.friend-links-inline {
	margin: 0;
	font-size: 12px;
	line-height: 1.8;
	color: var(--text-light);
	text-align: center;
}
.friend-links-inline a {
	display: inline;
	margin: 0 8px;
	color: var(--text-light);
	border-bottom: none;
	padding: 0;
}
.friend-links-inline a:hover {
	color: var(--primary);
}
