/* ============================
   HARK — variabile & reset
============================ */
:root {
	--hark-yellow: #FFE500;
	--hark-black: #111;
	--hark-offwhite: #f6f5f0;
	--hark-gray-text: #d8d8d8;
	--hark-border: 3px solid var(--hark-black);
}

* { box-sizing: border-box; }

body {
	margin: 0;
	background: #fff;
	color: var(--hark-black);
	font-family: Archivo, system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

a { color: var(--hark-black); text-decoration: none; }
a:hover { color: #6b6b00; }
img { max-width: 100%; display: block; }

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

.hark-content { width: 100%; overflow-x: hidden; }

.visually-hidden {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ============================
   Tipografie
============================ */
.h1, .h2, .h3 {
	font-family: 'Archivo Black', sans-serif;
	line-height: 1;
	letter-spacing: -0.025em;
	margin: 0;
	text-wrap: balance;
}
.h1 { font-size: clamp(30px, 3.8vw, 48px); line-height: 1.02; }
.h2 { font-size: clamp(30px, 3.4vw, 46px); }
.h2--sm { font-size: clamp(28px, 3vw, 40px); line-height: 0.98; }
.h2--xl { font-size: clamp(32px, 4vw, 54px); line-height: 0.98; }
.h3 { font-size: 22px; }
.h3--lg { font-size: 24px; }

.eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.eyebrow--accent { color: var(--hark-yellow); }
.eyebrow--muted { color: #777; font-size: 12px; letter-spacing: 0.14em; }

.p-lead { font-size: 17px; line-height: 1.6; margin: 0; max-width: 50ch; text-wrap: pretty; }
.p-lead--wide { max-width: 68ch; }
.p-hero { font-size: clamp(17px, 1.5vw, 21px); line-height: 1.5; font-weight: 500; margin: 0; max-width: 46ch; }
.p-body { font-size: 16px; line-height: 1.6; margin: 0; max-width: 52ch; }
.p-strong { font-size: 18px; font-weight: 700; margin: 0; }
.p-strong.p-lg { font-size: 21px; line-height: 1.3; }
.p-small { font-size: 14px; line-height: 1.55; margin: 0; }
.p-tiny { font-size: 13px; line-height: 1.5; margin: 0; }
.p-muted { color: #555; }
.p-muted-light { color: #bdbdbd; }
.p-accent { color: var(--hark-yellow); font-weight: 700; }

.highlight {
	background: var(--hark-yellow);
	color: var(--hark-black);
	font-weight: 700;
	padding: 0 6px;
	border-radius: 3px;
}

.callout {
	font-size: 20px;
	font-weight: 700;
	margin: 0;
	padding: 14px 18px;
	background: var(--hark-yellow);
	border: var(--hark-border);
	border-radius: 14px;
	align-self: flex-start;
}

/* ============================
   Layout helpers
============================ */
.stack { display: flex; flex-direction: column; min-width: 0; }
.stack--12 { gap: 12px; }
.stack--14 { gap: 14px; }
.stack--16 { gap: 16px; }
.stack--18 { gap: 18px; }
.stack--20 { gap: 20px; }
.stack--22 { gap: 22px; }
.stack--26 { gap: 26px; }
.stack--40 { gap: 40px; }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 52px; }
.grid-2--hero { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 56px; }
.grid-2--tight { gap: 48px; }
.grid-align-center { align-items: center; }
.grid-align-start { align-items: start; }

.grid-4-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.grid-3-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.grid-videos { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 18px; }
.grid-platforms { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px 22px; }
.grid-feature-boxes { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; align-content: start; }

.tag-row, .btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row { gap: 14px; margin-top: 4px; }

.span-all { grid-column: 1 / -1; text-align: center; margin-top: 4px; }
.row-between-baseline { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px; justify-content: space-between; }
.self-center { align-self: center; margin-top: 6px; }
.stack--48 { gap: 48px; }

/* ============================
   Butoane
============================ */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: Archivo, sans-serif;
	font-size: 17px;
	font-weight: 700;
	border-radius: 999px;
	padding: 16px 28px;
	border: none;
	cursor: pointer;
	text-align: center;
}
.btn--dark { background: var(--hark-black); color: var(--hark-yellow); }
.btn--dark:hover { background: #333; color: var(--hark-yellow); }
.btn--outline {
	background: #fff;
	border: 3px solid var(--hark-black);
	color: var(--hark-black);
}
.btn--outline:hover { background: var(--hark-black); color: var(--hark-yellow); }
.btn--accent { background: var(--hark-yellow); color: var(--hark-black); }
.btn--accent:hover { background: #fff; color: var(--hark-black); }
.btn--sm { padding: 13px 18px; font-size: 15px; }
.btn--block { width: 100%; padding: 16px; }

/* ============================
   Header
============================ */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: #fff;
	border-bottom: var(--hark-border);
}
.site-header__inner {
	padding: 14px 24px;
	display: flex;
	align-items: center;
	gap: 28px;
}
.site-logo { display: flex; align-items: center; }
.site-logo img { height: 30px; width: auto; }

.site-nav {
	display: flex;
	align-items: center;
	gap: 26px;
	margin-left: auto;
	flex-wrap: wrap;
}
.site-nav__list {
	display: flex;
	align-items: center;
	gap: 26px;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}
.site-nav__list li { position: relative; }
.site-nav__list a {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: -0.01em;
	display: block;
}
.site-nav__cta { padding: 11px 20px; font-size: 15px; }

/* submeniuri desktop */
.site-nav__list ul {
	list-style: none;
	margin: 0;
	padding: 10px;
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	border: var(--hark-border);
	border-radius: 12px;
	min-width: 220px;
	display: none;
	flex-direction: column;
	gap: 4px;
	z-index: 60;
}
.site-nav__list li:hover > ul { display: flex; }
.site-nav__list ul a { padding: 8px 10px; border-radius: 8px; }
.site-nav__list ul a:hover { background: var(--hark-yellow); }

.mobile-toggle {
	display: none;
	margin-left: auto;
	background: none;
	border: 2px solid var(--hark-black);
	border-radius: 10px;
	width: 42px;
	height: 42px;
	font-size: 18px;
	cursor: pointer;
}

/* ============================
   Marquee (bandă text derulantă)
============================ */
@keyframes harkMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.marquee {
	background: var(--hark-black);
	color: var(--hark-yellow);
	overflow: hidden;
	padding: 13px 0;
	border-bottom: var(--hark-border);
}
.marquee__track {
	display: flex;
	width: max-content;
	animation: harkMarquee 26s linear infinite;
}
.marquee__item {
	font-family: 'Archivo Black', sans-serif;
	font-size: 15px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding-right: 34px;
	white-space: nowrap;
}

/* ============================
   Secțiuni generale
============================ */
.section { padding: 88px 24px; border-bottom: var(--hark-border); }
.section--tight { padding: 84px 24px; }
.section--yellow { background: var(--hark-yellow); }
.section--dark { background: var(--hark-black); color: #fff; }
.section--offwhite { background: var(--hark-offwhite); }

.hero { background: var(--hark-yellow); border-bottom: var(--hark-border); padding: 76px 24px 84px; }

.media-box {
	width: 100%;
	border: var(--hark-border);
	border-radius: 22px;
	overflow: hidden;
	background: #fff;
}
.media-box--16-10 { max-width: 460px; aspect-ratio: 16 / 10; box-shadow: 12px 12px 0 var(--hark-black); }
.media-box--4-3 { aspect-ratio: 4 / 3; }
.media-box img, .media-box video { width: 100%; height: 100%; object-fit: cover; }

/* ============================
   Cutii cu beneficii ("Fără ...")
============================ */
.feature-box {
	background: var(--hark-yellow);
	border: 1px solid #d9d2a8;
	border-radius: 16px;
	padding: 22px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.feature-box__top { font-family: 'Archivo Black', sans-serif; font-size: 30px; line-height: 1; }
.feature-box__label { font-size: 16px; font-weight: 600; line-height: 1.35; }
.feature-box--cta { grid-column: 1 / -1; margin-top: 4px; }

/* ============================
   Pași "Cum funcționează"
============================ */
.step-card {
	border: 3px solid var(--hark-yellow);
	border-radius: 18px;
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-width: 0;
}
.step-card__num { font-family: 'Archivo Black', sans-serif; font-size: 46px; line-height: 1; color: var(--hark-yellow); }
.step-card p { font-size: 15px; line-height: 1.6; margin: 0; color: var(--hark-gray-text); }

/* ============================
   Pachete
============================ */
.package-card {
	border: var(--hark-border);
	border-radius: 20px;
	padding: 26px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-width: 0;
	background: #fff;
}
.package-card:hover { box-shadow: 8px 8px 0 var(--hark-black); }
.package-card--accent { background: var(--hark-yellow); }
.package-card__tag { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; min-height: 16px; }
.package-card__count { font-family: 'Archivo Black', sans-serif; font-size: 54px; line-height: 0.9; letter-spacing: -0.025em; }
.package-card__unit { font-size: 17px; font-weight: 700; }
.package-card p { font-size: 14px; line-height: 1.55; margin: 0; flex: 1; }

.promo-banner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 28px;
	align-items: center;
	background: var(--hark-yellow);
	border: var(--hark-border);
	border-radius: 20px;
	padding: 34px;
}

/* ============================
   Exemple video
============================ */
.video-card {
	min-width: 0;
	border: var(--hark-border);
	border-radius: 18px;
	overflow: hidden;
	aspect-ratio: 9 / 16;
	background: #f2f2f2;
}
.video-card video, .video-card img { width: 100%; height: 100%; object-fit: cover; }

.image-card {
	min-width: 0;
	border: var(--hark-border);
	border-radius: 18px;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background: #f2f2f2;
}
.image-card img { width: 100%; height: 100%; object-fit: cover; }

.center-block { align-items: center; text-align: center; margin: 0 auto; }
.center-block .p-lead, .center-block .p-body, .center-block .p-strong { max-width: 60ch; margin-left: auto; margin-right: auto; }

/* ============================
   Chipuri "Ce putem crea"
============================ */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
	font-size: 15px;
	font-weight: 600;
	border: 2px solid var(--hark-black);
	border-radius: 999px;
	padding: 9px 16px;
}

/* ============================
   AI + specialist
============================ */
.ai-step {
	background: #fff;
	border: var(--hark-border);
	border-radius: 16px;
	padding: 20px 22px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.ai-step--accent { background: var(--hark-yellow); }
.ai-step--dark { background: var(--hark-black); color: #fff; }
.ai-step__label { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #888; }
.ai-step--accent .ai-step__label { color: var(--hark-black); }
.ai-step--dark .ai-step__label { color: var(--hark-yellow); }
.ai-step__text { font-size: 17px; font-weight: 600; line-height: 1.45; }
.ai-arrow { align-self: center; font-size: 22px; }

/* ============================
   Platforme (configurare conturi)
============================ */
.platform-card {
	background: var(--hark-yellow);
	border-radius: 16px;
	padding: 22px 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
}
.platform-card__icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
}
.platform-card h3 { font-family: 'Archivo Black', sans-serif; font-size: 19px; line-height: 1.15; margin: 0; }
.platform-card p { font-size: 14px; line-height: 1.6; margin: 0; color: #444; }

.platform-cta {
	grid-column: 1 / -1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
	justify-content: space-between;
	background: var(--hark-offwhite);
	border: var(--hark-border);
	border-radius: 20px;
	padding: 24px 28px;
}
.platform-cta p { font-size: clamp(20px, 2vw, 28px); font-weight: 700; line-height: 1.25; margin: 0; max-width: 30ch; text-wrap: balance; }

/* ============================
   "De ce HARK" — libertăți
============================ */
.freedom-list { display: flex; flex-direction: column; gap: 12px; }
.freedom-item {
	display: flex;
	gap: 12px;
	align-items: baseline;
	border-bottom: 1px solid #333;
	padding-bottom: 10px;
	font-size: 16px;
	line-height: 1.5;
}
.freedom-item__arrow { color: var(--hark-yellow); font-weight: 700; font-size: 15px; }

/* ============================
   Tag-uri (Din 2004 etc.)
============================ */
.tag {
	font-size: 15px;
	font-weight: 700;
	border: 2px solid var(--hark-black);
	border-radius: 999px;
	padding: 9px 18px;
}
.tag--yellow { background: var(--hark-yellow); }

/* ============================
   Contact
============================ */
.contact-card {
	background: #fff;
	border: var(--hark-border);
	border-radius: 20px;
	box-shadow: 10px 10px 0 var(--hark-black);
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-width: 0;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.form-field input, .form-field textarea {
	font-family: Archivo, sans-serif;
	font-size: 15px;
	padding: 13px 14px;
	border: 2px solid var(--hark-black);
	border-radius: 10px;
	width: 100%;
}
.form-field textarea { resize: vertical; }

/* ============================
   Footer
============================ */
.site-footer { background: var(--hark-black); color: #fff; padding: 60px 24px 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 36px; }
.footer-logo { height: 34px; width: auto; align-self: flex-start; }
.footer-col-title { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #777; }
.footer-text { font-size: 15px; color: #bdbdbd; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { color: #fff; font-size: 15px; }
.footer-nav a:hover { color: var(--hark-yellow); }
.footer-link-accent { color: var(--hark-yellow); font-size: 15px; font-weight: 700; }
.footer-link-accent:hover { color: #fff; }
.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: space-between;
	border-top: 1px solid #333;
	padding-top: 22px;
	font-size: 13px;
	color: #777;
}

/* ============================
   Blog
============================ */
.blog-header { padding-bottom: 0; border-bottom: none; }

.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 28px;
}
.blog-card {
	border: var(--hark-border);
	border-radius: 18px;
	overflow: hidden;
	background: #fff;
	display: flex;
	flex-direction: column;
	min-width: 0;
}
.blog-card:hover { box-shadow: 8px 8px 0 var(--hark-black); }
.blog-card__thumb-link { display: block; }
.blog-card__thumb {
	aspect-ratio: 16 / 10;
	background: #f2f2f2;
	overflow: hidden;
}
.blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card__title { font-family: 'Archivo Black', sans-serif; font-size: 19px; line-height: 1.2; margin: 0; }
.blog-card__excerpt { font-size: 15px; line-height: 1.55; color: #555; margin: 0; flex: 1; }
.blog-card__link { font-size: 14px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.blog-card__link:hover { color: #6b6b00; }

.pagination-nav { margin-top: 44px; display: flex; justify-content: center; }
.pagination-nav .nav-links { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.pagination-nav a, .pagination-nav span.current {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 700;
	padding: 10px 16px;
	border: 2px solid var(--hark-black);
	border-radius: 999px;
}
.pagination-nav span.current { background: var(--hark-black); color: var(--hark-yellow); }
.pagination-nav a:hover { background: var(--hark-yellow); }

/* ============================
   Pagina Pachete — carduri de preț
============================ */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.pricing-card {
	border: var(--hark-border);
	border-radius: 20px;
	padding: 30px 26px;
	background: #fff;
	display: flex;
	flex-direction: column;
	gap: 18px;
	min-width: 0;
}
.pricing-card:hover { box-shadow: 8px 8px 0 var(--hark-black); }
.pricing-card--accent { background: var(--hark-yellow); }
.pricing-card__badge {
	align-self: flex-start;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	background: var(--hark-black);
	color: var(--hark-yellow);
	padding: 6px 14px;
	border-radius: 999px;
}
.pricing-card__name { font-family: 'Archivo Black', sans-serif; font-size: 26px; margin: 0; line-height: 1.1; }
.pricing-card__tagline { font-size: 14px; color: #555; margin: 0; line-height: 1.5; }
.pricing-card--accent .pricing-card__tagline { color: #333; }
.pricing-card__price { font-family: 'Archivo Black', sans-serif; font-size: 42px; line-height: 1; }
.pricing-card__price span { font-family: Archivo, sans-serif; font-size: 16px; font-weight: 600; margin-left: 6px; }
.pricing-card__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pricing-card__list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.5; }
.check-icon {
	flex-shrink: 0;
	width: 20px; height: 20px;
	border-radius: 50%;
	background: var(--hark-black);
	color: var(--hark-yellow);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	margin-top: 2px;
}
.pricing-card__note {
	font-size: 13px;
	line-height: 1.5;
	background: #fff;
	border: 2px solid var(--hark-black);
	border-radius: 12px;
	padding: 12px 14px;
}

/* listă cu X ("Ce nu include HARK") */
.cross-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.cross-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; line-height: 1.5; }
.cross-icon {
	flex-shrink: 0;
	width: 24px; height: 24px;
	border-radius: 50%;
	background: #e9e9e9;
	color: #777;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	margin-top: 2px;
}

/* servicii individuale de configurare (extensie platform-card) */
.platform-card__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.platform-card__list li { font-size: 13px; line-height: 1.5; display: flex; gap: 8px; }
.platform-card__list li::before { content: "–"; flex-shrink: 0; }
.platform-card__price { font-family: 'Archivo Black', sans-serif; font-size: 22px; margin-top: 4px; }
.platform-card__spacer { flex: 1; }

/* combinații Setup + Conținut */
.combo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.combo-card { border: var(--hark-border); border-radius: 18px; padding: 24px; background: #fff; display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.combo-card h3 { font-family: 'Archivo Black', sans-serif; font-size: 18px; margin: 0; }
.combo-card p { font-size: 14px; line-height: 1.55; margin: 0; color: #444; }

/* "Cum aleg pachetul?" */
.decision-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.decision-card {
	border-left: 4px solid var(--hark-yellow);
	background: var(--hark-offwhite);
	border-radius: 0 14px 14px 0;
	padding: 18px 22px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}
.decision-card h3 { font-family: 'Archivo Black', sans-serif; font-size: 17px; margin: 0; }
.decision-card p { font-size: 14px; line-height: 1.5; margin: 0; color: #444; }

.savings-note {
	background: var(--hark-black);
	color: var(--hark-yellow);
	border-radius: 14px;
	padding: 18px 22px;
	font-size: 16px;
	font-weight: 700;
	display: inline-block;
}

/* pași numerotați ("Simplu de la început până la final") */
.step-line-list { display: flex; flex-direction: column; }
.step-line { display: flex; gap: 18px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid #333; }
.step-line:last-child { border-bottom: none; }
.step-line__num { font-family: 'Archivo Black', sans-serif; font-size: 22px; color: var(--hark-yellow); flex-shrink: 0; width: 36px; }
.step-line p { margin: 0; font-size: 17px; font-weight: 600; }

/* liste simple cu punct galben (platforme video/imagine) */
.plain-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.plain-list li { font-size: 15px; font-weight: 600; display: flex; gap: 10px; align-items: center; }
.plain-list li::before { content: "\2022"; color: var(--hark-yellow); font-size: 20px; line-height: 1; }

/* pagina personalizată HARK — mockup */
.url-chip {
	display: inline-block;
	font-family: monospace;
	font-size: 16px;
	font-weight: 700;
	background: var(--hark-black);
	color: var(--hark-yellow);
	padding: 10px 18px;
	border-radius: 10px;
}
.mockup-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.mockup-item { border: 2px solid var(--hark-black); border-radius: 14px; padding: 18px; background: #fff; display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.mockup-item__label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #777; }
.mockup-item__value { font-size: 15px; font-weight: 600; }
.mockup-item__action { font-size: 14px; font-weight: 700; color: var(--hark-black); display: inline-flex; gap: 6px; align-items: center; }

/* ============================
   Responsive / Mobil
============================ */
@media (max-width: 860px) {
	.mobile-toggle { display: inline-flex; align-items: center; justify-content: center; }

	.site-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #fff;
		border-bottom: var(--hark-border);
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		padding: 10px 24px 18px;
	}
	.site-nav.is-open { display: flex; }
	.site-nav__list {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		width: 100%;
	}
	.site-nav__list li { width: 100%; }
	.site-nav__list a { padding: 12px 0; border-bottom: 1px solid #eee; }
	.site-nav__list ul {
		position: static;
		display: none;
		border: none;
		border-radius: 0;
		padding: 0 0 0 14px;
		width: 100%;
	}
	.site-nav__list li.hark-submenu-open > ul { display: flex; }
	.site-nav__cta { margin-top: 14px; width: 100%; }

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

@media (max-width: 520px) {
	.grid-platforms { grid-template-columns: 1fr; }
	.h1, .h2 { text-wrap: balance; }
}
