/* ==========================================================================
   MYDATUM THEME — main stylesheet
   Palette, fonts and all-caps Greek headings per locked design spec.
   Visual reference: saconstruction.gr
   ========================================================================== */

:root {
	--c-bg: #f2f2f3;
	--c-ink: #0d2538;
	--c-accent: #217eaa;
	--c-accent-soft: #7d9cb7;
	--c-muted: #8ca4ac;
	--c-rule: #d8dde0;

	--c-white: #ffffff;
	--c-ink-90: rgba(13, 37, 56, 0.9);
	--c-ink-60: rgba(13, 37, 56, 0.6);

	--font-display: 'Manrope', system-ui, sans-serif;
	--font-body: 'Inter', system-ui, sans-serif;
	--font-mono: 'JetBrains Mono', ui-monospace, monospace;

	--container: 1200px;
	--container-narrow: 760px;
	--gap: clamp(1rem, 2vw, 1.5rem);
	--section-y: clamp(3.5rem, 8vw, 7rem);
	--radius: 4px;
	--transition: 180ms ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.65;
	color: var(--c-ink);
	background: var(--c-bg);
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-ink); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.1; color: var(--c-ink); margin: 0 0 0.5em; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2.5rem); }
.container--narrow { max-width: var(--container-narrow); }

/* ---------- Accessibility ---------- */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--c-ink); color: #fff; padding: 0.75rem 1rem; z-index: 1000; }
.skip-link:focus { left: 0; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---------- Buttons ---------- */
.btn {
	display: inline-block;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 0.85rem 1.6rem;
	border-radius: var(--radius);
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: all var(--transition);
}
.btn--primary { background: var(--c-accent); color: #fff; }
.btn--primary:hover { background: var(--c-ink); color: #fff; }
.btn--ghost { background: transparent; color: var(--c-ink); border-color: var(--c-rule); }
.btn--ghost:hover { border-color: var(--c-ink); }

/* ---------- Section primitives ---------- */
.section__eyebrow {
	display: inline-block;
	font-family: var(--font-mono);
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--c-accent);
	margin-bottom: 0.75rem;
}
/* Eyebrow with a short leading rule (matches the hero eyebrow). */
.section__eyebrow--line {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
}
.section__eyebrow--line::before {
	content: "";
	display: inline-block;
	width: 32px;
	height: 2px;
	background: var(--c-accent);
}
/* Accent-coloured word inside a section title (e.g. ΕΜΠΙΣΤΟΣΥΝΗ). */
.section__title .accent { color: var(--c-accent); }
.section__title {
	font-size: clamp(1.6rem, 4vw, 2.6rem);
	text-transform: uppercase;
	letter-spacing: 0.01em;
	margin-bottom: 1.5rem;
}

/* ---------- Header ---------- */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(242, 242, 243, 0.92);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--c-rule);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; }
.site-header__logo, .site-footer__logo {
	font-family: var(--font-display); font-weight: 800; font-size: 1.15rem;
	letter-spacing: 0.04em; color: var(--c-ink); text-transform: uppercase;
}
.custom-logo { max-height: 44px; width: auto; }
.site-nav__list { display: flex; align-items: center; gap: 1.75rem; list-style: none; margin: 0; padding: 0; }
.site-nav__list a {
	font-family: var(--font-display); font-weight: 600; font-size: 0.92rem;
	color: var(--c-ink); text-transform: uppercase; letter-spacing: 0.03em;
}
.site-nav__list a:hover { color: var(--c-accent); }
.site-nav__cta a, .menu-item-cta a {
	background: var(--c-accent); color: #fff !important;
	padding: 0.7rem 1.6rem; margin-left: 0.4rem; border-radius: var(--radius);
}
.site-nav__cta a:hover, .menu-item-cta a:hover { background: var(--c-ink); }

/* nav toggle (mobile) */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--c-ink); transition: var(--transition); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(3rem, 8vw, 6rem); }
.hero__eyebrow {
	display: inline-flex; align-items: center; gap: 0.75rem;
	font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.2em;
	text-transform: uppercase; color: var(--c-accent);
}
.hero__eyebrow::before {
	content: ""; display: inline-block;
	width: 32px; height: 2px; background: var(--c-accent);
}
.hero__title {
	font-size: clamp(2.2rem, 6.5vw, 4.5rem); text-transform: uppercase;
	letter-spacing: -0.01em; margin: 1rem 0; max-width: 16ch;
}
.hero__title .accent { color: var(--c-accent); }
.hero__text { font-size: 1.1rem; max-width: 56ch; color: var(--c-ink-90); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.75rem; }
.hero__stats {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
	margin-top: 3rem;
}
.hero__stat {
	text-align: center;
	padding: 1.5rem 1rem;
	border: 1px solid var(--c-rule);
	border-radius: var(--radius);
	background: var(--c-white);
}
.hero__stat strong { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--c-accent); margin-bottom: 0.25rem; }
.hero__stat span { font-size: 0.85rem; color: var(--c-ink-60); }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--c-rule); background: var(--c-ink); padding-block: 0.85rem; }
.marquee__track { display: flex; gap: 2.5rem; white-space: nowrap; width: max-content; animation: mydatum-marquee 38s linear infinite; }
.marquee__item { font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.12em; color: var(--c-accent-soft); text-transform: uppercase; }
@keyframes mydatum-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---------- About ---------- */
.about { padding-block: var(--section-y); }
.about__layout {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: start;
}
.about__text { max-width: 56ch; font-size: 1.08rem; color: var(--c-ink-90); }
.about__text p { margin: 0 0 1.1rem; }
.about__text strong { color: var(--c-ink); font-weight: 700; }
/* Philosophy quote — soft background panel with accent rule. */
.about__text blockquote {
	margin: 1.75rem 0 0;
	padding: 1.4rem 1.6rem;
	background: var(--c-white);
	border-left: 3px solid var(--c-accent);
	border-radius: var(--radius);
	font-style: italic;
	font-size: 1rem;
	color: var(--c-ink);
	box-shadow: 0 6px 20px rgba(13, 37, 56, .05);
}

/* Pillar cards — 2x2 grid, animated on hover. */
.about__pillars {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin-top: 0;
}
.pillar {
	position: relative;
	background: var(--c-white);
	border: 1px solid var(--c-rule);
	border-radius: 10px;
	padding: 1.5rem 1.4rem;
	overflow: hidden;
	transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease, border-color .3s ease;
}
.pillar::before {
	content: "";
	position: absolute;
	left: 0; top: 0;
	height: 100%; width: 3px;
	background: var(--c-accent);
	transform: scaleY(0);
	transform-origin: top;
	transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.pillar:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 40px rgba(13, 37, 56, .13);
	border-color: transparent;
}
.pillar:hover::before { transform: scaleY(1); }
.pillar__num {
	position: absolute; top: 1rem; right: 1.1rem;
	font-family: var(--font-mono); font-size: 0.7rem; color: var(--c-rule);
	transition: color .3s ease;
}
.pillar:hover .pillar__num { color: var(--c-accent-soft); }
.pillar__icon {
	display: flex; align-items: center; justify-content: center;
	width: 46px; height: 46px; border-radius: 10px;
	background: var(--c-ink);
	margin-bottom: 1rem;
	transition: background .3s ease, transform .3s ease;
}
.pillar__icon svg { stroke: #fff; }
.pillar:hover .pillar__icon { background: var(--c-accent); transform: scale(1.08) rotate(-4deg); }
.pillar__title {
	font-size: 0.95rem; font-weight: 800; letter-spacing: 0.02em;
	text-transform: uppercase; color: var(--c-ink); margin: 0 0 0.5rem;
	transition: color .3s ease;
}
.pillar:hover .pillar__title { color: var(--c-accent); }
.pillar__text { font-size: 0.88rem; line-height: 1.5; color: var(--c-ink-60); margin: 0; }

/* ---------- Services grid ---------- */
.services { padding-block: var(--section-y); background: var(--c-white); border-block: 1px solid var(--c-rule); }

/* Stacked header: eyebrow, title, subtitle below. */
.services__header {
	margin-bottom: 2.5rem;
}
.services__header .section__title { margin-bottom: 0.75rem; }
.services__subtitle {
	font-size: 1.05rem;
	line-height: 1.6;
	color: var(--c-ink-60);
	margin: 0;
	max-width: 60ch;
}

.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
	position: relative; background: var(--c-bg); border: 1px solid var(--c-rule);
	border-radius: var(--radius); padding: 2rem 1.75rem; overflow: hidden;
	transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease, border-color .3s ease;
}
.service-card::before {
	content: ""; position: absolute; left: 0; top: 0;
	height: 100%; width: 3px; background: var(--c-accent);
	transform: scaleY(0); transform-origin: top;
	transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(13,37,56,.12); border-color: transparent; }
.service-card:hover::before { transform: scaleY(1); }
.service-card__num { font-family: var(--font-mono); font-size: 0.85rem; color: var(--c-accent-soft); }
.service-card__icon {
	display: flex; align-items: center; justify-content: center;
	width: 48px; height: 48px; border-radius: 10px;
	background: var(--c-ink); margin: 0.85rem 0 1rem;
	transition: background .3s ease, transform .3s ease;
}
.service-card__icon svg { stroke: #fff; }
.service-card:hover .service-card__icon { background: var(--c-accent); transform: scale(1.08) rotate(-4deg); }
.service-card__title { font-size: 1.2rem; text-transform: uppercase; margin: 0 0 0.75rem; transition: color .3s ease; }
.service-card:hover .service-card__title { color: var(--c-accent); }
.service-card__text { font-size: 0.95rem; color: var(--c-ink-60); }
.service-card__link { font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.03em; }

/* chips */
.chips { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0.85rem 0; }
.chip { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.05em; padding: 0.25rem 0.6rem; background: rgba(33,126,170,0.08); color: var(--c-accent); border-radius: 999px; }

/* ---------- Process ---------- */
.process { padding-block: var(--section-y); }

/* Header: eyebrow, title, subtitle stacked. */
.process__header { margin-bottom: 3rem; }
.process__header .section__title { margin-bottom: 0.75rem; }
.process__subtitle {
	font-size: 1.05rem; line-height: 1.6; color: var(--c-ink-60);
	margin: 0; max-width: 60ch;
}

/* Step grid with a thin connecting line behind the badges. */
.process__grid {
	position: relative;
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
	padding-top: 16px; /* room for the badges that sit above the cards */
}
.process__grid::before {
	content: ""; position: absolute;
	top: 16px; left: 12.5%; right: 12.5%; height: 2px;
	background: var(--c-rule); z-index: 0;
}
.process__step {
	position: relative; z-index: 1;
	background: var(--c-white); border: 1px solid var(--c-rule);
	border-radius: 10px; padding: 2.1rem 1.4rem 1.5rem; margin-top: 16px;
	transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease, border-color .3s ease;
}
.process__badge {
	position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
	display: inline-flex; align-items: center;
	background: var(--c-ink); color: #fff;
	font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em;
	padding: 7px 12px; border-radius: 6px;
	transition: background .3s ease, transform .3s ease;
}
.process__step:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 40px rgba(13, 37, 56, .13);
	border-color: transparent;
}
.process__step:hover .process__badge { background: var(--c-accent); transform: translateX(-50%) translateY(-2px); }
.process__title {
	font-size: 1rem; font-weight: 800; text-transform: uppercase;
	letter-spacing: 0.01em; color: var(--c-ink); margin: 0 0 0.6rem;
	transition: color .3s ease;
}
.process__step:hover .process__title { color: var(--c-accent); }
.process__text { font-size: 0.88rem; line-height: 1.55; color: var(--c-ink-60); margin: 0; }

/* ---------- Why us ---------- */
.why { padding-block: var(--section-y); background: var(--c-ink); }
.why .section__title { color: var(--c-white); }
.why .section__eyebrow { color: var(--c-accent-soft); }
/* Eyebrow leading line on dark — use the softer accent so it reads on navy. */
.why .section__eyebrow--line::before { background: var(--c-accent-soft); }
/* Accent title word matches the eyebrow tone (softer accent) on navy. */
.why .section__title .accent { color: var(--c-accent-soft); }

.why__header { margin-bottom: 3rem; }
.why__header .section__title { margin-bottom: 0.75rem; }
.why__subtitle {
	font-size: 1.05rem; line-height: 1.6;
	color: rgba(255,255,255,0.7); margin: 0; max-width: 60ch;
}

.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.why__item {
	position: relative;
	padding: 1.75rem 1.5rem;
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 10px;
	background: rgba(255,255,255,0.02);
	transition: transform .3s cubic-bezier(.22,1,.36,1), border-color .3s ease, background .3s ease;
}
.why__item:hover {
	transform: translateY(-5px);
	border-color: var(--c-accent);
	background: rgba(33,126,170,0.08);
}
.why__num {
	font-family: var(--font-mono); font-size: 0.85rem; color: var(--c-accent-soft);
	transition: color .3s ease;
}
.why__item:hover .why__num { color: var(--c-accent); }
.why__title { color: var(--c-white); font-size: 1.05rem; text-transform: uppercase; margin: 0.5rem 0; }
.why__text { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin: 0; }

/* ---------- Contact ---------- */
.contact { padding-block: var(--section-y); }

/* Header on top, matching the other sections. */
.contact__header { margin-bottom: 3rem; }
.contact__header .section__title { margin-bottom: 0.75rem; }
.contact__subtitle {
	font-size: 1.05rem; line-height: 1.6; color: var(--c-ink-60);
	margin: 0; max-width: 60ch;
}

.contact__layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }

/* Detail boxes (left) with icon + hover. */
.contact__info { display: flex; flex-direction: column; gap: 1rem; }
.contact__detail {
	display: flex; align-items: center; gap: 1rem;
	background: var(--c-white); border: 1px solid var(--c-rule);
	border-radius: 10px; padding: 1.25rem 1.4rem;
	transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease, border-color .3s ease;
}
.contact__detail:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 36px rgba(13, 37, 56, .12);
	border-color: transparent;
}
.contact__detail-icon {
	display: flex; align-items: center; justify-content: center;
	width: 46px; height: 46px; border-radius: 10px; flex-shrink: 0;
	background: var(--c-ink);
	transition: background .3s ease, transform .3s ease;
}
.contact__detail-icon svg { stroke: #fff; }
.contact__detail:hover .contact__detail-icon { background: var(--c-accent); transform: scale(1.08) rotate(-4deg); }
.contact__detail-body { min-width: 0; }
.contact__detail h4 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; color: var(--c-accent); text-transform: uppercase; margin: 0 0 0.25rem; }
.contact__detail-value, .contact__detail-value a { font-weight: 600; color: var(--c-ink); }
.contact__detail-value a:hover { color: var(--c-accent); }

.contact__form-wrap { background: var(--c-white); border: 1px solid var(--c-rule); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.5rem); }
.contact__form-wrap h3 { text-transform: uppercase; font-size: 1.15rem; margin-bottom: 1.25rem; }
.form-row { margin-bottom: 1.1rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row label { display: block; font-family: var(--font-display); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--c-ink); margin-bottom: 0.4rem; }
.form-row input, .form-row select, .form-row textarea {
	width: 100%; font-family: var(--font-body); font-size: 0.95rem; color: var(--c-ink);
	padding: 0.7rem 0.85rem; background: var(--c-bg); border: 1px solid var(--c-rule);
	border-radius: var(--radius); transition: border-color var(--transition);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--c-accent); }
.form-row--consent label { display: flex; gap: 0.5rem; align-items: flex-start; text-transform: none; font-weight: 400; font-size: 0.85rem; line-height: 1.4; }
.form-row--consent input { width: auto; margin-top: 0.2rem; }
.form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact__submit { width: 100%; margin-top: 0.5rem; }
.contact__feedback { margin-top: 1rem; font-size: 0.9rem; min-height: 1.2em; }
.contact__feedback.is-error { color: #b32d2e; }
.contact__feedback.is-success { color: #1a7d4b; }

/* ---------- Single service ---------- */
.service-single { padding-block: var(--section-y); }

/* Breadcrumbs */
.breadcrumbs {
	font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em;
	text-transform: uppercase; color: var(--c-muted); margin-bottom: 1.5rem;
	display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem;
}
.breadcrumbs a { color: var(--c-accent); }
.breadcrumbs a:hover { color: var(--c-ink); }
.breadcrumbs__sep { color: var(--c-rule); }
.breadcrumbs__current { color: var(--c-ink-60); }

/* Full-width header */
.service-head { margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--c-rule); }
.service-head__title {
	font-size: clamp(2rem, 5vw, 3.4rem); text-transform: uppercase;
	letter-spacing: -0.01em; line-height: 1.05; margin: 1rem 0 0;
}
.service-head__title .accent { color: var(--c-accent); }
.service-head__tagline { font-size: 1.15rem; color: var(--c-ink-90); max-width: 60ch; margin: 1rem 0 0; }
.service-head .chips { margin-top: 1.25rem; }

/* Two-column layout */
.service-single__layout { display: grid; grid-template-columns: 260px 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }

/* Sidebar (sticky) */
.service-sidebar { position: sticky; top: 90px; align-self: start; display: flex; flex-direction: column; gap: 2rem; }
.service-sidebar__title { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.14em; color: var(--c-accent); margin: 0 0 0.85rem; }

/* Table of Contents */
.service-toc__list { list-style: none; margin: 0; padding: 0; border-left: 2px solid var(--c-rule); }
.service-toc__link {
	display: block; padding: 0.45rem 1rem; font-size: 0.85rem; line-height: 1.35;
	color: var(--c-ink-60); border-left: 2px solid transparent; margin-left: -2px;
	transition: color .2s ease, border-color .2s ease;
}
.service-toc__link:hover { color: var(--c-ink); }
.service-toc__link.is-active { color: var(--c-accent); border-left-color: var(--c-accent); font-weight: 600; }

/* Services navigation */
.service-nav__list { list-style: none; margin: 0; padding: 0; }
.service-nav__list li { border-bottom: 1px solid var(--c-rule); }
.service-nav__list li:last-child { border-bottom: 0; }
.service-nav__list a {
	display: flex; align-items: center; gap: 0.6rem;
	padding: 0.7rem 0; font-family: var(--font-display); font-weight: 600;
	font-size: 0.82rem; color: var(--c-ink-60); transition: color .2s ease;
}
.service-nav__num { font-family: var(--font-mono); font-size: 0.7rem; color: var(--c-accent-soft); }
.service-nav__label { flex: 1; min-width: 0; line-height: 1.25; }
.service-nav__arrow { color: var(--c-rule); transition: transform .2s ease, color .2s ease; }
.service-nav__list a:hover { color: var(--c-ink); }
.service-nav__list a:hover .service-nav__arrow { color: var(--c-accent); transform: translateX(3px); }
.service-nav__list li.is-current a { color: var(--c-accent); }
.service-nav__list li.is-current .service-nav__num { color: var(--c-accent); }
.service-nav__list li.is-current .service-nav__arrow { color: var(--c-accent); }

/* CTA box */
.service-cta-box {
	background: var(--c-ink); border-radius: 12px; padding: 1.5rem;
	text-align: center; color: #fff;
}
.service-cta-box__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; border-radius: 10px;
	background: rgba(255,255,255,0.08); color: var(--c-accent-soft); margin-bottom: 0.85rem;
}
.service-cta-box__text { font-size: 0.92rem; color: rgba(255,255,255,0.8); margin: 0 0 1rem; line-height: 1.45; }
.service-cta-box__btn { width: 100%; white-space: nowrap; font-size: 0.78rem; padding-inline: 0.8rem; }

/* Content body — formatted */
.service-content__body { font-size: 1.05rem; line-height: 1.7; color: var(--c-ink-90); }
.service-content__body > p:first-child {
	font-size: 1.18rem; line-height: 1.6; color: var(--c-ink); /* lead paragraph */
}
.service-content__body h2 {
	font-size: 1.4rem; text-transform: uppercase; letter-spacing: 0.01em;
	color: var(--c-ink); margin: 2.5rem 0 1.25rem; scroll-margin-top: 96px;
}
.service-content__body h3 {
	font-size: 1.1rem; text-transform: uppercase; color: var(--c-ink);
	margin: 1.75rem 0 0.75rem; scroll-margin-top: 96px;
}
.service-content__body p { margin: 0 0 1.1rem; }
.service-content__body strong { color: var(--c-ink); font-weight: 700; }

/* Accent-arrow lists (replace bullets) */
.service-content__body ul { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.service-content__body ul li {
	position: relative; padding: 0.7rem 0 0.7rem 2rem;
	border-bottom: 1px solid var(--c-rule);
}
.service-content__body ul li:last-child { border-bottom: 0; }
.service-content__body ul li::before {
	content: "→"; position: absolute; left: 0; top: 0.7rem;
	color: var(--c-accent); font-weight: 700;
}
/* Keep ordered lists conventional. */
.service-content__body ol { padding-left: 1.5rem; margin: 0 0 1.5rem; }
.service-content__body ol li { margin-bottom: 0.5rem; }

/* Navy callout box — author via a <blockquote> in the editor. */
.service-content__body blockquote {
	background: var(--c-ink); color: #fff; border-radius: 12px;
	padding: 1.5rem 1.75rem; margin: 2rem 0; border: 0;
	font-style: normal; font-size: 1rem; line-height: 1.6;
}
.service-content__body blockquote p { margin: 0; color: rgba(255,255,255,0.85); }
.service-content__body blockquote p:not(:last-child) { margin-bottom: 0.75rem; }
.service-content__body blockquote strong { color: var(--c-accent-soft); }
.service-content__body blockquote a { color: var(--c-accent-soft); }

/* ---------- Legal pages (Privacy, Cookies, Terms) ---------- */
.legal-single { padding-block: var(--section-y); }

/* Header */
.legal-head { margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--c-rule); }
.legal-head__title {
	font-size: clamp(2rem, 5vw, 3.2rem); text-transform: uppercase;
	letter-spacing: -0.01em; line-height: 1.05; margin: 1rem 0 0;
}
.legal-head__title .accent { color: var(--c-accent); }
.legal-head__updated {
	font-family: var(--font-mono); font-size: 0.82rem; color: var(--c-muted);
	margin: 1rem 0 0;
}

/* Two-column layout */
.legal-single__layout { display: grid; grid-template-columns: 280px 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }

/* Sticky sidebar */
.legal-sidebar { position: sticky; top: 90px; align-self: start; display: flex; flex-direction: column; gap: 2rem; }
.legal-sidebar__title { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.14em; color: var(--c-accent); margin: 0 0 1rem; }

/* Numbered TOC (grafeiokratia-style) */
.legal-toc__list { list-style: none; margin: 0; padding: 0; }
.legal-toc__link {
	display: flex; align-items: baseline; gap: 0.6rem;
	padding: 0.5rem 0; font-size: 0.88rem; line-height: 1.4;
	color: var(--c-ink-60); transition: color .2s ease;
}
.legal-toc__num { font-family: var(--font-mono); font-size: 0.72rem; color: var(--c-accent-soft); flex-shrink: 0; }
.legal-toc__link:hover { color: var(--c-ink); }
.legal-toc__link.is-active { color: var(--c-accent); font-weight: 600; }
.legal-toc__link.is-active .legal-toc__num { color: var(--c-accent); }

/* CTA box */
.legal-cta-box {
	background: var(--c-white); border: 1px solid var(--c-rule);
	border-radius: 12px; padding: 1.5rem; text-align: center;
}
.legal-cta-box__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; border-radius: 10px;
	background: rgba(33,126,170,0.08); color: var(--c-accent); margin-bottom: 0.85rem;
}
.legal-cta-box__text { font-size: 0.9rem; color: var(--c-ink-60); margin: 0 0 0.5rem; line-height: 1.45; }
.legal-cta-box__email { font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; color: var(--c-accent); }

/* Content body */
.legal-content__body { font-size: 1.02rem; line-height: 1.7; color: var(--c-ink-90); }
.legal-content__body > p:first-child { font-size: 1.12rem; color: var(--c-ink); }
.legal-content__body h2 {
	display: flex; align-items: baseline; gap: 0.6rem;
	font-size: 1.3rem; text-transform: uppercase; letter-spacing: 0.01em;
	color: var(--c-ink); margin: 2.5rem 0 1rem; scroll-margin-top: 96px;
}
.legal-content__body h2::before {
	content: counter(legal-section, decimal-leading-zero);
	counter-increment: legal-section;
	font-family: var(--font-mono); font-size: 0.85rem; color: var(--c-accent);
	font-weight: 400;
}
.legal-content__body { counter-reset: legal-section; }
.legal-content__body h3 { font-size: 1.05rem; text-transform: uppercase; color: var(--c-ink); margin: 1.5rem 0 0.6rem; scroll-margin-top: 96px; }
.legal-content__body p { margin: 0 0 1.1rem; }
.legal-content__body strong { color: var(--c-ink); font-weight: 700; }
.legal-content__body a { color: var(--c-accent); text-decoration: underline; }
.legal-content__body a:hover { color: var(--c-ink); }

/* Accent-arrow lists */
.legal-content__body ul { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.legal-content__body ul li { position: relative; padding: 0.5rem 0 0.5rem 1.75rem; }
.legal-content__body ul li::before { content: "→"; position: absolute; left: 0; top: 0.5rem; color: var(--c-accent); font-weight: 700; }
.legal-content__body ol { padding-left: 1.5rem; margin: 0 0 1.5rem; }
.legal-content__body ol li { margin-bottom: 0.4rem; }

/* Editor note callout (for "Σημείωση:" type blocks via blockquote) */
.legal-content__body blockquote {
	background: rgba(33,126,170,0.06); border-left: 3px solid var(--c-accent);
	border-radius: var(--radius); padding: 1.1rem 1.4rem; margin: 1.5rem 0;
	font-style: normal; font-size: 0.95rem; color: var(--c-ink);
}
.legal-content__body blockquote p { margin: 0; }

/* ---------- Blog: single post ---------- */
.post-single { padding-block: var(--section-y); }
.post-head { margin-bottom: 2rem; }
.post-head__title {
	font-size: clamp(2rem, 5vw, 3.2rem); text-transform: uppercase;
	letter-spacing: -0.01em; line-height: 1.08; margin: 1rem 0 0;
}
.post-head__title .accent { color: var(--c-accent); }
.post-head__meta {
	display: flex; align-items: center; gap: 0.6rem; margin-top: 1rem;
	font-family: var(--font-mono); font-size: 0.8rem; color: var(--c-muted);
}
.post-head__dot { color: var(--c-rule); }
.post-single__featured { margin-bottom: 1rem; border-radius: var(--radius); overflow: hidden; }
.post-single__featured img { display: block; width: 100%; height: auto; }

.post-single__layout { display: grid; grid-template-columns: 260px 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }

/* Sidebar (sticky) */
.post-sidebar { position: sticky; top: 90px; align-self: start; display: flex; flex-direction: column; gap: 2rem; }
.post-sidebar__title { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.14em; color: var(--c-accent); margin: 0 0 0.85rem; }
.post-toc__list { list-style: none; margin: 0; padding: 0; border-left: 2px solid var(--c-rule); }
.post-toc__link {
	display: block; padding: 0.45rem 1rem; font-size: 0.85rem; line-height: 1.35;
	color: var(--c-ink-60); border-left: 2px solid transparent; margin-left: -2px;
	transition: color .2s ease, border-color .2s ease;
}
.post-toc__link:hover { color: var(--c-ink); }
.post-toc__link.is-active { color: var(--c-accent); border-left-color: var(--c-accent); font-weight: 600; }

/* CTA box (navy) */
.post-cta-box { background: var(--c-ink); border-radius: 12px; padding: 1.5rem; text-align: center; color: #fff; }
.post-cta-box__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; border-radius: 10px;
	background: rgba(255,255,255,0.08); color: var(--c-accent-soft); margin-bottom: 0.85rem;
}
.post-cta-box__text { font-size: 0.92rem; color: rgba(255,255,255,0.8); margin: 0 0 1rem; line-height: 1.45; }
.post-cta-box__btn { width: 100%; white-space: nowrap; font-size: 0.78rem; padding-inline: 0.8rem; }

/* Article body (same formatting language as service/legal) */
.post-content__body { font-size: 1.08rem; line-height: 1.75; color: var(--c-ink-90); }
.post-content__body > p:first-child { font-size: 1.2rem; line-height: 1.6; color: var(--c-ink); }
.post-content__body h2 {
	font-size: 1.5rem; text-transform: uppercase; letter-spacing: 0.01em;
	color: var(--c-ink); margin: 2.5rem 0 1rem; scroll-margin-top: 96px;
}
.post-content__body h3 { font-size: 1.15rem; text-transform: uppercase; color: var(--c-ink); margin: 1.75rem 0 0.6rem; scroll-margin-top: 96px; }
.post-content__body p { margin: 0 0 1.2rem; }
.post-content__body strong { color: var(--c-ink); font-weight: 700; }
.post-content__body a { color: var(--c-accent); text-decoration: underline; }
.post-content__body a:hover { color: var(--c-ink); }
.post-content__body ul { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.post-content__body ul li { position: relative; padding: 0.55rem 0 0.55rem 1.75rem; }
.post-content__body ul li::before { content: "→"; position: absolute; left: 0; top: 0.55rem; color: var(--c-accent); font-weight: 700; }
.post-content__body ol { padding-left: 1.5rem; margin: 0 0 1.5rem; }
.post-content__body ol li { margin-bottom: 0.5rem; }
.post-content__body blockquote {
	background: var(--c-ink); color: #fff; border-radius: 12px;
	padding: 1.5rem 1.75rem; margin: 2rem 0; border: 0; font-style: normal;
}
.post-content__body blockquote p { margin: 0; color: rgba(255,255,255,0.85); }
.post-content__body blockquote strong { color: var(--c-accent-soft); }
.post-content__body img { max-width: 100%; height: auto; border-radius: var(--radius); margin: 1.5rem 0; }

/* Tags */
.post-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 2.5rem 0 0; }
.post-tag { font-family: var(--font-mono); font-size: 0.78rem; padding: 0.3rem 0.7rem; background: rgba(33,126,170,0.08); color: var(--c-accent); border-radius: 999px; }
.post-tag:hover { background: var(--c-accent); color: #fff; }

/* In-article footer CTA strip */
.post-footer-cta {
	display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
	flex-wrap: wrap; margin-top: 2.5rem; padding: 1.75rem; border-radius: 12px;
	background: var(--c-white); border: 1px solid var(--c-rule);
}
.post-footer-cta strong { display: block; color: var(--c-ink); font-size: 1.05rem; }
.post-footer-cta span { color: var(--c-ink-60); font-size: 0.92rem; }

/* Related posts */
.related-posts { padding-block: var(--section-y); background: var(--c-white); border-top: 1px solid var(--c-rule); }
.related-posts .section__title { margin-bottom: 2rem; }
.related-posts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ---------- Blog: archive / listing ---------- */
.blog-archive { padding-block: var(--section-y); }
.blog-archive__header { margin-bottom: 3rem; }
.blog-archive__header .section__title { margin-bottom: 0.75rem; }
.blog-archive__subtitle { font-size: 1.05rem; line-height: 1.6; color: var(--c-ink-60); margin: 0; max-width: 60ch; }
.blog-archive__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }

/* Post card (shared by archive + related) */
.post-card {
	display: flex; flex-direction: column;
	background: var(--c-white); border: 1px solid var(--c-rule);
	border-radius: 12px; overflow: hidden;
	transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease, border-color .3s ease;
}
.post-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(13,37,56,.12); border-color: transparent; }
.post-card__thumb { display: block; overflow: hidden; }
.post-card__thumb img { display: block; width: 100%; height: 200px; object-fit: cover; transition: transform .4s ease; }
.post-card:hover .post-card__thumb img { transform: scale(1.05); }
.post-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-card__meta { display: flex; align-items: center; gap: 0.7rem; font-family: var(--font-mono); font-size: 0.72rem; color: var(--c-muted); margin-bottom: 0.6rem; }
.post-card__cat { color: var(--c-accent); }
.post-card__title { font-size: 1.15rem; line-height: 1.3; margin: 0 0 0.6rem; text-transform: none; }
.post-card__title a { color: var(--c-ink); }
.post-card__title a:hover { color: var(--c-accent); }
.post-card__excerpt { font-size: 0.92rem; color: var(--c-ink-60); margin: 0 0 1rem; flex: 1; }
.post-card__link { font-family: var(--font-display); font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--c-accent); }

/* Pagination */
.blog-archive__pagination { margin-top: 3rem; }
.blog-archive__pagination .nav-links { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; }
.blog-archive__pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 40px; height: 40px; padding: 0 0.75rem;
	border: 1px solid var(--c-rule); border-radius: 8px;
	font-family: var(--font-mono); font-size: 0.85rem; color: var(--c-ink-60);
	transition: all .2s ease;
}
.blog-archive__pagination .page-numbers:hover { border-color: var(--c-accent); color: var(--c-accent); }
.blog-archive__pagination .page-numbers.current { background: var(--c-accent); border-color: var(--c-accent); color: #fff; }
.blog-archive__empty { font-size: 1.05rem; color: var(--c-ink-60); }

/* ---------- Pages / posts (legacy) ---------- */
.page-single, .post-single, .archive-services, .archive-posts, .error-404 { padding-block: var(--section-y); }
.page-single__title, .post-single__title { font-size: clamp(1.8rem, 4.5vw, 2.8rem); text-transform: uppercase; }
.page-single__body, .post-single__body { font-size: 1.05rem; }
.page-single__body h2, .post-single__body h2 { text-transform: uppercase; margin-top: 1.75rem; }
.post-single__meta, .post-card__meta { font-family: var(--font-mono); font-size: 0.8rem; color: var(--c-muted); }
.post-card { padding-block: 1.5rem; border-bottom: 1px solid var(--c-rule); }

.site-header__lockup { height: 40px; width: auto; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--c-ink); color: rgba(255,255,255,0.75); padding-top: var(--section-y); }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; }
.site-footer__lockup { height: 38px; width: auto; display: block; }
.site-footer__logo { color: #fff; font-size: 1.2rem; }
.site-footer h3 { color: #fff; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.5rem; font-size: 0.92rem; }
.site-footer a { color: rgba(255,255,255,0.75); }
.site-footer a:hover { color: var(--c-accent-soft); }

/* Footer social icon buttons. */
.site-footer__social { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.site-footer__social-link {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px; border-radius: 9px;
	color: rgba(255,255,255,0.75);
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.12);
	transition: transform .25s cubic-bezier(.22,1,.36,1), background .25s ease, color .25s ease, border-color .25s ease;
}
.site-footer__social-link:hover {
	color: #fff;
	background: var(--c-accent);
	border-color: var(--c-accent);
	transform: translateY(-3px);
}
.site-footer__bar { border-top: 1px solid rgba(255,255,255,0.12); padding-block: 1.25rem; }
.site-footer__bar-inner { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; font-size: 0.82rem; }
.site-footer__legal { display: flex; gap: 1.25rem; }
.footer-credit { opacity: 0.5; }
.footer-credit a { color: rgba(255,255,255,0.75); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
	.hero__stats, .about__pillars, .services__grid, .process__grid, .why__grid { grid-template-columns: repeat(2, 1fr); }
	.about__layout { grid-template-columns: 1fr; gap: 2.5rem; }
	.about__text { max-width: none; }
	.process__grid::before { display: none; }
	.contact__layout { grid-template-columns: 1fr; }
	.service-single__layout, .legal-single__layout, .post-single__layout { grid-template-columns: 1fr; }
	.service-sidebar, .legal-sidebar, .post-sidebar { position: static; flex-direction: column; }
	.service-toc, .legal-toc, .post-toc { display: none; } /* TOC less useful on mobile; CTA remains */
	.blog-archive__grid, .related-posts__grid { grid-template-columns: repeat(2, 1fr); }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
	.nav-toggle { display: flex; }
	.site-nav { position: fixed; inset: 72px 0 auto 0; background: var(--c-bg); border-bottom: 1px solid var(--c-rule); transform: translateY(-120%); transition: transform var(--transition); }
	.site-nav.is-open { transform: translateY(0); }
	.site-nav__list { flex-direction: column; align-items: stretch; gap: 0; padding: 1rem; }
	.site-nav__list li { border-bottom: 1px solid var(--c-rule); }
	.site-nav__list a { padding: 0.85rem 0.5rem; display: block; }
	.site-nav__cta a { margin: 0.5rem 0 0; text-align: center; }
	.hero__stats, .about__pillars, .services__grid, .process__grid, .why__grid, .form-grid, .site-footer__grid, .blog-archive__grid, .related-posts__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   HERO — animated radar/shield graphic
   Append to assets/css/style.css. Pure CSS keyframes; motion gated by
   .hero-radar.is-visible (added on scroll-into-view by main.js) and fully
   disabled under prefers-reduced-motion.
   ========================================================================== */

/* Two-column hero layout */
.hero__inner--split {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}
.hero__copy { min-width: 0; }
.hero__visual { min-width: 0; }

/* Radar container
   Height is set via the padding-top percentage trick (420/480 = 87.5%) rather
   than aspect-ratio, for universal browser/minifier support. The SVG is then
   absolutely positioned to fill this box. */
.hero-radar {
	position: relative;
	width: 100%;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
	height: 0;
	padding-top: 87.5%; /* 420 / 480 */
}
.hero-radar__svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	background: #0d2538;
	border-radius: 18px;
	overflow: hidden;
}

/* --- Animations (paused until .is-visible) --- */
@keyframes heroFloatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes heroFloatB { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes heroFloatC { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes heroSweep   { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes heroPulse   { 0%,100% { opacity: .35; } 50% { opacity: 1; } }
@keyframes heroRing     { 0% { opacity: .5; r: 30; } 100% { opacity: 0; r: 120; } }

/* Sweep rotates around the radar centre (240,210 in viewBox units) */
.hero-radar__sweep { transform-origin: 240px 210px; }

/* Nodes + pings idle (static) until visible */
.hero-radar__ping { opacity: 0; }

/* When scrolled into view, start everything */
.hero-radar.is-visible .hero-radar__sweep { animation: heroSweep 7s linear infinite; }
.hero-radar.is-visible .hero-radar__ping  { animation: heroRing 4s ease-out infinite; }
.hero-radar.is-visible .hero-radar__ping--2 { animation-delay: 2s; }
.hero-radar.is-visible .hero-radar__node--1 { animation: heroPulse 3s   ease-in-out infinite; }
.hero-radar.is-visible .hero-radar__node--2 { animation: heroPulse 3.6s ease-in-out infinite .6s; }
.hero-radar.is-visible .hero-radar__node--3 { animation: heroPulse 3.2s ease-in-out infinite 1.1s; }
.hero-radar.is-visible .hero-card--1 { animation: heroFloatA 6s   ease-in-out infinite; }
.hero-radar.is-visible .hero-card--2 { animation: heroFloatB 7.5s ease-in-out infinite .8s; }
.hero-radar.is-visible .hero-card--3 { animation: heroFloatC 6.8s ease-in-out infinite 1.4s; }

/* Floating cards */
.hero-card {
	position: absolute;
	background: #fff;
	border-radius: 12px;
	padding: 11px 15px;
	display: flex;
	gap: 10px;
	align-items: center;
	box-shadow: 0 8px 28px rgba(13, 37, 56, .14);
}
.hero-card--1 { top: 10%; left: -4%; }
.hero-card--2 { bottom: 30%; right: -5%; }
.hero-card--3 { bottom: 8%; right: 8%; }
.hero-card__ic {
	width: 30px; height: 30px; border-radius: 8px;
	background: #e6f0f5; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-card__text { display: flex; flex-direction: column; line-height: 1.2; }
.hero-card__text strong { font-family: var(--font-display); font-weight: 800; font-size: 12px; letter-spacing: .02em; color: var(--c-ink); }
.hero-card__text em { font-style: normal; font-size: 11px; color: var(--c-muted); }

/* Respect reduced motion — show the final composition, no movement */
@media (prefers-reduced-motion: reduce) {
	.hero-radar__sweep,
	.hero-radar__ping,
	.hero-radar__node,
	.hero-card { animation: none !important; }
	.hero-radar__ping { opacity: .3; }
	.hero-radar__node { opacity: .7; }
}

/* Responsive — stack on tablet/mobile */
@media (max-width: 980px) {
	.hero__inner--split { grid-template-columns: 1fr; }
	.hero__visual { display: none; } /* radar + cards only render well in the desktop two-column hero */
	.hero__copy { order: 1; }
}
@media (max-width: 560px) {
	.hero-card { padding: 8px 11px; }
	.hero-card__text strong { font-size: 11px; }
	.hero-card__text em { font-size: 10px; }
}