/* ==========================================================================
   Osislightkleen — Premium Design System  ("Forest Trust + Electric Lime")
   Housing Solutions & Professional Cleaning · Lagos, Nigeria
   ========================================================================== */

:root {
	/* Brand palette */
	--ink: #08160D;
	--pine: #0E2E1C;
	--pine-2: #123c25;
	--green: #1f7a4d;
	--green-600: #176640;
	--lime: #c6f135;
	--lime-2: #d9fa63;
	--lime-soft: #eef9c6;

	/* Neutrals */
	--paper: #ffffff;
	--cream: #f4f2e9;
	--cream-2: #ece8da;
	--text: #14231a;
	--muted: #5d6c62;
	--line: rgba(14, 46, 28, 0.12);
	--line-strong: rgba(14, 46, 28, 0.2);

	/* System */
	--radius: 24px;
	--radius-lg: 34px;
	--radius-sm: 14px;
	--shadow-sm: 0 2px 10px rgba(8, 22, 13, 0.06);
	--shadow: 0 18px 40px -18px rgba(8, 22, 13, 0.28);
	--shadow-lg: 0 40px 80px -30px rgba(8, 22, 13, 0.42);
	--ring: 0 0 0 1px var(--line);

	--display: 'Sora', system-ui, sans-serif;
	--body: 'Inter', system-ui, sans-serif;

	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Preloader ---------- */
.olk-preloader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	background: var(--pine);
	transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.olk-preloader.is-done {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.olk-preloader__spinner {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 3px solid rgba(255, 255, 255, 0.18);
	border-top-color: var(--lime);
	animation: olk-spin 0.7s linear infinite;
}
@keyframes olk-spin {
	to { transform: rotate(360deg); }
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
	max-width: 100%;
}

body.olk-body {
	margin: 0;
	font-family: var(--body);
	font-size: 17px;
	line-height: 1.65;
	color: var(--text);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
	max-width: 100%;
	width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

h1, h2, h3, h4, h5 {
	font-family: var(--display);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: var(--ink);
	margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }
::selection { background: var(--lime); color: var(--ink); }

/* ---------- Layout ---------- */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	box-sizing: border-box;
}

img, svg, video {
	max-width: 100%;
}

section, header, footer, .olk-hero, .olk-section {
	max-width: 100%;
}

.olk-section { padding: clamp(64px, 9vw, 128px) 0; position: relative; }
.olk-section--surface { background: var(--cream); }
.olk-section--pine { background: var(--pine); color: rgba(255,255,255,0.82); }
.olk-section--tight { padding: clamp(48px, 6vw, 84px) 0; }

.olk-section__header {
	max-width: 680px;
	margin: 0 auto clamp(40px, 5vw, 68px);
	text-align: center;
}
.olk-section__header h2 { font-size: clamp(30px, 4vw, 50px); }
.olk-section__header p { color: var(--muted); font-size: 18px; margin: 0; }
.olk-section--pine .olk-section__header h2 { color: #fff; }
.olk-section--pine .olk-section__header p { color: rgba(255,255,255,0.68); }

/* Eyebrow / pill label */
.olk-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 7px 16px 7px 12px;
	background: rgba(31, 122, 77, 0.08);
	color: var(--green-600);
	border: 1px solid rgba(31, 122, 77, 0.18);
	border-radius: 100px;
	font-family: var(--display);
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.olk-eyebrow::before {
	content: "";
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--lime);
	box-shadow: 0 0 0 4px rgba(198, 241, 53, 0.25);
}
.olk-section--pine .olk-eyebrow,
.olk-eyebrow--light {
	background: rgba(198, 241, 53, 0.1);
	color: var(--lime);
	border-color: rgba(198, 241, 53, 0.28);
}

/* ---------- Buttons ---------- */
.olk-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 28px;
	font-family: var(--display);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: -0.01em;
	border-radius: 100px;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
	white-space: nowrap;
	max-width: 100%;
	box-sizing: border-box;
}
.olk-btn svg { width: 18px; height: 18px; transition: transform 0.35s var(--ease); }
.olk-btn:hover { transform: translateY(-3px); }
.olk-btn:hover svg { transform: translate(3px, -3px); }
.olk-btn--sm { padding: 12px 22px; font-size: 14px; }

.olk-btn--primary {
	background: var(--lime);
	color: var(--ink);
	box-shadow: 0 14px 30px -10px rgba(198, 241, 53, 0.6);
}
.olk-btn--primary:hover { background: var(--lime-2); box-shadow: 0 20px 40px -12px rgba(198, 241, 53, 0.75); }

.olk-btn--dark { background: var(--pine); color: #fff; }
.olk-btn--dark:hover { background: var(--ink); }

.olk-btn--white { background: #fff; color: var(--ink); box-shadow: var(--shadow); }
.olk-btn--white:hover { background: #fff; }

.olk-btn--outline { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.olk-btn--outline:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.olk-btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.28); }
.olk-btn--outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* Circular arrow button used across cards */
.olk-arrow-btn {
	display: inline-grid;
	place-items: center;
	width: 52px; height: 52px;
	border-radius: 50%;
	background: var(--lime);
	color: var(--ink);
	border: none;
	cursor: pointer;
	flex: none;
	transition: transform 0.35s var(--ease), background 0.3s;
}
.olk-arrow-btn svg { width: 20px; height: 20px; transition: transform 0.35s var(--ease); }
.olk-arrow-btn:hover { background: var(--lime-2); transform: rotate(45deg); }

/* ---------- Header ---------- */
.olk-topbar {
	background: var(--ink);
	color: rgba(255,255,255,0.72);
	font-size: 13px;
	overflow: hidden;
}
.olk-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 10px 0;
	flex-wrap: wrap;
	min-width: 0;
}
.olk-topbar__left {
	display: flex;
	align-items: center;
	gap: 22px;
	flex-wrap: wrap;
	min-width: 0;
	flex: 1 1 auto;
}
.olk-topbar__left > span {
	white-space: nowrap;
}
.olk-topbar a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(255,255,255,0.72);
	transition: color 0.2s;
	min-width: 0;
	max-width: 100%;
}
.olk-topbar a:hover { color: var(--lime); }
.olk-topbar svg { width: 15px; height: 15px; color: var(--lime); flex: none; }
.olk-topbar__socials { display: flex; gap: 14px; flex: none; }
.olk-topbar__wa-short { display: none; }

.olk-header {
	position: sticky;
	top: 0;
	z-index: 900;
	background: rgba(255,255,255,0.72);
	backdrop-filter: blur(18px) saturate(160%);
	-webkit-backdrop-filter: blur(18px) saturate(160%);
	border-bottom: 1px solid transparent;
	transition: box-shadow 0.4s var(--ease), background 0.4s, border-color 0.4s;
}
.olk-header.is-stuck {
	box-shadow: 0 12px 34px -20px rgba(8, 22, 13, 0.4);
	border-bottom-color: var(--line);
	background: rgba(255,255,255,0.9);
}
.olk-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 16px 0;
}

/* Logo */
.site-logo { display: inline-flex; align-items: center; gap: 12px; }
.site-logo__img {
	display: block;
	height: 48px;
	width: auto;
	max-width: 160px;
	object-fit: contain;
	border-radius: 8px;
}
.olk-footer .site-logo__img,
.olk-drawer .site-logo__img {
	height: 44px;
	max-width: 148px;
}
.site-logo__mark {
	width: 44px; height: 44px;
	border-radius: 13px;
	background: linear-gradient(140deg, var(--green), var(--pine));
	display: grid; place-items: center;
	color: var(--lime);
	box-shadow: var(--shadow-sm);
	flex: none;
}
.site-logo__mark svg { width: 24px; height: 24px; }
.site-logo__text { font-family: var(--display); font-weight: 700; font-size: 21px; letter-spacing: -0.03em; line-height: 1; }
.logo-osis { color: var(--ink); }
.logo-light { color: var(--green); }
.logo-kleen { color: var(--ink); }
.site-logo__sub { display: block; font-family: var(--body); font-size: 10.5px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.olk-footer .logo-osis, .olk-footer .logo-kleen { color: #fff; }
.olk-footer .logo-light { color: var(--lime); }
.olk-footer .site-logo__sub { color: rgba(255,255,255,0.5); }

/* Nav */
.olk-nav { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.olk-nav > li > a {
	display: block;
	padding: 10px 16px;
	font-size: 15px;
	font-weight: 500;
	color: var(--text);
	border-radius: 100px;
	transition: color 0.2s, background 0.2s;
}
.olk-nav > li > a:hover,
.olk-nav > li > a.active { color: var(--ink); background: rgba(14, 46, 28, 0.06); }
.olk-header__actions { display: flex; align-items: center; gap: 14px; }
.olk-header__phone { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-family: var(--display); font-size: 14px; }
.olk-header__phone svg { width: 34px; height: 34px; padding: 8px; border-radius: 50%; background: var(--lime-soft); color: var(--green-600); }

.olk-menu-toggle {
	display: none;
	width: 46px; height: 46px;
	border: 1px solid var(--line-strong);
	background: #fff;
	border-radius: 12px;
	cursor: pointer;
	color: var(--ink);
	place-items: center;
}
.olk-menu-toggle svg { width: 22px; height: 22px; }

/* Mobile drawer */
.olk-backdrop {
	position: fixed; inset: 0;
	background: rgba(8, 22, 13, 0.5);
	backdrop-filter: blur(4px);
	opacity: 0; visibility: hidden;
	transition: opacity 0.35s, visibility 0.35s;
	z-index: 1000;
}
.olk-backdrop.is-open { opacity: 1; visibility: visible; }
.olk-drawer {
	position: fixed; top: 0; right: 0; bottom: 0;
	width: min(340px, 86vw);
	background: var(--pine);
	color: #fff;
	z-index: 1001;
	transform: translateX(100%);
	transition: transform 0.45s var(--ease);
	padding: 26px;
	display: flex; flex-direction: column;
	overflow-y: auto;
}
.olk-drawer.is-open { transform: translateX(0); }
.olk-drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.olk-drawer__close { background: rgba(255,255,255,0.08); border: none; color: #fff; width: 42px; height: 42px; border-radius: 12px; cursor: pointer; display: grid; place-items: center; }
.olk-drawer__close svg { width: 20px; height: 20px; }
.olk-drawer nav a {
	display: block;
	padding: 15px 6px;
	font-family: var(--display);
	font-size: 20px;
	font-weight: 600;
	color: rgba(255,255,255,0.86);
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.olk-drawer nav a:hover, .olk-drawer nav a.active { color: var(--lime); }
.olk-drawer .olk-btn { margin-top: 26px; }
.olk-drawer__contact { margin-top: auto; padding-top: 24px; font-size: 14px; color: rgba(255,255,255,0.62); }
.olk-drawer__contact a { color: var(--lime); }

/* ---------- Hero ---------- */
.olk-hero {
	position: relative;
	background: var(--pine);
	color: #fff;
	overflow: hidden;
	padding: clamp(48px, 7vw, 96px) 0 clamp(64px, 8vw, 110px);
}
.olk-hero::before {
	content: "";
	position: absolute;
	top: -20%; right: -10%;
	width: 620px; height: 620px;
	background: radial-gradient(circle, rgba(31,122,77,0.55), transparent 68%);
	filter: blur(20px);
	pointer-events: none;
}
.olk-hero::after {
	content: "";
	position: absolute;
	bottom: -30%; left: -8%;
	width: 520px; height: 520px;
	background: radial-gradient(circle, rgba(198,241,53,0.14), transparent 66%);
	pointer-events: none;
}
.olk-hero__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.08fr 0.92fr;
	gap: clamp(32px, 5vw, 72px);
	align-items: start;
}
.olk-hero__content {
	max-width: 640px;
	padding-top: clamp(6px, 2vw, 24px);
}
.olk-hero__label {
	display: inline-flex; align-items: center; gap: 9px;
	padding: 8px 16px 8px 12px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.14);
	border-radius: 100px;
	font-family: var(--display); font-size: 13px; font-weight: 500;
	color: rgba(255,255,255,0.85);
	margin-bottom: 26px;
}
.olk-hero__label b { color: var(--lime); font-weight: 600; }
.olk-hero h1 {
	color: #fff;
	font-size: clamp(40px, 6vw, 78px);
	line-height: 1.02;
	margin-bottom: 22px;
}
.olk-hero h1 .accent { color: var(--lime); position: relative; }
.olk-hero p { font-size: clamp(17px, 1.4vw, 20px); color: rgba(255,255,255,0.75); max-width: 540px; margin-bottom: 34px; }
.olk-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.olk-hero__proof { display: flex; gap: 34px; margin-top: 46px; flex-wrap: wrap; }
.olk-hero__proof .num { font-family: var(--display); font-size: clamp(28px, 3vw, 40px); font-weight: 700; color: #fff; line-height: 1; }
.olk-hero__proof .num span { color: var(--lime); }
.olk-hero__proof .lbl { font-size: 13.5px; color: rgba(255,255,255,0.6); margin-top: 8px; display: block; }
.olk-hero__proof > div { position: relative; padding-right: 34px; }
.olk-hero__proof > div:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 6px; bottom: 6px; width: 1px; background: rgba(255,255,255,0.14); }

/* Hero media bento */
.olk-hero__media {
	position: relative;
	width: min(100%, 500px);
	max-width: 100%;
	justify-self: end;
	display: grid;
	gap: 16px;
	min-width: 0;
}
.olk-hero__frame {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	aspect-ratio: 4 / 5;
	border: 1px solid rgba(255,255,255,0.1);
	width: 100%;
}
.olk-hero__frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.olk-hero__badge {
	position: absolute;
	left: 12px;
	right: auto;
	bottom: 18px;
	max-width: calc(100% - 24px);
	background: rgba(255,255,255,0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 18px;
	padding: 14px 16px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: var(--shadow);
	color: var(--ink);
	z-index: 3;
	min-width: 0;
}
.olk-hero__badge .ico {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--pine);
	color: var(--lime);
	display: grid;
	place-items: center;
	flex: none;
}
.olk-hero__badge .ico svg { width: 22px; height: 22px; }
.olk-hero__badge > span:last-child {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}
.olk-hero__badge b {
	font-family: var(--display);
	display: block;
	font-size: 15px;
	line-height: 1.2;
}
.olk-hero__badge > span:last-child > span {
	font-size: 12.5px;
	color: var(--muted);
	line-height: 1.35;
}
.olk-hero__chip {
	position: absolute;
	right: 12px;
	top: 16px;
	background: var(--lime);
	color: var(--ink);
	border-radius: 100px;
	padding: 10px 16px;
	font-family: var(--display);
	font-weight: 700;
	font-size: 14px;
	box-shadow: var(--shadow);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	z-index: 3;
	white-space: nowrap;
}
.olk-hero__chip svg { width: 16px; height: 16px; flex: none; }

/* Rating row */
.olk-hero__rating {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	padding: 0 4px;
	position: relative;
	z-index: 2;
	min-width: 0;
	width: 100%;
}
.olk-hero__avatars { display: flex; flex: none; }
.olk-hero__avatars img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--pine);
	margin-left: -12px;
}
.olk-hero__avatars img:first-child { margin-left: 0; }
.olk-hero__rating > div:last-child {
	min-width: 0;
	flex: 1 1 auto;
}
.olk-stars { color: var(--lime); display: inline-flex; gap: 2px; flex-wrap: wrap; }
.olk-stars svg { width: 16px; height: 16px; flex: none; }
.olk-hero__rating small {
	display: block;
	font-size: 13px;
	color: rgba(255,255,255,0.6);
	line-height: 1.35;
	margin-top: 2px;
}
.olk-hero__rating b { color: #fff; font-family: var(--display); }

/* ---------- Marquee / trust ---------- */
.olk-marquee { padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; overflow: hidden; }
.olk-marquee__track { display: flex; gap: 60px; width: max-content; animation: olk-scroll 32s linear infinite; align-items: center; }
.olk-marquee:hover .olk-marquee__track { animation-play-state: paused; }
.olk-marquee__item { display: inline-flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 600; font-size: 18px; color: var(--muted); white-space: nowrap; }
.olk-marquee__item svg { width: 22px; height: 22px; color: var(--green); }
@keyframes olk-scroll { to { transform: translateX(-50%); } }

/* ---------- About ---------- */
.olk-about {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(36px, 5vw, 72px);
	align-items: center;
}
.olk-about__media {
	position: relative;
	min-width: 0;
	width: 100%;
	padding-bottom: 12px;
}
.olk-about__media img {
	border-radius: var(--radius);
	width: 100%;
	object-fit: cover;
	box-shadow: var(--shadow);
	display: block;
}
.olk-about__media .img-a { aspect-ratio: 1/1; }
.olk-about__stack {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 18px;
	align-items: start;
	min-width: 0;
}
.olk-about__stack .img-b { aspect-ratio: 4/5; margin-top: 40px; }
.olk-about__badge {
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	background: var(--pine);
	color: #fff;
	border-radius: 20px;
	padding: 18px 22px;
	box-shadow: var(--shadow);
	text-align: center;
	z-index: 2;
	width: max-content;
	max-width: calc(100% - 24px);
	box-sizing: border-box;
}
.olk-about__badge b {
	font-family: var(--display);
	font-size: clamp(28px, 5vw, 40px);
	color: var(--lime);
	display: block;
	line-height: 1;
}
.olk-about__badge span {
	display: block;
	font-size: 13px;
	color: rgba(255,255,255,0.7);
	line-height: 1.35;
	margin-top: 4px;
}
.olk-about__text { min-width: 0; }
.olk-about h2 { font-size: clamp(28px, 3.6vw, 46px); margin-bottom: 20px; }
.olk-about__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 22px 0 8px;
}
.olk-about__pills span {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	border-radius: 100px;
	background: #fff;
	border: 1px solid var(--line);
	color: var(--green-600);
	font-family: var(--display);
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.02em;
}
.olk-about__list { list-style: none; padding: 0; margin: 22px 0 30px; display: grid; gap: 14px; }
.olk-about__list li { display: flex; gap: 14px; align-items: flex-start; font-weight: 500; color: var(--text); }
.olk-about__list .tick { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--lime-soft); color: var(--green-600); display: grid; place-items: center; margin-top: 2px; }
.olk-about__list .tick svg { width: 15px; height: 15px; }

/* ---------- Bento features ---------- */
.olk-bento {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.olk-bento__cell {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 32px;
	position: relative;
	overflow: hidden;
	transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}
.olk-bento__cell:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.olk-bento__cell .ico {
	width: 58px; height: 58px; border-radius: 16px;
	background: var(--cream); color: var(--green-600);
	display: grid; place-items: center; margin-bottom: 22px;
	transition: background 0.4s, color 0.4s;
}
.olk-bento__cell:hover .ico { background: var(--lime); color: var(--ink); }
.olk-bento__cell .ico svg { width: 28px; height: 28px; }
.olk-bento__cell h3 { font-size: 21px; margin-bottom: 10px; }
.olk-bento__cell p { color: var(--muted); font-size: 15.5px; margin: 0; }
.olk-bento__cell--wide { grid-column: span 2; }
.olk-bento__cell--dark { background: var(--pine); color: #fff; border-color: transparent; grid-column: span 2; display: flex; flex-direction: column; justify-content: space-between; }
.olk-bento__cell--dark h3 { color: #fff; font-size: 26px; }
.olk-bento__cell--dark p { color: rgba(255,255,255,0.7); }
.olk-bento__cell--dark .ico { background: rgba(198,241,53,0.14); color: var(--lime); }
.olk-bento__cell--dark:hover .ico { background: var(--lime); color: var(--ink); }
.olk-bento__cell--feature {
	background: linear-gradient(150deg, var(--green), var(--pine));
	color: #fff; border-color: transparent;
}
.olk-bento__cell--feature h3 { color: #fff; }
.olk-bento__cell--feature p { color: rgba(255,255,255,0.78); }

/* ---------- Service cards ---------- */
.olk-services {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}
.olk-services--two {
	grid-template-columns: repeat(2, 1fr);
}
.olk-service {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--ink);
	min-height: 420px;
	display: flex;
	align-items: flex-end;
	box-shadow: var(--shadow-sm);
	transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.olk-service img {
	position: absolute; inset: 0;
	width: 100%; height: 100%; object-fit: cover;
	transition: transform 0.7s var(--ease);
}
.olk-service::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,22,13,0.92) 8%, rgba(8,22,13,0.35) 52%, rgba(8,22,13,0.05) 100%); }
.olk-service:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.olk-service:hover img { transform: scale(1.08); }
.olk-service__body { position: relative; z-index: 2; padding: 30px; color: #fff; width: 100%; }
.olk-service__tag {
	display: inline-flex; align-items: center;
	background: rgba(198,241,53,0.16);
	color: var(--lime); border: 1px solid rgba(198,241,53,0.3);
	padding: 6px 14px; border-radius: 100px;
	font-family: var(--display); font-size: 12px; font-weight: 600;
	letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 14px;
}
.olk-service__body h3 { color: #fff; font-size: 24px; margin-bottom: 10px; }
.olk-service__body p { color: rgba(255,255,255,0.74); font-size: 15px; margin: 0 0 18px; max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.5s var(--ease), opacity 0.4s, margin 0.5s; }
.olk-service:hover .olk-service__body p { max-height: 120px; opacity: 1; margin-bottom: 18px; }
.olk-service__link { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 600; font-size: 14px; color: var(--lime); }
.olk-service__link svg { width: 18px; height: 18px; transition: transform 0.35s var(--ease); }
.olk-service:hover .olk-service__link svg { transform: translateX(5px); }

/* ---------- Our works showcase ---------- */
.olk-works__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
	flex-wrap: wrap;
}
.olk-works__head p {
	margin: 0;
	color: rgba(255,255,255,0.68);
	font-size: 15px;
}
.olk-works__actions { display: flex; gap: 10px; }
.olk-works__arrow {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.24);
	background: rgba(255,255,255,0.08);
	color: #fff;
	display: grid;
	place-items: center;
	cursor: pointer;
	transition: all 0.25s ease;
}
.olk-works__arrow svg { width: 18px; height: 18px; }
.olk-works__arrow:hover {
	background: var(--lime);
	color: var(--ink);
	border-color: var(--lime);
}
.olk-works__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(260px, 300px);
	gap: 18px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding-bottom: 4px;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.olk-works__track::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}
.olk-work-card {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	min-height: 300px;
	scroll-snap-align: start;
	border: 1px solid rgba(255,255,255,0.16);
	background: rgba(255,255,255,0.05);
	transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.olk-work-card:hover {
	transform: translateY(-6px);
	border-color: rgba(198,241,53,0.45);
	box-shadow: 0 24px 36px -24px rgba(0,0,0,0.65);
}
.olk-work-card img {
	width: 100%;
	height: 100%;
	min-height: 300px;
	object-fit: cover;
}
.olk-work-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(8,22,13,0.88) 10%, rgba(8,22,13,0.25) 56%, rgba(8,22,13,0.06) 100%);
}
.olk-work-card__meta {
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 14px;
	z-index: 2;
}
.olk-work-card__meta h4 {
	color: #fff;
	font-size: 19px;
	margin: 0 0 4px;
}
.olk-work-card__meta p {
	margin: 0;
	color: rgba(198,241,53,0.95);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

/* ---------- Process / steps ---------- */
.olk-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.olk-step { position: relative; padding-top: 20px; }
.olk-step__no {
	font-family: var(--display); font-weight: 700; font-size: 15px;
	width: 54px; height: 54px; border-radius: 16px;
	background: var(--cream); color: var(--green-600);
	display: grid; place-items: center; margin-bottom: 22px;
	border: 1px solid var(--line);
}
.olk-section--pine .olk-step__no { background: rgba(255,255,255,0.06); color: var(--lime); border-color: rgba(255,255,255,0.12); }
.olk-step h3 { font-size: 20px; margin-bottom: 10px; }
.olk-section--pine .olk-step h3 { color: #fff; }
.olk-step p { color: var(--muted); font-size: 15px; margin: 0; }
.olk-section--pine .olk-step p { color: rgba(255,255,255,0.62); }
.olk-step::before {
	content: ""; position: absolute; top: 47px; left: 66px; right: -12px; height: 2px;
	background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 12px);
}
.olk-step:last-child::before { display: none; }
.olk-section--pine .olk-step::before { background: repeating-linear-gradient(90deg, rgba(255,255,255,0.16) 0 6px, transparent 6px 12px); }

/* ---------- Why us / split feature ---------- */
.olk-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.olk-split__media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5/6; }
.olk-split__media img { width: 100%; height: 100%; object-fit: cover; }
.olk-feature-list { display: grid; gap: 18px; margin-top: 30px; }
.olk-feature-list__item { display: flex; gap: 18px; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); transition: transform 0.35s var(--ease), box-shadow 0.35s; }
.olk-feature-list__item:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }
.olk-feature-list__item .ico { flex: none; width: 52px; height: 52px; border-radius: 14px; background: var(--lime-soft); color: var(--green-600); display: grid; place-items: center; }
.olk-feature-list__item .ico svg { width: 26px; height: 26px; }
.olk-feature-list__item h4 { font-size: 18px; margin-bottom: 4px; }
.olk-feature-list__item p { color: var(--muted); font-size: 15px; margin: 0; }

/* ---------- Stats band ---------- */
.olk-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.olk-stat {
	text-align: center; padding: 36px 20px;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: var(--radius);
	transition: background 0.35s, border-color 0.35s, transform 0.35s var(--ease);
}
.olk-stat:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.olk-stat b { font-family: var(--display); font-size: clamp(38px, 5vw, 58px); font-weight: 700; color: var(--lime); line-height: 1; display: block; }
.olk-stat span { color: rgba(255,255,255,0.66); font-size: 15px; margin-top: 12px; display: block; }

/* ---------- Testimonials ---------- */
.olk-testi { max-width: 900px; margin: 0 auto; }
.olk-testi__card {
	background: #fff; border: 1px solid var(--line);
	border-radius: var(--radius-lg); padding: clamp(32px, 5vw, 56px);
	box-shadow: var(--shadow); position: relative;
}
.olk-testi__quote { position: absolute; top: 30px; right: 40px; font-family: var(--display); font-size: 120px; line-height: 1; color: var(--lime); opacity: 0.5; }
.olk-testi__stars { color: var(--lime); display: inline-flex; gap: 3px; margin-bottom: 18px; }
.olk-testi__stars svg { width: 22px; height: 22px; }
.olk-testi__text { font-family: var(--display); font-size: clamp(20px, 2.4vw, 28px); font-weight: 500; line-height: 1.4; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 30px; }
.olk-testi__person { display: flex; align-items: center; gap: 16px; }
.olk-testi__person img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.olk-testi__person b { font-family: var(--display); font-size: 17px; display: block; }
.olk-testi__person span { color: var(--muted); font-size: 14px; }
.olk-testi__slide { display: none; }
.olk-testi__slide.is-active { display: block; animation: olk-fade 0.6s var(--ease); }
.olk-testi__nav { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 34px; }
.olk-testi__dot { width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--line-strong); cursor: pointer; transition: width 0.3s, background 0.3s; padding: 0; }
.olk-testi__dot.is-active { width: 30px; border-radius: 100px; background: var(--green); }
.olk-testi__arrows { display: flex; gap: 10px; }
.olk-testi__arrow { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-strong); background: #fff; cursor: pointer; display: grid; place-items: center; color: var(--ink); transition: background 0.3s, color 0.3s, border-color 0.3s; }
.olk-testi__arrow:hover { background: var(--pine); color: #fff; border-color: var(--pine); }
.olk-testi__arrow svg { width: 20px; height: 20px; }
@keyframes olk-fade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ---------- FAQ ---------- */
.olk-faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.olk-faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s; }
.olk-faq__item.is-open { border-color: transparent; box-shadow: var(--shadow); }
.olk-faq__q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 24px 26px; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--display); font-size: 18px; font-weight: 600; color: var(--ink); }
.olk-faq__icon { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--cream); display: grid; place-items: center; transition: background 0.3s, transform 0.4s var(--ease); }
.olk-faq__icon svg { width: 18px; height: 18px; }
.olk-faq__item.is-open .olk-faq__icon { background: var(--lime); transform: rotate(180deg); }
.olk-faq__a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.olk-faq__a p { padding: 0 26px 24px; color: var(--muted); margin: 0; }

/* ---------- CTA band ---------- */
.olk-cta {
	position: relative;
	background: linear-gradient(140deg, var(--green), var(--pine));
	border-radius: var(--radius-lg);
	padding: clamp(40px, 6vw, 72px);
	overflow: hidden;
	display: flex; align-items: center; justify-content: space-between;
	gap: 34px; flex-wrap: wrap;
	box-shadow: var(--shadow-lg);
}
.olk-cta::before { content: ""; position: absolute; top: -40%; right: -6%; width: 420px; height: 420px; background: radial-gradient(circle, rgba(198,241,53,0.25), transparent 66%); }
.olk-cta__text { position: relative; z-index: 2; max-width: 620px; }
.olk-cta__text h2 { color: #fff; font-size: clamp(28px, 3.6vw, 44px); margin-bottom: 12px; }
.olk-cta__text p { color: rgba(255,255,255,0.8); margin: 0; font-size: 18px; }
.olk-cta__actions { position: relative; z-index: 2; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Page hero (inner pages) ---------- */
.olk-page-hero {
	background: var(--pine);
	color: #fff;
	padding: clamp(64px, 8vw, 120px) 0 clamp(56px, 7vw, 96px);
	position: relative;
	overflow: hidden;
	text-align: center;
}
.olk-page-hero::before { content: ""; position: absolute; top: -30%; left: 50%; transform: translateX(-50%); width: 700px; height: 500px; background: radial-gradient(circle, rgba(31,122,77,0.5), transparent 66%); }
.olk-page-hero__inner { position: relative; z-index: 2; }
.olk-page-hero h1 {
	color: #fff;
	font-size: clamp(36px, 5.5vw, 66px);
	margin-bottom: 16px;
	text-wrap: balance;
	max-width: 14em;
	margin-left: auto;
	margin-right: auto;
}
.olk-page-hero p {
	color: rgba(255,255,255,0.72);
	font-size: 19px;
	max-width: 560px;
	margin: 0 auto 22px;
	text-wrap: pretty;
}
.olk-breadcrumb { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.6); }
.olk-breadcrumb a { color: var(--lime); }
.olk-breadcrumb svg { width: 14px; height: 14px; }

/* ---------- Mission / pillars ---------- */
.olk-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.olk-mission__card { background: var(--cream); border-radius: var(--radius); padding: clamp(30px, 4vw, 48px); border: 1px solid var(--line); }
.olk-mission__card--dark { background: var(--pine); color: #fff; border-color: transparent; }
.olk-mission__card--dark h3 { color: #fff; }
.olk-mission__card--dark p { color: rgba(255,255,255,0.72); }
.olk-mission__card h3 { font-size: 26px; margin: 14px 0; }
.olk-mission__card p { color: var(--muted); margin-bottom: 0; }
.olk-mission__card p + p { margin-top: 14px; }

/* CEO */
.olk-ceo {
	display: grid;
	grid-template-columns: minmax(240px, 0.9fr) 1.2fr;
	gap: clamp(36px, 5vw, 72px);
	align-items: center;
}
.olk-ceo__media {
	position: relative;
	isolation: isolate;
}
.olk-ceo__media img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	object-position: center top;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	position: relative;
	z-index: 1;
}
.olk-ceo__frame-accent {
	position: absolute;
	inset: 18px -18px -18px 18px;
	border-radius: var(--radius);
	border: 2px solid var(--lime);
	z-index: 0;
	pointer-events: none;
}
.olk-ceo__text { min-width: 0; }
.olk-ceo h2 {
	font-size: clamp(28px, 3.6vw, 42px);
	margin-bottom: 8px;
}
.olk-ceo__role {
	font-family: var(--display);
	font-size: 15px;
	font-weight: 600;
	color: var(--green);
	letter-spacing: 0.04em;
	margin: 0 0 20px;
}
.olk-ceo__text p { color: var(--muted); margin-bottom: 14px; }
.olk-ceo__text .olk-lead { color: var(--text); }
.olk-ceo__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}
.olk-ceo__tags span {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--pine);
	background: var(--lime-soft);
	border-radius: 999px;
	border: 1px solid rgba(31, 122, 77, 0.12);
}

.olk-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.olk-pillar { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; transition: transform 0.35s var(--ease), box-shadow 0.35s; }
.olk-pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.olk-pillar .ico { width: 58px; height: 58px; border-radius: 16px; background: var(--lime-soft); color: var(--green-600); display: grid; place-items: center; margin-bottom: 20px; }
.olk-pillar .ico svg { width: 28px; height: 28px; }
.olk-pillar h4 { font-size: 21px; margin-bottom: 10px; }
.olk-pillar p { color: var(--muted); margin: 0; font-size: 15.5px; }

/* ---------- Values / team ---------- */
.olk-team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.olk-team__card { border-radius: var(--radius); overflow: hidden; position: relative; background: var(--ink); }
.olk-team__card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform 0.6s var(--ease); }
.olk-team__card:hover img { transform: scale(1.06); }
.olk-team__card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,22,13,0.85), transparent 55%); }
.olk-team__info { position: absolute; bottom: 22px; left: 22px; right: 22px; z-index: 2; color: #fff; }
.olk-team__info b { font-family: var(--display); font-size: 18px; display: block; }
.olk-team__info span { color: var(--lime); font-size: 13px; }

/* ---------- Credentials ---------- */
.olk-credentials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.olk-credential { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; display: flex; gap: 22px; align-items: flex-start; transition: transform 0.35s var(--ease), box-shadow 0.35s; }
.olk-credential:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.olk-credential .ico { flex: none; width: 64px; height: 64px; border-radius: 18px; background: linear-gradient(140deg, var(--green), var(--pine)); color: var(--lime); display: grid; place-items: center; }
.olk-credential .ico svg { width: 30px; height: 30px; }
.olk-credential h4 { font-size: 20px; margin-bottom: 8px; }
.olk-credential p { color: var(--muted); font-size: 15px; margin-bottom: 18px; }

/* ---------- Contact ---------- */
.olk-contact { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 30px; align-items: start; }
.olk-contact__form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 46px); box-shadow: var(--shadow); }
.olk-contact__form h2 { font-size: 30px; margin-bottom: 8px; }
.olk-form-intro { color: var(--muted); margin-bottom: 26px; }
.olk-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.olk-field { margin-bottom: 18px; }
.olk-field label { display: block; font-family: var(--display); font-size: 13.5px; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.olk-field input, .olk-field textarea, .olk-field select {
	width: 100%; padding: 15px 18px; font-family: var(--body); font-size: 15px;
	border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--cream);
	color: var(--text); transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.olk-field input:focus, .olk-field textarea:focus, .olk-field select:focus {
	outline: none; border-color: var(--green); background: #fff; box-shadow: 0 0 0 4px rgba(31,122,77,0.1);
}
.olk-field input.error, .olk-field textarea.error { border-color: #d64545; background: #fdf1f1; }
.olk-field textarea { resize: vertical; min-height: 140px; }
#success { display: none; }
#success .alert { background: var(--lime-soft); border: 1px solid rgba(31,122,77,0.3); color: var(--green-600); padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 20px; }

.olk-contact__info { display: grid; gap: 18px; }
.olk-contact__panel { background: var(--pine); color: #fff; border-radius: var(--radius); padding: 34px; }
.olk-contact__panel h2 { color: #fff; font-size: 24px; margin-bottom: 20px; }
.olk-contact__item { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.olk-contact__item:last-child { border-bottom: none; }
.olk-contact__item .ico { flex: none; width: 46px; height: 46px; border-radius: 12px; background: rgba(198,241,53,0.14); color: var(--lime); display: grid; place-items: center; }
.olk-contact__item .ico svg { width: 22px; height: 22px; }
.olk-contact__item strong { display: block; font-family: var(--display); font-size: 15px; }
.olk-contact__item span, .olk-contact__item a { color: rgba(255,255,255,0.72); font-size: 15px; }
.olk-contact__item a:hover { color: var(--lime); }
.olk-service-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 10px; }
.olk-service-list li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.82); font-size: 15px; }
.olk-service-list li::before { content: ""; width: 20px; height: 20px; border-radius: 50%; background: var(--lime); flex: none; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/13px no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/13px no-repeat; }

/* ---------- Footer ---------- */
.olk-footer { background: var(--ink); color: rgba(255,255,255,0.66); padding: clamp(56px, 7vw, 90px) 0 0; }
.olk-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 54px; }
.olk-footer__brand p { margin: 20px 0 24px; max-width: 320px; font-size: 15px; }
.olk-footer h4 { color: #fff; font-size: 16px; margin-bottom: 22px; letter-spacing: 0.02em; }
.olk-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.olk-footer ul a, .olk-footer ul li { color: rgba(255,255,255,0.62); font-size: 15px; transition: color 0.2s; }
.olk-footer ul a:hover { color: var(--lime); }
.olk-footer__socials { display: flex; gap: 12px; }
.olk-footer__socials a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,0.06); display: grid; place-items: center; color: rgba(255,255,255,0.8); transition: background 0.3s, color 0.3s, transform 0.3s; }
.olk-footer__socials a:hover { background: var(--lime); color: var(--ink); transform: translateY(-3px); }
.olk-footer__socials svg { width: 18px; height: 18px; }
.olk-newsletter { display: flex; gap: 8px; margin-top: 18px; }
.olk-newsletter input { flex: 1; padding: 13px 16px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.05); color: #fff; font-family: var(--body); font-size: 14px; }
.olk-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.olk-newsletter input:focus { outline: none; border-color: var(--lime); }
.olk-newsletter button { width: 48px; height: 48px; border-radius: 50%; border: none; background: var(--lime); color: var(--ink); cursor: pointer; display: grid; place-items: center; flex: none; transition: transform 0.3s var(--ease); }
.olk-newsletter button:hover { transform: rotate(45deg); }
.olk-newsletter button svg { width: 20px; height: 20px; }
.olk-footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 14px; }
.olk-footer__bottom a:hover { color: var(--lime); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; will-change: auto; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	.olk-marquee__track { animation: none; }
	html { scroll-behavior: auto; }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-cta { margin-top: clamp(40px, 5vw, 64px); }
.olk-lead { font-size: 19px; color: var(--muted); }

/* Scroll to top */
.olk-totop { position: fixed; right: 22px; bottom: 22px; width: 50px; height: 50px; border-radius: 50%; background: var(--pine); color: var(--lime); border: none; cursor: pointer; display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(12px); transition: all 0.35s var(--ease); z-index: 800; box-shadow: var(--shadow); }
.olk-totop.is-visible { opacity: 1; visibility: visible; transform: none; }
.olk-totop:hover { background: var(--ink); transform: translateY(-3px); }
.olk-totop svg { width: 22px; height: 22px; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
	.olk-header__actions .olk-btn { display: none; }
	.olk-topbar__left > span { display: none; }
}

@media (max-width: 1024px) {
	.container { padding: 0 20px; }
	.olk-hero__grid { grid-template-columns: 1fr; gap: 36px; }
	.olk-hero__content { max-width: 100%; padding-top: 0; }
	.olk-hero__media {
		max-width: 440px;
		width: 100%;
		margin: 0 auto;
		justify-self: center;
	}
	.olk-hero__badge {
		left: 12px;
		bottom: 14px;
		max-width: calc(100% - 24px);
	}
	.olk-hero__chip {
		right: 12px;
		top: 14px;
	}
	.olk-bento { grid-template-columns: repeat(2, 1fr); }
	.olk-bento__cell--wide,
	.olk-bento__cell--dark,
	.olk-bento__cell--feature { grid-column: span 2; }
	.olk-services,
	.olk-services--two { grid-template-columns: repeat(2, 1fr); }
	.olk-steps { grid-template-columns: repeat(2, 1fr); }
	.olk-step::before { display: none; }
	.olk-stats { grid-template-columns: repeat(2, 1fr); }
	.olk-team { grid-template-columns: repeat(2, 1fr); }
	.olk-footer__grid { grid-template-columns: 1fr 1fr; }
	.olk-works__track { grid-auto-columns: minmax(230px, 260px); }
}

@media (max-width: 860px) {
	.olk-topbar { font-size: 12px; }
	.olk-topbar__socials { display: none; }
	.olk-topbar__inner {
		justify-content: center;
		padding: 8px 0;
	}
	.olk-topbar__left {
		gap: 10px 16px;
		justify-content: center;
		width: 100%;
	}
	.olk-nav,
	.olk-header__phone { display: none !important; }
	.olk-menu-toggle { display: grid; }
	.olk-header__actions .olk-btn { display: none; }
	.site-logo__sub { display: none; }
	.site-logo__img { height: 40px; max-width: 130px; }
	.olk-about,
	.olk-split,
	.olk-mission,
	.olk-ceo,
	.olk-contact { grid-template-columns: 1fr; gap: 36px; }
	.olk-pillars { grid-template-columns: 1fr; }
	.olk-ceo__media {
		max-width: 420px;
		margin: 0 auto;
	}
	.olk-ceo__frame-accent {
		inset: 14px -14px -14px 14px;
	}
	.olk-about__media {
		max-width: 520px;
		width: 100%;
		margin: 0 auto;
	}
	.olk-about__stack {
		grid-template-columns: 1.15fr 1fr;
		gap: 14px;
	}
	.olk-about__stack .img-b { margin-top: 28px; }
	.olk-about__badge {
		padding: 16px 18px;
		bottom: -4px;
	}
	.olk-credentials { grid-template-columns: 1fr; }
	.olk-page-hero {
		padding: 48px 0 40px;
		text-align: left;
	}
	.olk-page-hero__inner {
		padding: 0 4px;
	}
	.olk-page-hero h1 {
		font-size: clamp(28px, 8vw, 40px);
		max-width: none;
		line-height: 1.2;
		letter-spacing: -0.03em;
		text-align: left;
		text-wrap: balance;
	}
	.olk-page-hero p {
		font-size: 15.5px;
		line-height: 1.55;
		margin-left: 0;
		margin-right: 0;
		max-width: none;
		text-align: left;
	}
	.olk-page-hero .olk-breadcrumb {
		justify-content: flex-start;
	}
	.olk-hero h1,
	.olk-section__header h2,
	.olk-about h2,
	.olk-ceo h2,
	.olk-cta__text h2,
	.olk-split h2 {
		text-wrap: balance;
	}
	.olk-hero p,
	.olk-section__header p,
	.olk-about__text p,
	.olk-ceo__text p,
	.olk-cta__text p,
	.olk-lead {
		text-wrap: pretty;
		overflow-wrap: break-word;
		hyphens: auto;
	}
	.olk-section__header {
		text-align: left;
	}
	.olk-section__header p {
		margin-left: 0;
		margin-right: 0;
		max-width: none;
	}
	.olk-cta { flex-direction: column; align-items: flex-start; }
	.olk-hero__label {
		font-size: 12px;
		max-width: 100%;
		white-space: normal;
		text-align: left;
		line-height: 1.35;
	}
}

@media (max-width: 620px) {
	.container { padding: 0 16px; }
	body.olk-body { font-size: 15.5px; }
	.olk-section { padding: 56px 0; }
	.olk-section--tight { padding: 40px 0; }

	.olk-topbar__inner { justify-content: center; text-align: center; }
	.olk-topbar__left {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		gap: 6px 14px;
		width: 100%;
	}
	.olk-topbar__left > span { display: none; }
	.olk-topbar__wa-full { display: none; }
	.olk-topbar__wa-short { display: inline; }
	.olk-topbar a {
		font-size: 12px;
		justify-content: center;
		word-break: break-word;
	}

	.olk-header__inner { padding: 12px 0; gap: 12px; }
	.site-logo__text { font-size: 17px; }
	.site-logo__mark { width: 38px; height: 38px; border-radius: 11px; }
	.site-logo__img { height: 36px; max-width: 118px; }

	.olk-hero { padding: 36px 0 48px; overflow: hidden; }
	.olk-hero h1 { font-size: clamp(30px, 9vw, 40px); margin-bottom: 16px; }
	.olk-hero p { font-size: 15.5px; margin-bottom: 24px; }
	.olk-hero__actions { width: 100%; }
	.olk-hero__actions .olk-btn {
		width: 100%;
		justify-content: center;
		white-space: normal;
		text-align: center;
	}
	.olk-hero__proof {
		gap: 16px 12px;
		margin-top: 28px;
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.olk-hero__proof > div {
		padding-right: 0;
		min-width: 0;
	}
	.olk-hero__proof .num { font-size: clamp(22px, 7vw, 30px); }
	.olk-hero__proof .lbl { font-size: 11.5px; line-height: 1.3; }
	.olk-hero__proof > div:not(:last-child)::after { display: none; }
	.olk-hero__media { max-width: 100%; width: 100%; }
	.olk-hero__frame {
		aspect-ratio: 4 / 5;
		border-radius: 22px;
	}
	.olk-hero__badge {
		left: 10px;
		right: 10px;
		bottom: 12px;
		max-width: none;
		width: auto;
		padding: 12px 14px;
		gap: 10px;
		border-radius: 14px;
	}
	.olk-hero__badge .ico {
		width: 38px;
		height: 38px;
		border-radius: 10px;
	}
	.olk-hero__badge .ico svg { width: 18px; height: 18px; }
	.olk-hero__badge b { font-size: 14px; }
	.olk-hero__badge > span:last-child > span { font-size: 12px; }
	.olk-hero__chip {
		right: 10px;
		top: 10px;
		font-size: 12px;
		padding: 8px 12px;
	}
	.olk-hero__rating {
		flex-wrap: nowrap;
		align-items: center;
		gap: 10px;
	}
	.olk-hero__avatars img {
		width: 34px;
		height: 34px;
		margin-left: -10px;
	}
	.olk-hero__rating small { font-size: 12px; }
	.olk-stars svg { width: 14px; height: 14px; }

	.olk-about__media {
		padding-bottom: 0;
		max-width: 100%;
	}
	.olk-about__stack {
		grid-template-columns: 1fr 0.9fr;
		gap: 10px;
	}
	.olk-about__stack .img-b { margin-top: 20px; }
	.olk-about__media img { border-radius: 18px; }
	.olk-about__badge {
		position: absolute;
		left: 50%;
		bottom: 10px;
		transform: translateX(-50%);
		padding: 12px 14px;
		border-radius: 16px;
		max-width: min(200px, calc(100% - 20px));
		z-index: 3;
	}
	.olk-about__badge b { font-size: 26px; }
	.olk-about__badge span { font-size: 11.5px; }
	.olk-about__pills { gap: 8px; }
	.olk-about__pills span { font-size: 11.5px; padding: 7px 12px; }
	.olk-about h2 { font-size: clamp(26px, 7vw, 34px); }

	.olk-bento,
	.olk-services,
	.olk-services--two,
	.olk-steps,
	.olk-team { grid-template-columns: 1fr !important; }
	.olk-bento__cell--wide,
	.olk-bento__cell--dark,
	.olk-bento__cell--feature { grid-column: auto; }
	.olk-bento__cell { padding: 24px 20px; }
	.olk-form-row { grid-template-columns: 1fr; }
	.olk-footer__grid { grid-template-columns: 1fr; gap: 28px; }

	.olk-service { min-height: 360px; }
	.olk-works__head {
		flex-direction: column;
		align-items: flex-start;
	}
	.olk-works__track {
		grid-auto-columns: minmax(78vw, 280px);
		gap: 14px;
	}
	.olk-work-card,
	.olk-work-card img { min-height: 280px; }

	.olk-btn {
		padding: 14px 22px;
		min-height: 46px;
		white-space: normal;
	}
	.olk-cta {
		text-align: center;
		align-items: center;
		padding: 32px 22px;
	}
	.olk-cta__actions {
		width: 100%;
		justify-content: center;
	}
	.olk-cta__actions .olk-btn { width: 100%; }

	.olk-testi__card { padding: 28px 20px; }
	.olk-testi__quote { display: none; }
	.olk-testi__text { font-size: 18px; }
	.olk-faq {
		max-width: 100%;
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.olk-faq__q { font-size: 16px; padding: 18px 16px; gap: 12px; }
	.olk-faq__a p { padding: 0 16px 18px; }

	.olk-contact__form,
	.olk-contact__panel { padding: 24px 18px; }
	.olk-credential { flex-direction: column; padding: 24px 18px; }

	.olk-lead { font-size: 16px; }
	.olk-totop { right: 14px; bottom: 14px; width: 44px; height: 44px; }
	.olk-marquee { padding: 18px 0; }
	.olk-marquee__item { font-size: 15px; gap: 10px; }
	.olk-section__header {
		margin-bottom: 36px;
		padding: 0 4px;
	}
	.olk-section__header h2 { font-size: clamp(26px, 7vw, 34px); }
	.olk-section__header p { font-size: 15.5px; }
	.olk-feature-list__item { gap: 14px; }
	.olk-feature-list__item:hover { transform: none; }
	.olk-stats {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}
	.olk-stat b { font-size: clamp(28px, 8vw, 40px); }
	.olk-stat { padding: 22px 14px; }
	.olk-stat span { font-size: 13px; }
}

@media (max-width: 400px) {
	.container { padding: 0 14px; }
	.olk-hero h1 { font-size: 28px; }
	.olk-hero__proof {
		grid-template-columns: 1fr 1fr;
	}
	.olk-hero__proof > div:last-child {
		grid-column: 1 / -1;
	}
	.olk-hero__badge {
		flex-direction: row;
		align-items: flex-start;
	}
	.olk-about__stack {
		grid-template-columns: 1fr 0.85fr;
		gap: 8px;
	}
	.olk-about__stack .img-b { margin-top: 16px; }
	.olk-about__badge {
		position: absolute;
		left: 50%;
		bottom: 8px;
		transform: translateX(-50%);
		padding: 10px 12px;
		max-width: min(170px, calc(100% - 16px));
		margin: 0;
		width: auto;
	}
	.olk-about__badge b { font-size: 22px; }
	.olk-about__badge span { font-size: 10.5px; }
	.olk-stats { gap: 10px; }
	.olk-stat { padding: 18px 10px; }
	.olk-stat span { font-size: 12px; }
	.olk-works__track { grid-auto-columns: 86vw; }
	.site-logo__text { font-size: 15px; }
	.site-logo__img { height: 32px; max-width: 108px; }
	.olk-topbar a { font-size: 11.5px; }
}
