/* Prime Numeris — main.css
   Premium kurumsal CFO danışmanlık teması. */

:root {
	--navy: #0B1F5B;
	--blue: #005BFF;
	--blue-light: #1D72F3;
	--white: #FFFFFF;
	--gray: #F6F9FC;
	--gray-line: #E6ECF3;
	--text: #0F172A;
	--text-muted: #5A6B85;
	--radius: 14px;
	--radius-sm: 10px;
	--container: 1200px;
	--font-head: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--shadow-sm: 0 1px 2px rgba(11, 31, 91, 0.04), 0 4px 16px rgba(11, 31, 91, 0.05);
	--shadow-md: 0 10px 40px rgba(11, 31, 91, 0.08);
	--header-h: 76px;
	--ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	color: var(--text);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); margin: 0; line-height: 1.18; letter-spacing: -0.02em; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.section { padding-block: clamp(56px, 7vw, 104px); }
.text-blue { color: var(--blue); }

.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; left: 16px; top: 16px;
	width: auto; height: auto; clip: auto;
	z-index: 9999; background: var(--navy); color: #fff;
	padding: 10px 18px; border-radius: 8px;
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 13px 22px;
	font-family: var(--font-body);
	font-size: 0.94rem; font-weight: 600;
	border-radius: var(--radius-sm);
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn__arrow { transition: transform 0.2s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--navy); }
.btn--outline { background: #fff; color: var(--navy); border-color: var(--gray-line); }
.btn--outline:hover { border-color: var(--blue); color: var(--blue); }
.btn--block { width: 100%; justify-content: center; }

.eyebrow {
	font-family: var(--font-body);
	font-size: 0.74rem; font-weight: 700;
	letter-spacing: 0.16em; text-transform: uppercase;
	color: var(--blue); margin: 0 0 14px;
}

.section-title { font-size: clamp(1.6rem, 2.6vw, 2.25rem); font-weight: 700; max-width: 22ch; text-wrap: balance; }
.section-head {
	display: flex; align-items: flex-end; justify-content: space-between;
	gap: 24px; margin-bottom: clamp(32px, 4vw, 52px); flex-wrap: wrap;
}
.section-head--stack { display: block; }
.section-link {
	font-size: 0.9rem; font-weight: 600; color: var(--blue);
	white-space: nowrap; display: inline-flex; gap: 6px; align-items: center;
}
.section-link:hover { color: var(--navy); }

/* ---------- Header ---------- */
.site-header {
	position: sticky; top: 0; z-index: 1000;
	background: #fff;
	border-bottom: 1px solid transparent;
	transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.site-header.is-scrolled {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: saturate(180%) blur(12px);
	box-shadow: 0 1px 0 rgba(11, 31, 91, 0.06), 0 8px 30px rgba(11, 31, 91, 0.06);
	border-bottom-color: var(--gray-line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: var(--header-h); }
.site-header__actions { display: flex; align-items: center; gap: 14px; }
.site-header__actions .btn { padding: 9px 16px; font-size: 0.82rem; gap: 6px; }
.site-header__actions .btn__arrow { font-size: 0.95em; }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark { display: inline-flex; }
.brand__name { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: var(--navy); letter-spacing: -0.02em; }
.brand--light .brand__name { color: #fff; }
.brand .custom-logo { max-height: 40px; width: auto; }

.site-nav .nav-menu { list-style: none; display: flex; gap: 30px; margin: 0; padding: 0; }
.site-nav .nav-menu > li { position: relative; }
.site-nav .nav-menu a { font-size: 0.92rem; font-weight: 500; color: var(--text); transition: color 0.18s; display: inline-flex; align-items: center; gap: 5px; }
.site-nav .nav-menu a:hover, .site-nav .current-menu-item > a, .site-nav .current-menu-ancestor > a { color: var(--blue); }

/* Header dropdown (açılır menü) */
.site-nav .menu-item-has-children > a::after {
	content: ""; width: 7px; height: 7px; margin-left: 2px;
	border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor;
	transform: translateY(-2px) rotate(45deg); transition: transform 0.2s var(--ease);
}
.site-nav .menu-item-has-children:hover > a::after,
.site-nav .menu-item-has-children:focus-within > a::after { transform: translateY(1px) rotate(225deg); }
.site-nav .sub-menu {
	list-style: none; margin: 0; padding: 8px; position: absolute; top: 100%; left: -12px;
	min-width: 248px; background: #fff; border: 1px solid var(--gray-line);
	border-radius: 14px; box-shadow: var(--shadow-md); display: flex; flex-direction: column; gap: 2px;
	opacity: 0; visibility: hidden; transform: translateY(8px); z-index: 1001;
	transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s;
}
.site-nav .menu-item-has-children:hover > .sub-menu,
.site-nav .menu-item-has-children:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.site-nav .sub-menu li { position: relative; }
.site-nav .sub-menu a { padding: 10px 12px; border-radius: 9px; font-size: 0.9rem; font-weight: 500; color: var(--text); white-space: nowrap; }
.site-nav .sub-menu a:hover { background: var(--gray); color: var(--blue); }
/* Nested (3rd level) */
.site-nav .sub-menu .sub-menu { top: -8px; left: 100%; }

.nav-toggle {
	display: none; flex-direction: column; justify-content: center; gap: 5px;
	width: 44px; height: 44px; padding: 0; border: 0; background: transparent; cursor: pointer;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.25s var(--ease), opacity 0.2s; }
.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); }

.mobile-nav { border-top: 1px solid var(--gray-line); background: #fff; padding: 16px 20px 24px; max-height: calc(100vh - var(--header-h)); overflow-y: auto; }
.mobile-nav__menu { list-style: none; margin: 0 0 16px; padding: 0; }
.mobile-nav__menu > li { border-bottom: 1px solid var(--gray-line); }
.mobile-nav__menu a { display: block; padding: 14px 4px; font-size: 1.02rem; font-weight: 600; color: var(--navy); }
.mobile-nav__menu .menu-item-has-children { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; }
.mobile-nav__menu .menu-item-has-children > a { flex: 1; }
.submenu-toggle {
	width: 40px; height: 48px; border: 0; background: transparent; cursor: pointer; color: var(--navy);
	display: inline-flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.submenu-toggle::after {
	content: ""; width: 9px; height: 9px;
	border-right: 1.8px solid currentColor; border-bottom: 1.8px solid currentColor;
	transform: rotate(45deg) translateY(-2px); transition: transform 0.2s var(--ease);
}
.submenu-toggle[aria-expanded="true"]::after { transform: rotate(225deg) translateY(-2px); }
.mobile-nav__menu .sub-menu { list-style: none; margin: 0; padding: 0 0 10px 14px; width: 100%; display: none; }
.mobile-nav__menu .menu-item-has-children.is-open > .sub-menu { display: block; }
.mobile-nav__menu .sub-menu li { border: 0; }
.mobile-nav__menu .sub-menu a { padding: 11px 4px; font-size: 0.96rem; font-weight: 500; color: var(--text-muted); }

/* ---------- Hero ---------- */
.hero { background: var(--white); overflow: hidden; }
.hero__inner {
	display: grid; grid-template-columns: 1fr; align-items: start;
	padding-block: clamp(48px, 7vw, 96px);
}
.hero__title { font-size: clamp(2.1rem, 4.4vw, 3.4rem); font-weight: 800; margin-bottom: 22px; line-height: 1.12; }
.hero__lead { font-size: 1.06rem; color: var(--text-muted); max-width: 52ch; margin: 0 0 30px; line-height: 1.7; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Trust strip ---------- */
.trust { border-block: 1px solid var(--gray-line); background: #fff; }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.trust__item { display: flex; gap: 14px; align-items: flex-start; padding: 30px 28px; }
.trust__item + .trust__item { border-left: 1px solid var(--gray-line); }
.trust__icon { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.trust__title { font-size: 0.98rem; font-weight: 700; margin-bottom: 4px; }
.trust__text { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.55; }

/* ---------- Services (kaydırılabilir şerit) ---------- */
.services { background: var(--gray); }
.services__head-actions { display: flex; align-items: center; gap: 18px; }
.strip-nav { display: flex; gap: 8px; }
.strip-nav__btn {
	width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--gray-line);
	background: #fff; color: var(--navy); cursor: pointer; font-size: 1.05rem; line-height: 1;
	display: inline-flex; align-items: center; justify-content: center;
	transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), opacity 0.2s;
}
.strip-nav__btn:hover:not(:disabled):not(.is-disabled) { background: var(--blue); color: #fff; border-color: var(--blue); }
.strip-nav__btn:disabled,
.strip-nav__btn.is-disabled,
.strip-nav__btn:disabled:hover,
.strip-nav__btn.is-disabled:hover,
.strip-nav__btn:disabled:focus,
.strip-nav__btn.is-disabled:focus,
.strip-nav__btn:disabled:focus-visible,
.strip-nav__btn.is-disabled:focus-visible,
.strip-nav__btn:disabled:active,
.strip-nav__btn.is-disabled:active {
	opacity: 0.35;
	cursor: default;
	pointer-events: none;
	background: #fff !important;
	color: var(--navy) !important;
	border-color: var(--gray-line) !important;
	box-shadow: none;
}

.services__strip {
	display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
	scroll-behavior: smooth; padding: 4px 4px 20px; margin: 0 -4px;
	align-items: stretch;
	scrollbar-width: none; -ms-overflow-style: none;
}
.services__strip::-webkit-scrollbar { display: none; }
.services__strip .svc-card { flex: 0 0 calc((100% - 48px) / 3); scroll-snap-align: start; min-width: 280px; }

/* ---------- Insights ---------- */
.insights { background: var(--white); }
.insights__head-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.insights__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.insights__strip {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-ms-overflow-style: none;
	scrollbar-width: none;
	padding-bottom: 4px;
}
.insights__strip::-webkit-scrollbar { display: none; }
.insights__strip .insight-card { flex: 0 0 calc((100% - 48px) / 3); scroll-snap-align: start; }
.insight-card {
	background: #fff;
	border: 1px solid #E8ECF3;
	border-radius: 16px;
	box-shadow: 0 2px 10px rgba(11, 31, 91, 0.04);
	height: 100%;
}
.insight-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 100%;
	padding: clamp(28px, 3vw, 36px);
	color: inherit;
	text-decoration: none;
}
.insight-card__title {
	font-size: clamp(1.12rem, 1.35vw, 1.32rem);
	font-weight: 700;
	line-height: 1.38;
	color: #0F2B6E;
	margin: 0 0 16px;
	text-wrap: balance;
}
.insight-card__link:hover .insight-card__title { color: var(--blue); }
.insight-card__excerpt {
	flex: 1;
	font-size: 0.92rem;
	line-height: 1.65;
	color: var(--text-muted);
	margin: 0 0 28px;
}
.insight-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: auto;
}
.insight-card__meta {
	margin: 0;
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--text-muted);
}
.insight-card__meta-sep { margin: 0 6px; color: #C5CDD9; }
.insight-card__arrow {
	flex-shrink: 0;
	font-size: 1.35rem;
	line-height: 1;
	color: #0F2B6E;
	transition: transform 0.25s var(--ease);
}
.insight-card:hover .insight-card__arrow { transform: translateX(5px); }

/* Blog listesi (3 sütun + dikey boşluk) */
.insights__grid--blog { grid-template-columns: repeat(3, 1fr); padding-block: clamp(44px, 5vw, 76px); }

/* ---------- Approach timeline ---------- */
.approach { background: var(--gray); }
.approach__timeline { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; }
.approach__step { position: relative; padding-top: 44px; }
.approach__step:not(:last-child)::after {
	content: ""; position: absolute; top: 16px; left: 88px; right: -16px; height: 2px;
	background: var(--gray-line);
}
.approach__num { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--blue); position: absolute; top: -6px; left: 0; }
.approach__dot { position: absolute; top: 10px; left: 64px; width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 3px solid var(--blue); }
.approach__step-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.approach__step-text { font-size: 0.88rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ---------- About ---------- */
.about { background: var(--white); }
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.about__media img { width: 100%; height: clamp(320px, 38vw, 480px); object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.about__text { font-size: 1.02rem; color: var(--text-muted); margin: 18px 0 28px; max-width: 52ch; }
.about__values { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: nowrap; gap: 14px 22px; }
.about__values li { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.94rem; color: var(--navy); white-space: nowrap; }
@media (max-width: 720px) { .about__values { flex-wrap: wrap; } }
.about__value-icon { color: var(--blue); display: inline-flex; }
.about__head { text-align: center; max-width: 760px; margin: 0 auto clamp(36px, 4.5vw, 56px); }
.about__head .section-title { max-width: none; margin-inline: auto; }
.about__lead { font-size: 1.02rem; color: var(--text-muted); line-height: 1.75; margin: 18px 0 0; }
.about__action { margin-top: 28px; display: flex; justify-content: center; }
.btn--with-icon { gap: 10px; }
.btn__icon { display: inline-flex; align-items: center; justify-content: center; line-height: 0; }
.about__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { background: var(--white); border: 1px solid var(--gray-line); border-radius: var(--radius); padding: clamp(24px, 2.2vw, 32px); display: flex; flex-direction: column; }
.value-card__icon { color: var(--blue); display: inline-flex; margin-bottom: 26px; }
.value-card__title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin: 0 0 14px; }
.value-card__text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ---------- Referanslar ---------- */
.references { background: var(--gray); }
.references__head { position: relative; justify-content: center; align-items: center; min-height: 42px; }
.references__head .eyebrow { margin-bottom: 0; text-align: center; }
.references__head-actions { position: absolute; right: 0; top: 0; bottom: 0; display: flex; align-items: center; }

/* Tek satır (6 ve daha az): ortalı, kaydırma yok. */
.references__grid {
	display: flex; flex-wrap: wrap; justify-content: center; gap: 20px;
	margin-inline: auto;
	max-width: calc(var(--pn-ref-per-row, 6) * 180px + (var(--pn-ref-per-row, 6) - 1) * 20px);
}

/* 6'dan fazla: yana kaydırılabilir şerit (bir ekranda 6 tane). */
.references__strip {
	display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
	scroll-behavior: smooth; padding: 4px 4px 8px; margin: 0 -4px;
	scrollbar-width: none; -ms-overflow-style: none;
}
.references__strip::-webkit-scrollbar { display: none; }
.references__strip .reference-item { flex: 0 0 calc((100% - 5 * 20px) / 6); scroll-snap-align: start; }

.reference-item {
	flex: 0 1 180px;
	min-width: 130px;
	display: flex; align-items: center; justify-content: center;
	background: var(--white); border: 1px solid var(--gray-line); border-radius: var(--radius-sm);
	padding: 22px 18px; min-height: 96px;
	transition: box-shadow 0.22s var(--ease), transform 0.22s var(--ease), border-color 0.22s var(--ease);
}
.reference-item__logo {
	max-height: 52px; width: auto; max-width: 100%; object-fit: contain;
	filter: grayscale(1); opacity: 0.7;
	transition: filter 0.22s var(--ease), opacity 0.22s var(--ease);
}
a.reference-item:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); border-color: #cdddff; }
a.reference-item:hover .reference-item__logo { filter: grayscale(0); opacity: 1; }

/* ---------- CTA + Form ---------- */
.cta { background: var(--navy); color: #fff; }
.cta__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; padding-block: clamp(48px, 6vw, 88px); }
.cta__title { color: #fff; font-size: clamp(1.6rem, 2.8vw, 2.3rem); font-weight: 800; max-width: 16ch; }
.cta__list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 14px; }
.cta__list li { display: flex; align-items: center; gap: 12px; font-size: 1rem; color: rgba(255, 255, 255, 0.92); }
.cta__icon { color: var(--blue-light); display: inline-flex; }
.cta__contact { list-style: none; margin: 26px 0 0; padding: 26px 0 0; display: grid; gap: 14px; border-top: 1px solid rgba(255, 255, 255, 0.16); }
.cta__contact li { display: flex; align-items: center; gap: 12px; font-size: 0.98rem; color: rgba(255, 255, 255, 0.9); }
.cta__contact-icon { flex-shrink: 0; color: var(--blue-light); display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 10px; background: rgba(255, 255, 255, 0.08); }
.cta__contact a { color: rgba(255, 255, 255, 0.9); transition: color 0.18s; }
.cta__contact a:hover { color: #fff; }
.cta__form-wrap { background: #fff; border-radius: var(--radius); padding: clamp(22px, 3vw, 34px); box-shadow: var(--shadow-md); }
.cta__form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: 0.8rem; font-weight: 600; color: var(--text); }
.form-field input, .form-field textarea {
	font-family: var(--font-body); font-size: 0.94rem; color: var(--text);
	padding: 12px 14px; border: 1.5px solid var(--gray-line); border-radius: var(--radius-sm);
	background: var(--gray); transition: border-color 0.18s, background 0.18s;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--blue); background: #fff; }
.form-field textarea { resize: vertical; min-height: 96px; }
.cta__form .btn { grid-column: 1 / -1; }
.form-alert { border-radius: var(--radius-sm); padding: 14px 16px; margin: 0 0 18px; font-size: 0.9rem; font-weight: 500; }
.form-alert--success { background: #e7f6ec; color: #1c7a3f; }
.form-alert--error { background: #fdeaea; color: #b4232a; }

/* ---------- Footer (light) ---------- */
.site-footer { background: var(--white); color: var(--text-muted); border-top: 1px solid var(--gray-line); }
.site-footer__grid {
	display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 32px;
	align-items: start;
	padding-block: clamp(48px, 6vw, 72px);
}
.site-footer__col:not(.site-footer__brand) { display: flex; flex-direction: column; }
.site-footer__col > nav { display: contents; }
.site-footer__title {
	font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
	color: var(--navy); margin: 0 0 18px; line-height: 1.35; flex-shrink: 0;
}
.site-footer__col .footer-menu,
.site-footer__col .site-footer__contact {
	list-style: none; margin: 0; padding: 0;
	display: flex; flex-direction: column; gap: 11px;
}
.site-footer__col .footer-menu > li,
.site-footer__col .site-footer__contact > li {
	margin: 0; padding: 0;
	font-size: 0.9rem; line-height: 1.45; color: var(--text-muted);
}
.site-footer__col .footer-menu a,
.site-footer__col .site-footer__contact a {
	font-size: inherit; line-height: inherit; color: var(--text-muted); transition: color 0.18s;
}
.site-footer__col a:hover { color: var(--blue); }
.site-footer__about { font-size: 0.9rem; line-height: 1.7; margin: 16px 0 18px; max-width: 34ch; }
.site-footer__brand .site-footer__social { list-style: none; display: flex; flex-flow: row wrap; gap: 10px; margin: 0; padding: 0; }
.site-footer__social a {
	width: 40px; height: 40px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center;
	background: var(--gray); color: var(--navy); border: 1px solid var(--gray-line); transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.site-footer__social a:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.site-footer__bottom { border-top: 1px solid var(--gray-line); }
.site-footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 22px; flex-wrap: wrap; }
.site-footer__bottom-inner p { margin: 0; font-size: 0.84rem; color: var(--text-muted); }
.site-footer__legal { list-style: none; display: flex; gap: 22px; margin: 0; padding: 0; }
.site-footer__legal a { font-size: 0.84rem; color: var(--text-muted); }
.site-footer__legal a:hover { color: var(--blue); }

/* ---------- Inner pages (page/single/archive/404) ---------- */
.page-hero { background: var(--gray); border-bottom: 1px solid var(--gray-line); padding-block: clamp(48px, 6vw, 84px); }
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.entry { padding-block: clamp(40px, 5vw, 72px); }
.entry__content { max-width: 760px; margin-inline: auto; font-size: 1.05rem; line-height: 1.8; }
.entry__content > * + * { margin-top: 1.1em; }
.entry__content h2 { margin-top: 1.6em; font-size: 1.5rem; }
.entry__content h3 { margin-top: 1.4em; font-size: 1.2rem; }
.entry__content img { border-radius: var(--radius); }
.entry__content a { color: var(--blue); text-decoration: underline; }
.entry__meta { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 10px; }
.entry__thumb { margin: 0 0 28px; border-radius: var(--radius); overflow: hidden; max-width: 900px; }

.archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-block: clamp(40px, 5vw, 72px); }
.services-archive { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; padding-block: clamp(40px, 5vw, 72px); }
.services-archive .service-card { flex: none; }
.entry__back { margin-top: 36px; }
.services-empty { text-align: center; padding-block: clamp(48px, 8vw, 96px); max-width: 620px; margin: 0 auto; }
.services-empty h2 { font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--navy); margin: 0 0 12px; }
.services-empty p { color: var(--text-muted); margin: 0 0 18px; }
.services-empty__admin { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.services-empty__hint { font-size: 0.82rem; color: var(--text-muted); }

/* ---------- Hizmetler (arşiv) — kurumsal ---------- */
.svc-hero { text-align: center; background: linear-gradient(180deg, #fff 0%, var(--gray) 100%); border-bottom: 1px solid var(--gray-line); padding-block: clamp(54px, 7vw, 96px); }
.svc-hero .eyebrow { margin-bottom: 14px; }
.svc-hero__title { font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; color: var(--navy); margin: 0 auto; max-width: 22ch; text-wrap: balance; }
.svc-hero__lead { color: var(--text-muted); font-size: 1.08rem; line-height: 1.7; max-width: 60ch; margin: 18px auto 0; text-wrap: balance; }
.svc-hero--image { position: relative; background-size: cover; background-position: center; background-repeat: no-repeat; border-bottom: 0; }
.svc-hero--image::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11, 31, 91, 0.82) 0%, rgba(11, 31, 91, 0.9) 100%); }
.svc-hero--image .container { position: relative; z-index: 1; }
.svc-hero--image .eyebrow { color: var(--blue-light); }
.svc-hero--image .svc-hero__title { color: #fff; }
.svc-hero--image .svc-hero__lead { color: rgba(255, 255, 255, 0.86); }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-block: clamp(44px, 5vw, 76px); align-items: stretch; }
.svc-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #E8ECF3;
	border-radius: 16px;
	padding: clamp(28px, 3vw, 36px);
	min-height: 100%;
	box-shadow: 0 2px 10px rgba(11, 31, 91, 0.04);
}
.svc-card__link { position: absolute; inset: 0; z-index: 2; }
.svc-card__num {
	font-size: clamp(2rem, 2.8vw, 2.6rem);
	font-weight: 700;
	line-height: 1;
	color: #C5CDD9;
	letter-spacing: -0.02em;
	margin-bottom: 14px;
}
.svc-card__line {
	display: block;
	width: 42px;
	height: 3px;
	border-radius: 999px;
	background: #0F2B6E;
	margin-bottom: 22px;
}
.svc-card__title {
	font-size: clamp(1.08rem, 1.25vw, 1.2rem);
	font-weight: 700;
	color: #0F2B6E;
	line-height: 1.35;
	margin: 0 0 14px;
	text-wrap: balance;
}
.svc-card__text {
	flex: 1;
	font-size: 0.92rem;
	color: var(--text-muted);
	line-height: 1.65;
	margin: 0;
}
.svc-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 28px;
}
.svc-card__more { font-size: 0.9rem; font-weight: 600; color: #0F2B6E; }
.svc-card__arrow {
	font-size: 1.25rem;
	line-height: 1;
	color: #0F2B6E;
	transition: transform 0.25s var(--ease);
}
.svc-card:hover .svc-card__arrow { transform: translateX(5px); }

/* ---------- Ortaklar sayfası ---------- */
.partners-page { padding-block: clamp(44px, 5vw, 72px) clamp(56px, 6vw, 88px); }
.partners-page__title { font-size: clamp(1.35rem, 2vw, 1.65rem); font-weight: 700; color: var(--navy); margin: 0 0 clamp(28px, 3vw, 40px); }
.partners-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: clamp(40px, 5vw, 64px); }
.partner-card {
	display: grid;
	grid-template-columns: 132px minmax(0, 1fr);
	gap: clamp(20px, 2.5vw, 28px);
	align-items: start;
	background: #fff;
	border: 1px solid #E8ECF3;
	border-radius: 16px;
	padding: clamp(22px, 2.5vw, 28px);
	box-shadow: 0 2px 10px rgba(11, 31, 91, 0.04);
}
.partner-card__photo img { width: 100%; height: clamp(150px, 18vw, 168px); object-fit: cover; border-radius: 12px; display: block; }
.partner-card__name { font-size: clamp(1.08rem, 1.4vw, 1.22rem); font-weight: 700; color: #0F2B6E; margin: 0 0 6px; line-height: 1.3; }
.partner-card__role { font-size: 0.92rem; font-weight: 600; color: var(--blue); margin: 0 0 14px; line-height: 1.4; }
.partner-card__bio { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; margin: 0 0 18px; }
.partner-card__linkedin {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.88rem;
	font-weight: 600;
	color: #0F2B6E;
	transition: color 0.18s var(--ease);
}
.partner-card__linkedin:hover { color: var(--blue); }
.partner-card__linkedin-icon { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 4px; background: var(--blue); color: #fff; line-height: 0; }
.partner-card__linkedin-icon svg { width: 14px; height: 14px; fill: currentColor; stroke: none; }
.partner-card__linkedin-arrow { font-size: 0.95rem; line-height: 1; color: var(--text-muted); }
.partners-cta {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: clamp(18px, 3vw, 32px);
	background: #EEF3FF;
	border: 1px solid #D6E4FF;
	border-radius: 16px;
	padding: clamp(24px, 3vw, 32px) clamp(24px, 3.5vw, 40px);
}
.partners-cta__icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 14px; background: rgba(0, 91, 255, 0.12); color: var(--blue); flex-shrink: 0; }
.partners-cta__title { font-size: clamp(1.02rem, 1.3vw, 1.15rem); font-weight: 700; color: #0F2B6E; margin: 0 0 6px; line-height: 1.4; }
.partners-cta__lead { font-size: 0.92rem; color: var(--text-muted); margin: 0; line-height: 1.55; }
.partners-cta__btn { flex-shrink: 0; white-space: nowrap; }

.pagination { padding-bottom: clamp(32px, 4vw, 56px); }
.pagination ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 0; padding: 0; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 10px; border-radius: 10px; border: 1px solid var(--gray-line); color: var(--navy); font-weight: 600; font-size: 0.9rem; }
.pagination a:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.pagination .current { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ---------- Landing pages (Hizmet + Landing template) ---------- */
.landing-hero { padding-block: clamp(48px, 7vw, 100px); background: linear-gradient(180deg, #fff 0%, var(--gray) 100%); border-bottom: 1px solid var(--gray-line); }
.landing-hero__inner { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.landing-hero--text .landing-hero__inner { grid-template-columns: 1fr; align-items: start; }
.landing-hero .eyebrow { margin-bottom: 14px; }
.landing-hero__title { font-weight: 800; font-size: clamp(2rem, 4.4vw, 3.2rem); line-height: 1.08; margin: 0 0 16px; }
.landing-hero__lead { color: var(--text-muted); font-size: 1.1rem; line-height: 1.7; max-width: 52ch; margin: 0 0 28px; }
.landing-hero__media img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow-md); display: block; }

.landing-body { padding-block: clamp(40px, 5vw, 72px); }
.landing-body__inner { max-width: 820px; }

.landing-benefits { padding-block: clamp(48px, 6vw, 84px); background: var(--gray); border-block: 1px solid var(--gray-line); }
.landing-benefits__title { margin-bottom: clamp(28px, 4vw, 44px); }
.landing-benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-card { background: #fff; border: 1px solid var(--gray-line); border-radius: var(--radius); padding: 26px 24px; }
.benefit-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 12px; background: rgba(0, 91, 255, 0.08); color: var(--blue); margin-bottom: 16px; }
.benefit-card__title { font-size: 1.06rem; font-weight: 700; color: var(--navy); margin: 0 0 8px; line-height: 1.3; }
.benefit-card__text { font-size: 0.92rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

.cta { scroll-margin-top: calc(var(--header-h) + 12px); }

/* Landing — ortak bölüm başlığı (sola yaslı) */
.lp-section-head { margin-bottom: clamp(32px, 4vw, 48px); }
.lp-section-head .eyebrow { margin-bottom: 12px; }
.lp-section-head .lp-section-title { margin-bottom: 0; }
.lp-section-title,
.landing-benefits__title { max-width: 32ch; margin-inline: 0; text-align: left; text-wrap: balance; }
.lp-section-title { margin-bottom: clamp(28px, 4vw, 44px); }

/* Landing — SSS başlığı ortalı kalır */
.lp-faq .lp-section-title { margin-inline: auto; text-align: center; }

/* Landing — Sorunlar & Özellikler (mockup sütun düzeni) */
.lp-problems { padding-block: clamp(48px, 6vw, 84px); background: var(--white); }
.lp-features { padding-block: clamp(48px, 6vw, 84px); background: var(--white); border-top: 1px solid var(--gray-line); }
.lp-problems__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(32px, 3vw, 44px) 0; align-items: start; }
.lp-features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(32px, 3vw, 44px) 0; align-items: start; }
.lp-pillar { padding: 0 clamp(18px, 2.2vw, 28px); border-left: 1px solid #E8ECF3; }
.lp-problems__grid .lp-pillar:nth-child(4n + 1) { border-left: 0; padding-left: 0; }
.lp-problems__grid .lp-pillar:nth-child(4n) { padding-right: 0; }
.lp-features__grid .lp-pillar:nth-child(3n + 1) { border-left: 0; padding-left: 0; }
.lp-features__grid .lp-pillar:nth-child(3n) { padding-right: 0; }
.lp-pillar__icon { display: inline-flex; align-items: center; justify-content: center; color: var(--blue); margin-bottom: 18px; }
.lp-pillar__icon svg { width: 28px; height: 28px; stroke-width: 1.5; }
.lp-pillar__title { font-size: 1rem; font-weight: 700; color: #0F2B6E; line-height: 1.4; margin: 0 0 12px; text-wrap: balance; }
.lp-pillar__text { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* Landing — SSS akordeon */
.lp-faq { background: var(--gray); border-block: 1px solid var(--gray-line); padding-block: clamp(48px, 6vw, 84px); }
.lp-faq__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 28px; max-width: 980px; margin-inline: auto; }
.lp-faq__item { background: #fff; border: 1px solid var(--gray-line); border-radius: var(--radius); padding: 4px 20px; height: fit-content; }
.lp-faq__q { display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; list-style: none; padding: 16px 0; font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1rem; }
.lp-faq__q::-webkit-details-marker { display: none; }
.lp-faq__icon { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: rgba(0, 91, 255, 0.08); color: var(--blue); display: inline-flex; align-items: center; justify-content: center; font-size: 1.1rem; line-height: 1; transition: transform 0.2s var(--ease); }
.lp-faq__item[open] .lp-faq__icon { transform: rotate(45deg); }
.lp-faq__a { padding: 0 0 18px; color: var(--text-muted); font-size: 0.94rem; line-height: 1.7; }
.lp-faq__a p { margin: 0; }
.pagination { display: flex; gap: 8px; justify-content: center; padding-bottom: 64px; flex-wrap: wrap; }
.pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 12px;
	border: 1px solid var(--gray-line); border-radius: var(--radius-sm); font-weight: 600; color: var(--navy);
}
.pagination .page-numbers.current { background: var(--blue); color: #fff; border-color: var(--blue); }

.error-404 { text-align: center; padding-block: clamp(64px, 9vw, 140px); }
.error-404 .code { font-family: var(--font-head); font-size: clamp(4rem, 12vw, 8rem); font-weight: 800; color: var(--blue); line-height: 1; }
.error-404 p { color: var(--text-muted); margin: 12px 0 28px; }

/* ---------- Blog sayfası (içerik + kenar çubuğu) ---------- */
.blog-hero { background: linear-gradient(180deg, #fff 0%, var(--gray) 100%); border-bottom: 1px solid var(--gray-line); overflow: hidden; }
.blog-hero--text { background: var(--white); }
.blog-hero__inner { display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: clamp(24px, 4vw, 60px); padding-block: clamp(40px, 5.5vw, 76px); }
.blog-hero--text .blog-hero__inner { grid-template-columns: 1fr; align-items: start; padding-block: clamp(48px, 7vw, 96px); }
.blog-hero .eyebrow { margin-bottom: 14px; }
.blog-hero__title { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 800; margin-bottom: 18px; max-width: 14ch; text-wrap: balance; line-height: 1.12; }
.blog-hero--text .blog-hero__title { font-size: clamp(2.1rem, 4.4vw, 3.4rem); max-width: 20ch; }
.blog-hero__lead { font-size: 1.05rem; color: var(--text-muted); max-width: 52ch; margin: 0; line-height: 1.7; }
.blog-hero__media img { width: 100%; height: clamp(280px, 32vw, 420px); object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }

.blog-section { background: var(--white); }
.blog-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(28px, 4vw, 52px); align-items: start; }
.blog-main .insights__grid--blog { grid-template-columns: repeat(3, 1fr); padding-block: 0; margin-bottom: clamp(36px, 4vw, 56px); }
.blog-main .pagination { padding-bottom: 0; justify-content: flex-start; }

/* Kenar çubuğu */
.blog-sidebar { display: grid; gap: 22px; position: sticky; top: calc(var(--header-h) + 16px); }
.blog-widget { background: #fff; border: 1px solid var(--gray-line); border-radius: var(--radius); padding: 22px 22px; }
.blog-widget__title { font-size: 1.08rem; font-weight: 700; margin: 0 0 16px; }

/* Arama kutusu */
.blog-widget--search { padding: 0; border: 0; background: transparent; }
.blog-search { display: flex; align-items: center; gap: 8px; background: #fff; border: 1.5px solid var(--gray-line); border-radius: var(--radius-sm); padding: 5px 6px 5px 16px; transition: border-color 0.18s; }
.blog-search:focus-within { border-color: var(--blue); }
.blog-search__input { flex: 1; min-width: 0; border: 0; background: transparent; font-family: var(--font-body); font-size: 0.94rem; color: var(--text); padding: 9px 0; }
.blog-search__input:focus { outline: none; }
.blog-search__btn { flex-shrink: 0; width: 40px; height: 40px; border: 0; border-radius: 9px; background: var(--blue); color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: background 0.18s; }
.blog-search__btn:hover { background: var(--navy); }

/* Popüler Yazılar */
.blog-widget--popular { border-color: #E8ECF3; border-radius: 16px; padding: clamp(24px, 2.5vw, 28px); }
.blog-widget__title--popular {
	position: relative;
	font-size: 1.12rem;
	font-weight: 700;
	color: #0F2B6E;
	margin: 0 0 22px;
	padding-bottom: 14px;
}
.blog-widget__title--popular::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 42px;
	height: 3px;
	border-radius: 999px;
	background: #0F2B6E;
}
.popular-posts { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.popular-post { border-top: 1px solid #E8ECF3; }
.popular-post:first-child { border-top: 0; }
.popular-post__link {
	display: grid;
	grid-template-columns: 44px 1fr auto;
	gap: 14px;
	align-items: center;
	padding: 18px 0;
	color: inherit;
	text-decoration: none;
}
.popular-post__num {
	font-size: 1.45rem;
	font-weight: 700;
	line-height: 1;
	color: #C5CDD9;
	letter-spacing: -0.02em;
}
.popular-post__content { display: grid; gap: 6px; min-width: 0; }
.popular-post__title {
	display: block;
	font-size: 0.94rem;
	font-weight: 700;
	line-height: 1.4;
	color: #0F2B6E;
}
.popular-post__date { display: block; font-size: 0.78rem; color: var(--text-muted); }
.popular-post__arrow {
	font-size: 1.1rem;
	line-height: 1;
	color: #0F2B6E;
	transition: transform 0.25s var(--ease);
}
.popular-post__link:hover .popular-post__title { color: var(--blue); }
.popular-post__link:hover .popular-post__arrow { transform: translateX(4px); }

/* Bülten */
.blog-widget--newsletter { background: var(--gray); border-color: var(--gray-line); scroll-margin-top: calc(var(--header-h) + 16px); }
.newsletter__text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin: 0 0 16px; }
.newsletter__form { display: grid; gap: 10px; }
.newsletter__input { font-family: var(--font-body); font-size: 0.94rem; color: var(--text); padding: 12px 14px; border: 1.5px solid var(--gray-line); border-radius: var(--radius-sm); background: #fff; transition: border-color 0.18s; }
.newsletter__input:focus { outline: none; border-color: var(--blue); }
.newsletter__note { display: flex; align-items: center; gap: 8px; margin: 14px 0 0; font-size: 0.78rem; color: var(--text-muted); }
.newsletter__note-icon { display: inline-flex; color: var(--blue); }
.newsletter__note-icon svg { width: 16px; height: 16px; }
.blog-widget--newsletter .form-alert { margin-bottom: 14px; }

/* Görüşme Planla CTA */
.blog-widget--cta { background: var(--navy); border-color: var(--navy); }
.blog-widget__title--light { color: #fff; }
.sidebar-cta__text { font-size: 0.9rem; color: rgba(255, 255, 255, 0.82); line-height: 1.6; margin: 0 0 18px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.site-nav, .site-header__actions .btn { display: none; }
	.nav-toggle { display: flex; }
	.insights__grid { grid-template-columns: repeat(2, 1fr); }
	.insights__strip .insight-card { flex: 0 0 calc((100% - 24px) / 2); }
	.references__strip .reference-item { flex: 0 0 calc((100% - 3 * 20px) / 4); }
	.about__cards { grid-template-columns: repeat(2, 1fr); }
	.trust__grid { grid-template-columns: repeat(2, 1fr); }
	.trust__item:nth-child(odd) { border-left: 0; }
	.trust__item:nth-child(3), .trust__item:nth-child(4) { border-top: 1px solid var(--gray-line); }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
	.archive-grid { grid-template-columns: repeat(2, 1fr); }
	.blog-layout { grid-template-columns: 1fr; display: flex; flex-direction: column; align-items: stretch; }
	.blog-sidebar { position: static; display: contents; }
	.blog-main,
	.blog-widget--search,
	.blog-widget--popular,
	.blog-widget--newsletter,
	.blog-widget--cta { order: 1; width: 100%; }
	.blog-widget--search { order: 0; }
	.blog-widget--popular { order: 2; }
	.blog-widget--newsletter { order: 3; }
	.blog-widget--cta { order: 4; }
	.blog-widget--search .blog-search { width: 100%; }
	.blog-main .insights__grid--blog { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
	.hero__inner { padding-block: clamp(40px, 10vw, 64px); }
	.trust__grid { grid-template-columns: 1fr; }
	.trust__item { border-left: 0 !important; border-top: 1px solid var(--gray-line); padding: 22px 4px; }
	.trust__item:first-child { border-top: 0; }
	.services__strip .svc-card { flex: 0 0 82%; min-width: 0; }
	.strip-nav { display: none; }
	.landing-hero:not(.landing-hero--text) .landing-hero__inner { grid-template-columns: 1fr; text-align: center; }
	.landing-hero:not(.landing-hero--text) .hero__actions { justify-content: center; }
	.landing-hero:not(.landing-hero--text) .landing-hero__lead { margin-inline: auto; }
	.landing-hero__inner { grid-template-columns: 1fr; }
	.landing-hero__media { order: -1; max-width: 460px; margin-inline: auto; }
	.landing-benefits__grid { grid-template-columns: 1fr; }
	.lp-problems__grid,
	.lp-features__grid { grid-template-columns: 1fr; gap: 0; }
	.lp-pillar { border-left: 0 !important; padding: 24px 0 0 !important; border-top: 1px solid #E8ECF3; border-right: 0 !important; }
	.lp-pillar:first-child { border-top: 0; padding-top: 0 !important; }
	.lp-faq__grid { grid-template-columns: 1fr; }
	.insights__grid { grid-template-columns: 1fr; }
	.insights__strip .insight-card { flex: 0 0 82%; }
	.insights__head-actions .strip-nav { display: none; }
	.references__strip .reference-item { flex: 0 0 calc((100% - 20px) / 3); min-width: 0; }
	.references__head-actions { display: none; }
	.blog-hero__inner { grid-template-columns: 1fr; }
	.blog-hero__media { order: -1; }
	.blog-hero--text .blog-hero__media { display: none; }
	.blog-hero__media img { height: clamp(200px, 50vw, 300px); }
	.blog-hero__title { max-width: none; }
	.blog-hero--text .blog-hero__title { max-width: none; }
	.blog-main .insights__grid--blog { grid-template-columns: 1fr; }
	.approach__timeline { grid-template-columns: 1fr; gap: 0; position: relative; }
	.approach__timeline::before { content: ""; position: absolute; top: 12px; bottom: 12px; left: 7px; width: 2px; background: var(--gray-line); }
	.approach__step:not(:last-child)::after { display: none; }
	.approach__step { padding: 6px 0 28px 44px; }
	.approach__num { position: static; display: block; margin-bottom: 4px; }
	.approach__dot { left: 1px; top: 8px; }
	.about__inner { grid-template-columns: 1fr; }
	.about__media { order: 2; }
	.about__cards { grid-template-columns: 1fr; }
	.cta__inner { grid-template-columns: 1fr; }
	.cta__form { grid-template-columns: 1fr; }
	.section-head { flex-direction: column; align-items: flex-start; }
	.site-footer__grid { grid-template-columns: 1fr; gap: 28px; }
	.site-footer__bottom-inner { flex-direction: column; align-items: flex-start; }
	.archive-grid { grid-template-columns: 1fr; }
	.services-archive { grid-template-columns: 1fr; }
	.svc-grid { grid-template-columns: 1fr; }
	.partners-grid { grid-template-columns: 1fr; }
	.partner-card { grid-template-columns: 1fr; }
	.partner-card__photo { max-width: 200px; }
	.partners-cta { grid-template-columns: 1fr; text-align: left; }
	.partners-cta__btn { justify-self: start; }
}

@media (min-width: 761px) and (max-width: 1024px) {
	.services-archive { grid-template-columns: repeat(2, 1fr); }
	.svc-grid { grid-template-columns: repeat(2, 1fr); }
	.partners-grid { grid-template-columns: 1fr; }
	.landing-benefits__grid { grid-template-columns: repeat(2, 1fr); }
	.lp-problems__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
	.lp-features__grid { grid-template-columns: 1fr; gap: 28px 0; }
	.lp-pillar { border-left: 0 !important; padding: 0 !important; margin: 0 !important; border-top: 0 !important; }
	.lp-problems__grid .lp-pillar:nth-child(odd) { padding-right: 20px !important; border-right: 1px solid #E8ECF3; }
	.lp-problems__grid .lp-pillar:nth-child(even) { padding-left: 20px !important; }
	.lp-problems__grid .lp-pillar:nth-child(2n + 1) { border-left: 0; padding-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	* { transition: none !important; animation: none !important; }
}
