/* ==========================================================================
   NordicToCyprus — main stylesheet
   Design: Nordic consultancy + Mediterranean warmth
   ========================================================================== */

/* ----- Design tokens ----- */
:root {
	--c-bg:            #F7F9FA;
	--c-bg-soft:       #DDEBE8;
	--c-primary:       #0B1F33;   /* deep navy */
	--c-accent:        #C7794A;   /* Cyprus copper / terracotta */
	--c-accent-dark:   #A45F35;
	--c-text:          #1F2933;
	--c-muted:         #5A6470;
	--c-border:        #E3E8EC;
	--c-white:         #FFFFFF;

	--font-heading: 'Manrope', 'Inter', 'DM Sans', system-ui, -apple-system, sans-serif;
	--font-body:    'Inter', 'Open Sans', system-ui, -apple-system, sans-serif;

	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 20px;

	--shadow-sm: 0 1px 2px rgba(11,31,51,0.04), 0 1px 3px rgba(11,31,51,0.06);
	--shadow-md: 0 4px 14px rgba(11,31,51,0.08);
	--shadow-lg: 0 18px 48px rgba(11,31,51,0.18);

	--container-max:   1180px;
	--container-narrow: 820px;

	--space-1: 0.5rem;
	--space-2: 1rem;
	--space-3: 1.5rem;
	--space-4: 2rem;
	--space-5: 3rem;
	--space-6: 4.5rem;
	--space-7: 6rem;
}

/* ----- Base reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--c-text);
	background: var(--c-bg);
	line-height: 1.6;
	font-size: 17px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--c-accent); }
button { cursor: pointer; font-family: inherit; }

h1, h2, h3, h4 {
	font-family: var(--font-heading);
	color: var(--c-primary);
	line-height: 1.2;
	margin: 0 0 .6em;
	font-weight: 700;
	letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 3.2vw + 1rem, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 1.6vw + 1rem, 2.2rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1em; }

.eyebrow {
	display: inline-block;
	font-family: var(--font-heading);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--c-accent);
	margin-bottom: var(--space-2);
}

.sr-only,
.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0);
	white-space: nowrap; border: 0;
}
.skip-link:focus {
	position: fixed; top: 8px; left: 8px;
	background: var(--c-primary); color: #fff;
	padding: 8px 12px; border-radius: var(--radius-sm);
	z-index: 9999;
}

/* ----- Layout ----- */
.container {
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 1.25rem;
}
.container--narrow { max-width: var(--container-narrow); }

.section {
	padding: var(--space-6) 0;
}
.section--hero        { padding: var(--space-6) 0 var(--space-7); background: var(--c-bg); }
.section--audience    { background: var(--c-white); border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
.section--problem     { background: var(--c-bg); }
.section--services    { background: var(--c-white); }
.section--compare     { background: var(--c-bg-soft); }
.section--process     { background: var(--c-bg); }
.section--trust       { background: var(--c-white); }
.section--lead-magnet { background: var(--c-primary); color: rgba(255,255,255,.92); }
.section--final-cta   { background: var(--c-bg-soft); }

.section__title {
	text-align: center;
	margin-bottom: var(--space-4);
}
.section__title-accent {
	display: block;
	color: var(--c-accent);
	font-weight: 600;
	margin-top: .25em;
}
.section__lead {
	text-align: center;
	font-size: 1.08rem;
	color: var(--c-muted);
	max-width: 720px;
	margin: 0 auto var(--space-3);
}

/* ----- Buttons ----- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5em;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 1rem;
	line-height: 1;
	padding: .95em 1.45em;
	border-radius: 999px;
	border: 1.5px solid transparent;
	transition: all .18s ease;
	cursor: pointer;
	text-align: center;
	white-space: nowrap;
}
.btn--primary {
	background: var(--c-accent);
	color: #fff;
}
.btn--primary:hover {
	background: var(--c-accent-dark);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: var(--shadow-md);
}
.btn--ghost {
	background: transparent;
	color: var(--c-primary);
	border-color: var(--c-primary);
}
.btn--ghost:hover {
	background: var(--c-primary);
	color: #fff;
}
.btn--sm { padding: .65em 1.15em; font-size: .92rem; }
.btn--lg { padding: 1.1em 1.8em; font-size: 1.05rem; }

/* ============================================
   1. HEADER
   ============================================ */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(247,249,250,.92);
	-webkit-backdrop-filter: saturate(1.4) blur(10px);
	backdrop-filter: saturate(1.4) blur(10px);
	border-bottom: 1px solid var(--c-border);
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-3);
	min-height: 72px;
}
.site-logo {
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--c-primary);
	letter-spacing: -0.01em;
}
.site-logo__icon { display: inline-flex; }
.site-logo__nordic { color: var(--c-primary); }
.site-logo__to     { color: var(--c-primary); opacity: .55; font-weight: 500; }
.site-logo__cyprus { color: var(--c-accent); }

.site-nav { flex: 1; display: flex; justify-content: center; }
.ntc-menu {
	display: flex;
	gap: 1.6rem;
	list-style: none;
	margin: 0; padding: 0;
}
.ntc-menu a {
	font-family: var(--font-heading);
	font-weight: 500;
	font-size: .94rem;
	color: var(--c-text);
	padding: .35em 0;
	position: relative;
}
.ntc-menu a::after {
	content: '';
	position: absolute;
	left: 0; right: 100%;
	bottom: -2px;
	height: 2px;
	background: var(--c-accent);
	transition: right .25s ease;
}
.ntc-menu a:hover { color: var(--c-primary); }
.ntc-menu a:hover::after { right: 0; }

.site-header__cta { display: flex; align-items: center; gap: .75rem; }

.nav-toggle {
	display: none;
	width: 40px; height: 40px;
	background: transparent;
	border: 1px solid var(--c-border);
	border-radius: var(--radius-sm);
	padding: 0;
	flex-direction: column;
	gap: 4px;
	align-items: center;
	justify-content: center;
}
.nav-toggle span {
	display: block;
	width: 18px; height: 2px;
	background: var(--c-primary);
	transition: transform .18s ease, opacity .18s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================
   2. HERO
   ============================================ */
.hero__grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: var(--space-6);
	align-items: center;
}
.hero__heading {
	font-size: clamp(2.1rem, 3vw + 1rem, 3.4rem);
	margin-bottom: var(--space-3);
}
.hero__subheading {
	font-size: 1.12rem;
	color: var(--c-muted);
	max-width: 540px;
	margin-bottom: var(--space-4);
}
.hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
	margin-bottom: var(--space-3);
}
.hero__trust {
	font-size: .92rem;
	color: var(--c-muted);
	max-width: 480px;
	margin: 0;
}
.hero__visual { position: relative; }
.hero__image-wrap {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: visible;
}
.hero__image-wrap img {
	width: 100%;
	aspect-ratio: 4/5;
	object-fit: cover;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
}
.hero__overlay-card {
	position: absolute;
	bottom: -28px;
	left: -28px;
	background: #fff;
	padding: 1.4rem 1.6rem;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
	max-width: 280px;
	border: 1px solid var(--c-border);
}
.hero__overlay-card h3 {
	font-size: 1rem;
	margin-bottom: .6em;
}
.hero__overlay-card .checklist { margin: 0; }

/* ----- Checklists ----- */
.checklist {
	list-style: none;
	padding: 0;
	margin: 0 0 var(--space-3);
	display: flex;
	flex-direction: column;
	gap: .55em;
	font-size: .96rem;
	color: var(--c-text);
}
.checklist li {
	position: relative;
	padding-left: 1.7em;
}
.checklist li::before {
	content: '';
	position: absolute;
	left: 0; top: .3em;
	width: 1.15em; height: 1.15em;
	border-radius: 50%;
	background-color: var(--c-bg-soft);
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='%23C7794A' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M3.5 8.5l3 3 6-7'/></svg>");
	background-size: 70% 70%;
	background-repeat: no-repeat;
	background-position: center;
}
.checklist--lg li  { font-size: 1.05rem; padding-left: 2em; }
.checklist--lg li::before { width: 1.3em; height: 1.3em; top: .25em; }

.checklist--two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: .9em 2em;
}
@media (max-width: 640px) { .checklist--two-col { grid-template-columns: 1fr; } }

/* ============================================
   3. AUDIENCE
   ============================================ */
.audience__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: var(--space-2);
	margin-top: var(--space-4);
}
.audience-card {
	background: var(--c-bg);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-md);
	padding: 1.3rem 1rem;
	text-align: center;
	transition: all .2s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .65rem;
}
.audience-card:hover {
	border-color: var(--c-accent);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}
.audience-card__icon {
	width: 36px; height: 36px;
	display: inline-block;
	background: var(--c-bg-soft);
	border-radius: 50%;
	position: relative;
}
.audience-card__icon::before {
	content: '';
	position: absolute;
	inset: 8px;
	background: var(--c-primary);
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
}
.audience-card__icon[data-icon="flag"]::before     { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M5 3v18h2v-7h11l-2-4 2-4H7V3z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M5 3v18h2v-7h11l-2-4 2-4H7V3z'/></svg>"); }
.audience-card__icon[data-icon="briefcase"]::before{ -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M9 4h6a2 2 0 0 1 2 2v1h4v12H3V7h4V6a2 2 0 0 1 2-2zm0 3h6V6H9v1z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M9 4h6a2 2 0 0 1 2 2v1h4v12H3V7h4V6a2 2 0 0 1 2-2zm0 3h6V6H9v1z'/></svg>"); }
.audience-card__icon[data-icon="laptop"]::before   { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M4 6h16v10H4zm-2 12h20v2H2z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M4 6h16v10H4zm-2 12h20v2H2z'/></svg>"); }
.audience-card__icon[data-icon="users"]::before    { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M9 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8zm7 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM2 20c0-3 3-5 7-5s7 2 7 5v1H2v-1zm15.5 1c-.2-2.4-1.8-4.2-4-5 1-.4 2.3-1 3.5-1 3 0 5 2 5 4.5V21h-4.5z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M9 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8zm7 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM2 20c0-3 3-5 7-5s7 2 7 5v1H2v-1zm15.5 1c-.2-2.4-1.8-4.2-4-5 1-.4 2.3-1 3.5-1 3 0 5 2 5 4.5V21h-4.5z'/></svg>"); }
.audience-card__icon[data-icon="chart"]::before    { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M3 21h18v-2H5V3H3zm4-4h2V9H7zm4 0h2V5h-2zm4 0h2v-6h-2z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M3 21h18v-2H5V3H3zm4-4h2V9H7zm4 0h2V5h-2zm4 0h2v-6h-2z'/></svg>"); }
.audience-card__icon[data-icon="home"]::before     { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 3 2 12h3v8h6v-6h2v6h6v-8h3z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 3 2 12h3v8h6v-6h2v6h6v-8h3z'/></svg>"); }
.audience-card__label {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: .95rem;
	color: var(--c-primary);
}

/* ============================================
   4. PROBLEM
   ============================================ */
.section--problem .section__lead { font-size: 1.12rem; }
.section--problem em {
	color: var(--c-primary);
	font-style: normal;
	font-family: var(--font-heading);
	font-weight: 600;
}
.section--problem .checklist { max-width: 540px; margin: 0 auto; }

/* ============================================
   5. SERVICES
   ============================================ */
.services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-3);
	margin-top: var(--space-4);
}
.service-card {
	background: var(--c-bg);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-md);
	padding: 1.8rem 1.6rem;
	transition: all .2s ease;
	position: relative;
}
.service-card:hover {
	transform: translateY(-3px);
	border-color: var(--c-accent);
	box-shadow: var(--shadow-md);
}
.service-card__icon {
	display: inline-flex;
	width: 48px; height: 48px;
	border-radius: 12px;
	background: var(--c-bg-soft);
	margin-bottom: 1rem;
	position: relative;
}
.service-card__icon::before {
	content: '';
	position: absolute;
	inset: 12px;
	background: var(--c-accent);
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
}
.service-card__icon[data-icon="compass"]::before  { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm3.5 6.5L13 13l-4.5 2.5L11 11z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm3.5 6.5L13 13l-4.5 2.5L11 11z'/></svg>"); }
.service-card__icon[data-icon="building"]::before { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M4 3h12v18h-5v-4H9v4H4zm2 2v2h2V5zm4 0v2h2V5zm4 0v2h2V5zM6 9v2h2V9zm4 0v2h2V9zm4 0v2h2V9zM6 13v2h2v-2zm4 0v2h2v-2zm4 0v2h2v-2zM18 9h2v12h-2z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M4 3h12v18h-5v-4H9v4H4zm2 2v2h2V5zm4 0v2h2V5zm4 0v2h2V5zM6 9v2h2V9zm4 0v2h2V9zm4 0v2h2V9zM6 13v2h2v-2zm4 0v2h2v-2zm4 0v2h2v-2zM18 9h2v12h-2z'/></svg>"); }
.service-card__icon[data-icon="shield"]::before   { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 2 4 5v6c0 5 3.4 9.4 8 11 4.6-1.6 8-6 8-11V5z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 2 4 5v6c0 5 3.4 9.4 8 11 4.6-1.6 8-6 8-11V5z'/></svg>"); }
.service-card__icon[data-icon="key"]::before      { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M14 7a4 4 0 1 1-3.7 5.5L3 19.8 6.2 23l1.5-1.5-1-1L8 19l1.5 1.5 1.5-1.5-1-1L11.5 16 13 17.5 14.5 16l-1-1 .8-.8A4 4 0 1 1 14 7zm0 2a2 2 0 1 0 0 4 2 2 0 0 0 0-4z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M14 7a4 4 0 1 1-3.7 5.5L3 19.8 6.2 23l1.5-1.5-1-1L8 19l1.5 1.5 1.5-1.5-1-1L11.5 16 13 17.5 14.5 16l-1-1 .8-.8A4 4 0 1 1 14 7zm0 2a2 2 0 1 0 0 4 2 2 0 0 0 0-4z'/></svg>"); }
.service-card__icon[data-icon="bank"]::before     { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 2 2 7v2h20V7zM4 10v8H3v2h18v-2h-1v-8h-2v8h-2v-8h-2v8h-2v-8h-2v8H8v-8H6v8H4v-8z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 2 2 7v2h20V7zM4 10v8H3v2h18v-2h-1v-8h-2v8h-2v-8h-2v8h-2v-8h-2v8H8v-8H6v8H4v-8z'/></svg>"); }
.service-card__icon[data-icon="family"]::before   { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M8 6a3 3 0 1 1 0-.01zM16 6a3 3 0 1 1 0-.01zM3 18c0-2.8 2.2-5 5-5s5 2.2 5 5v2H3zm12 0c0-1.4-.4-2.7-1.1-3.7C14.8 13.5 16 13 17 13c2.2 0 4 1.8 4 4v3h-6z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M8 6a3 3 0 1 1 0-.01zM16 6a3 3 0 1 1 0-.01zM3 18c0-2.8 2.2-5 5-5s5 2.2 5 5v2H3zm12 0c0-1.4-.4-2.7-1.1-3.7C14.8 13.5 16 13 17 13c2.2 0 4 1.8 4 4v3h-6z'/></svg>"); }
.service-card__title {
	font-size: 1.1rem;
	margin-bottom: .4em;
}
.service-card__desc {
	color: var(--c-muted);
	font-size: .96rem;
	margin: 0;
}

/* ============================================
   6. COMPARE
   ============================================ */
.compare__inner { text-align: center; }
.compare__inner .btn { margin-top: var(--space-2); }

/* ============================================
   7. PROCESS
   ============================================ */
.process__timeline {
	list-style: none;
	padding: 0;
	margin: var(--space-4) 0 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-3);
	counter-reset: step;
	position: relative;
}
.process__timeline::before {
	content: '';
	position: absolute;
	left: 5%; right: 5%;
	top: 26px;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--c-border) 8%, var(--c-border) 92%, transparent);
	z-index: 0;
}
.process__step {
	background: var(--c-white);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-md);
	padding: 1.6rem 1.2rem;
	position: relative;
	z-index: 1;
	text-align: left;
}
.process__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px; height: 46px;
	border-radius: 50%;
	background: var(--c-primary);
	color: #fff;
	font-family: var(--font-heading);
	font-weight: 700;
	margin-bottom: 1rem;
	box-shadow: 0 0 0 6px var(--c-bg);
}
.process__step h3 {
	font-size: 1.05rem;
	margin-bottom: .35em;
}
.process__step p {
	color: var(--c-muted);
	font-size: .95rem;
	margin: 0;
}

/* ============================================
   9. LEAD MAGNET
   ============================================ */
.section--lead-magnet h2,
.section--lead-magnet .section__title-accent { color: #fff; }
.section--lead-magnet .section__lead { color: rgba(255,255,255,.75); }

.lead-magnet__inner { text-align: center; }
.lead-magnet__form {
	display: flex;
	flex-wrap: wrap;
	gap: .6rem;
	justify-content: center;
	margin-top: var(--space-3);
}
.lead-magnet__form input {
	flex: 1 1 220px;
	min-width: 200px;
	padding: 1em 1.1em;
	border-radius: 999px;
	border: 1.5px solid rgba(255,255,255,.18);
	background: rgba(255,255,255,.08);
	color: #fff;
	font-family: var(--font-body);
	font-size: 1rem;
}
.lead-magnet__form input::placeholder { color: rgba(255,255,255,.55); }
.lead-magnet__form input:focus {
	outline: none;
	border-color: var(--c-accent);
	background: rgba(255,255,255,.14);
}
.lead-magnet__form .btn { flex: 0 0 auto; }
.lead-magnet__note {
	color: rgba(255,255,255,.6);
	font-size: .85rem;
	margin-top: 1rem;
}

/* Honeypot — visually hidden but available to bots */
.ntc-hp {
	position: absolute !important;
	left: -10000px !important;
	width: 1px; height: 1px;
	opacity: 0;
	pointer-events: none;
}

/* Submit button spinner */
.btn__spinner {
	display: none;
	width: 14px; height: 14px;
	border: 2px solid rgba(255,255,255,.4);
	border-top-color: #fff;
	border-radius: 50%;
	animation: ntc-spin .7s linear infinite;
	margin-left: .35rem;
}
.is-submitting .btn__spinner { display: inline-block; }
@keyframes ntc-spin { to { transform: rotate(360deg); } }

/* Form status messages */
.lead-magnet__status {
	margin-top: 1rem;
	min-height: 1.4em;
	font-size: .98rem;
	color: rgba(255,255,255,.92);
	transition: opacity .2s ease;
}
.lead-magnet__status.is-success {
	color: var(--c-bg-soft);
	font-weight: 600;
	padding: 1rem 1.25rem;
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(221,235,232,.3);
	border-radius: var(--radius-md);
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}
.lead-magnet__status.is-error {
	color: #ffd0bd;
}

/* Disabled state during submit */
.lead-magnet__form.is-submitting input,
.lead-magnet__form.is-submitting button {
	opacity: .7;
	cursor: wait;
}

/* ============================================
   10. FINAL CTA
   ============================================ */
.final-cta__inner { text-align: center; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
	background: var(--c-primary);
	color: rgba(255,255,255,.78);
	padding: var(--space-6) 0 var(--space-3);
	font-size: .94rem;
}
.site-footer__grid {
	display: grid;
	grid-template-columns: 1.6fr repeat(4, 1fr);
	gap: var(--space-4);
}
.site-footer__brand .site-logo__text { font-size: 1.4rem; }
.site-footer__brand .site-logo__nordic { color: #fff; }
.site-footer__brand .site-logo__to     { color: rgba(255,255,255,.5); }
.site-footer__brand .site-logo__cyprus { color: var(--c-accent); }
.site-footer__tagline {
	margin-top: 1rem;
	color: rgba(255,255,255,.65);
	max-width: 280px;
}
.site-footer h4 {
	color: #fff;
	font-size: .9rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	margin-bottom: 1em;
}
.footer-menu {
	list-style: none;
	padding: 0; margin: 0;
	display: flex;
	flex-direction: column;
	gap: .55em;
}
.footer-menu a {
	color: rgba(255,255,255,.78);
	transition: color .15s ease;
}
.footer-menu a:hover { color: var(--c-accent); }

.site-footer__bottom {
	margin-top: var(--space-5);
	padding-top: var(--space-3);
	border-top: 1px solid rgba(255,255,255,.08);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1rem;
	font-size: .82rem;
	color: rgba(255,255,255,.55);
}
.site-footer__bottom p { margin: 0; }
.site-footer__note { max-width: 560px; text-align: right; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
	.audience__grid     { grid-template-columns: repeat(3, 1fr); }
	.services__grid     { grid-template-columns: repeat(2, 1fr); }
	.process__timeline  { grid-template-columns: repeat(2, 1fr); }
	.process__timeline::before { display: none; }
	.site-footer__grid  { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 820px) {
	.hero__grid { grid-template-columns: 1fr; gap: var(--space-4); }
	.hero__image-wrap img { aspect-ratio: 16/10; }
	.hero__overlay-card  { position: static; max-width: 100%; margin-top: 1rem; }

	.site-nav {
		position: fixed;
		inset: 72px 0 auto 0;
		background: var(--c-bg);
		border-bottom: 1px solid var(--c-border);
		padding: 1.5rem 1.25rem 2rem;
		transform: translateY(-110%);
		transition: transform .25s ease;
		z-index: 49;
	}
	.site-nav.is-open { transform: translateY(0); }
	.ntc-menu {
		flex-direction: column;
		gap: 1rem;
		align-items: flex-start;
	}
	.ntc-menu a { font-size: 1.05rem; }
	.nav-toggle { display: inline-flex; }
	.site-header__cta .btn--sm { display: none; }
}

@media (max-width: 640px) {
	.section { padding: var(--space-5) 0; }
	.audience__grid    { grid-template-columns: repeat(2, 1fr); }
	.services__grid    { grid-template-columns: 1fr; }
	.process__timeline { grid-template-columns: 1fr; }
	.site-footer__grid { grid-template-columns: 1fr; gap: var(--space-3); }
	.site-footer__note { text-align: left; }
	.hero__overlay-card { padding: 1.1rem 1.2rem; }
}
