/* =========================================================================
   Zeroinc Theme — main stylesheet
   ========================================================================= */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--zi-text, #3a3a3a);
	background: #fff;
	-webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; display: block; }
.hero__image { width: 100%; height: auto; max-height: 540px; }
.about__image, .why__image { width: auto; height: auto; max-height: 300px; max-width: 100%; }

a { color: var(--zi-primary); text-decoration: none; transition: color .2s; }
a:hover, a:focus { color: var(--zi-dark); }

button { font: inherit; cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 .5em;
	font-weight: 700;
	color: var(--zi-dark);
	line-height: 1.2;
	letter-spacing: -.01em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}
.skip-link {
	position: absolute;
	top: -100px;
	left: 8px;
	background: var(--zi-primary);
	color: #fff;
	padding: 8px 14px;
	border-radius: 6px;
	z-index: 100000;
	font-weight: 600;
}
.skip-link:focus { top: 8px; }

/* --- Layout ------------------------------------------------------------- */
.container {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 20px;
}

.site-main { padding: 0 0 60px; }
.site-main--front { padding: 0; }

/* --- Buttons ------------------------------------------------------------ */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 22px;
	border-radius: 999px;
	font-weight: 600;
	font-size: .95rem;
	border: 0;
	cursor: pointer;
	transition: transform .2s, box-shadow .2s, background .2s, color .2s;
	text-decoration: none;
	line-height: 1;
}
.btn--primary { background: var(--zi-primary); color: #fff; }
.btn--primary:hover, .btn--primary:focus { background: var(--zi-primary-hover); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(100, 160, 190, .35); }
.btn--ghost {
	background: transparent;
	color: var(--zi-dark);
	border: 1.5px solid #d5d5d5;
}
.btn--ghost:hover, .btn--ghost:focus { background: var(--zi-dark); color: #fff; border-color: var(--zi-dark); }
.btn--lg { padding: 16px 26px; font-size: 1rem; }
.btn--block { width: 100%; justify-content: center; }
.btn__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--zi-primary);
	color: #fff;
	flex-shrink: 0;
}
.btn--primary .btn__icon { background: #fff; color: var(--zi-primary); }
.btn--ghost .btn__icon { background: transparent; border: 1.5px solid currentColor; }

/* --- Header ------------------------------------------------------------- */
.site-topbar {
	background: var(--zi-primary);
	color: #fff;
	font-size: .85rem;
}
.site-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 10px 20px;
	flex-wrap: wrap;
}
.site-topbar__info { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.site-topbar__item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #fff;
}
.site-topbar__item:hover { opacity: .85; }
.site-topbar__social {
	display: flex;
	gap: 10px;
}
.site-topbar__social .social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #fff;
	color: var(--zi-dark);
	transition: transform .2s, background .2s;
}
.site-topbar__social .social-icon:hover { background: var(--zi-dark); color: #fff; transform: translateY(-1px); }

.site-nav {
	background: #fff;
	border-bottom: 1px solid #f0f0f0;
	position: sticky;
	top: 0;
	z-index: 50;
}
.site-nav__inner {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 16px 20px;
}
.site-branding { flex-shrink: 0; }
.site-branding img,
.site-branding .custom-logo { max-height: 50px; width: auto; }
.site-title-link { font-weight: 700; font-size: 1.4rem; color: var(--zi-dark); display: inline-flex; align-items: center; gap: 8px; }
.primary-nav { flex: 1; }
.primary-menu, .footer-menu {
	display: flex;
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
	justify-content: center;
}
.primary-menu li { position: relative; }
.primary-menu a {
	color: var(--zi-dark);
	font-weight: 500;
	font-size: .95rem;
	padding: 8px 0;
}
.primary-menu a:hover, .primary-menu .current-menu-item > a { color: var(--zi-primary); }
.primary-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	border: 1px solid #f0f0f0;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
	border-radius: 8px;
	padding: 8px 0;
	min-width: 200px;
	display: none;
	list-style: none;
	margin: 0;
	z-index: 60;
}
.primary-menu li:hover > .sub-menu, .primary-menu li:focus-within > .sub-menu { display: block; }
.primary-menu .sub-menu a { display: block; padding: 8px 16px; }

.site-nav__cta { flex-shrink: 0; }
.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: transparent;
	border: 0;
	padding: 8px;
	margin-left: auto;
}
.nav-toggle span {
	width: 24px;
	height: 2px;
	background: var(--zi-dark);
	border-radius: 2px;
	transition: transform .2s;
}

/* --- Hero --------------------------------------------------------------- */
.hero { background: linear-gradient(180deg, #eaf5fb 0%, #fff 100%); padding: 60px 0 80px; overflow: hidden; }
.hero__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}
.hero__eyebrow { color: var(--zi-primary); font-weight: 600; margin: 0 0 12px; }
.hero__title { font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 0 0 18px; line-height: 1.05; }
.hero__title-highlight { color: var(--zi-primary); }
.hero__desc { max-width: 480px; color: #5e5e5e; font-size: 1rem; }
.hero__media { position: relative; min-height: 420px; }
.hero__blob {
	position: absolute;
	inset: 0;
	background: radial-gradient(closest-side, var(--zi-primary-light, #9ccee5), var(--zi-primary, #64a0be));
	border-radius: 50% 60% 55% 50% / 60% 50% 60% 50%;
	transform: rotate(-12deg);
	z-index: 0;
}
.hero__image { position: relative; z-index: 1; max-height: 520px; margin: 0 auto; border-radius: 12px; }
.hero__badge {
	position: absolute;
	bottom: 30px;
	right: -10px;
	background: #fff;
	border-radius: 16px;
	padding: 14px 20px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, .1);
	z-index: 2;
}
.hero__badge-icon { color: var(--zi-primary); display: flex; }
.hero__badge-number { display: block; font-size: 1.4rem; color: var(--zi-dark); }
.hero__badge-label { font-size: .85rem; color: #6e6e6e; }

.hero__team { margin-top: 40px; }
.hero__team-label { font-weight: 600; color: var(--zi-dark); margin-bottom: 12px; }
.hero__avatars { display: flex; }
.hero__avatar {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 3px solid #fff;
	object-fit: cover;
	margin-left: -10px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
}
.hero__avatar:first-child { margin-left: 0; }

/* --- Marquee ------------------------------------------------------------ */
.marquee {
	background: var(--zi-dark);
	color: #fff;
	overflow: hidden;
	padding: 22px 0;
}
.marquee__track {
	display: flex;
	width: max-content;
	animation: zi-marquee 30s linear infinite;
}
.marquee__list {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0 30px;
	gap: 50px;
}
.marquee__item {
	display: flex;
	align-items: center;
	gap: 20px;
	font-size: 1.6rem;
	font-weight: 700;
	white-space: nowrap;
}
.marquee__dot {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--zi-primary);
	flex-shrink: 0;
	display: inline-block;
}
@keyframes zi-marquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* --- Section heads ------------------------------------------------------ */
.section-head { margin-bottom: 36px; display: grid; gap: 14px; grid-template-columns: 1fr 1fr; align-items: end; }
.section-head--center { text-align: center; grid-template-columns: 1fr; justify-items: center; }
.section-head--light .section-head__title { color: #fff; }
.section-head__title { margin: 0; }
.section-head__intro { color: #5e5e5e; max-width: 580px; }

/* --- Services ----------------------------------------------------------- */
.services { padding: 80px 0; }
.services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
}
.service-card {
	padding: 30px;
	border-top: 1px solid #eee;
	border-right: 1px solid #eee;
	transition: background .2s, transform .2s;
}
.service-card:nth-child(3n) { border-right: 0; }
.service-card:first-child { border-left: 1px solid #eee; }
.service-card:hover { background: #eaf5fb; transform: translateY(-3px); }
.service-card__icon { color: var(--zi-dark); margin-bottom: 16px; }
.service-card__title { font-size: 1.2rem; margin: 0 0 10px; }
.service-card__desc { color: #6e6e6e; margin: 0 0 18px; min-height: 60px; }

/* --- About / stats ------------------------------------------------------ */
.about { padding: 80px 0; }
.about__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}
.about__desc { color: #5e5e5e; margin-bottom: 30px; max-width: 460px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat__value { display: block; font-size: 2rem; color: var(--zi-dark); font-weight: 800; }
.stat__label { color: #6e6e6e; }
.about__media {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 18px;
}
.about__image { border-radius: 12px; }
.about__badge {
	background: var(--zi-primary);
	border-radius: 14px;
	padding: 14px 18px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	font-weight: 700;
	box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}
.about__badge-icon { color: #fff; display: flex; }

/* --- Team --------------------------------------------------------------- */
.team { padding: 80px 0; background: #f4f4f4; }
.team__list { list-style: none; margin: 0; padding: 0; }
.team__row {
	display: grid;
	grid-template-columns: 60px 1.2fr 2fr 40px;
	gap: 20px;
	align-items: center;
	padding: 22px 0;
	border-bottom: 1px solid #e0e0e0;
}
.team__row:last-child { border-bottom: 0; }
.team__avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.team__name h3 { margin: 0; font-size: 1.2rem; }
.team__role { color: #6e6e6e; font-size: .9rem; margin: 4px 0 0; }
.team__bio { color: #5e5e5e; margin: 0; }
.team__share {
	background: #fff;
	border: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--zi-dark);
	box-shadow: 0 2px 6px rgba(0, 0, 0, .06);
	transition: background .2s, color .2s;
}
.team__share:hover { background: var(--zi-primary); color: #fff; }

/* --- Projects ----------------------------------------------------------- */
.projects { padding: 80px 0; }
.projects__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.projects__item {
	position: relative;
	display: block;
	border-radius: 14px;
	overflow: hidden;
	aspect-ratio: 1;
	background: #fff;
	height: 100%;
	box-shadow: 0 6px 18px rgba(14, 25, 54, .08), 0 2px 4px rgba(14, 25, 54, .04);
	border: 1px solid rgba(14, 25, 54, .06);
	transition: transform .25s ease, box-shadow .25s ease;
}
.projects__item:hover,
.projects__item:focus-visible {
	transform: translateY(-4px);
	box-shadow: 0 18px 36px rgba(14, 25, 54, .14), 0 6px 12px rgba(14, 25, 54, .06);
}
.projects__image { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.projects__item:hover .projects__image,
.projects__item:focus-visible .projects__image { transform: scale(1.04); }
.projects__title {
	position: absolute;
	bottom: 14px;
	left: 14px;
	background: rgba(0, 0, 0, .65);
	color: #fff;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: .85rem;
	font-weight: 600;
}
.projects__cta { text-align: center; margin-top: 36px; }

/* --- Testimonials ------------------------------------------------------- */
.testimonials { background: var(--zi-dark); color: #fff; padding: 80px 0; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial {
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(255, 255, 255, .08);
	padding: 28px;
	border-radius: 16px;
	margin: 0;
}
.testimonial__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 14px;
}
.testimonial__quote-icon { color: var(--zi-primary); }
.testimonial__stars { color: var(--zi-primary); display: inline-flex; gap: 2px; }
.testimonial__quote { font-size: .95rem; color: #d8d8e0; margin: 0 0 24px; padding: 0; border-top: 1px solid rgba(255, 255, 255, .06); padding-top: 16px; }
.testimonial__person { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial__person small { color: #a0a0a8; }

/* --- Why Choose Us ------------------------------------------------------ */
.why { padding: 80px 0; }
.why__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}
.why__desc { color: #5e5e5e; margin-bottom: 22px; max-width: 460px; }
.why__list {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px 24px;
}
.why__list li { display: flex; align-items: flex-start; gap: 10px; color: var(--zi-dark); font-weight: 500; }
.why__check {
	flex-shrink: 0;
	width: 22px; height: 22px;
	border-radius: 50%;
	background: var(--zi-dark);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.why__media {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 18px;
}
.why__image { border-radius: 0 0 160px 160px / 0 0 50px 50px; }
.why__dots {
	position: absolute;
	right: -10px;
	bottom: -10px;
	width: 120px;
	height: 90px;
	background-image: radial-gradient(var(--zi-primary) 2px, transparent 2px);
	background-size: 16px 16px;
	opacity: .5;
	z-index: -1;
}

/* --- Contact ------------------------------------------------------------ */
.contact { padding: 80px 0; background: #fafafa; }
.contact__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.contact__media {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 18px;
}
.contact__image { width: auto; height: auto; max-height: 480px; max-width: 100%; border-radius: 0 0 200px 200px / 0 0 60px 60px; }
.contact__badge {
	background: #fff;
	padding: 14px 20px;
	border-radius: 14px;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}
.contact__badge-icon { color: var(--zi-primary); display: flex; }
.contact__badge strong { display: block; font-size: 1.5rem; color: var(--zi-dark); }
.contact__intro { color: #5e5e5e; margin-bottom: 26px; }

.contact-form { display: grid; gap: 14px; max-width: 520px; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form__honeypot { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	font-size: .95rem;
	color: var(--zi-dark);
	background: #fff;
	font-family: inherit;
	transition: border-color .2s, box-shadow .2s;
}
.contact-form__field textarea { resize: vertical; min-height: 110px; }
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
	outline: 0;
	border-color: var(--zi-primary);
	box-shadow: 0 0 0 3px rgba(100, 160, 190, .25);
}

.form-message {
	padding: 12px 16px;
	border-radius: 8px;
	margin-bottom: 18px;
	font-weight: 500;
}
.form-message--success { background: #e7f8ed; color: #1a7a3a; border: 1px solid #b8e3c5; }
.form-message--error { background: #fde8e8; color: #b32d2e; border: 1px solid #f5c5c6; }
.contact-form__feedback:empty { display: none; }
.contact-form__feedback { margin: 6px 0 0; font-size: .9rem; }
.contact-form__feedback.is-success { color: #1a7a3a; }
.contact-form__feedback.is-error { color: #b32d2e; }

/* --- Recent blog -------------------------------------------------------- */
.recent-blog { padding: 80px 0; }
.recent-blog__grid, .posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.posts-grid { gap: 30px; }

.blog-card {
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(0, 0, 0, .08); }
.blog-card__media { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; background: #f0f0f0; }
.blog-card__image { width: 100%; height: 100%; object-fit: cover; }
.blog-card__date {
	position: absolute;
	left: 14px; bottom: 14px;
	background: var(--zi-primary);
	border-radius: 10px;
	padding: 8px 12px;
	color: #fff;
	text-align: center;
	font-weight: 700;
	line-height: 1.1;
}
.blog-card__date strong { display: block; font-size: 1rem; }
.blog-card__date small { font-size: .75rem; }
.blog-card__body { padding: 20px; }
.blog-card__title { font-size: 1.1rem; margin: 0 0 12px; }
.blog-card__title a { color: var(--zi-dark); }
.blog-card__title a:hover { color: var(--zi-primary); }
.blog-card__excerpt { color: #6e6e6e; margin-bottom: 12px; }
.blog-card__more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--zi-dark);
	font-weight: 600;
	border-top: 1px solid #eee;
	padding-top: 12px;
	margin-top: 8px;
	width: 100%;
	justify-content: space-between;
}

/* --- Page hero (interior) ---------------------------------------------- */
.page-hero {
	background: var(--zi-dark);
	color: #fff;
	padding: 60px 0;
	text-align: center;
}
.page-hero__title { color: #fff; margin: 0; }
.page-hero__meta { color: #b8c0d4; margin-bottom: 8px; }
.page-content { padding: 60px 0; max-width: 820px; }
.entry__thumb { margin: 0 0 30px; border-radius: 12px; overflow: hidden; }
.entry__content { font-size: 1.05rem; color: #444; }
.entry__content h2, .entry__content h3 { margin-top: 1.6em; }

.error-404 { text-align: center; padding: 80px 0; }
.error-404__title { font-size: 6rem; color: var(--zi-primary); margin: 0; }
.error-404__lead { font-size: 1.2rem; color: #5e5e5e; margin-bottom: 24px; }

/* --- Footer ------------------------------------------------------------- */
.site-footer { background: #f4f4f4; padding: 60px 0 0; margin-top: 60px; color: var(--zi-dark); }
.site-footer__inner {
	display: grid;
	grid-template-columns: 1fr 1.4fr 1fr;
	gap: 40px;
	padding-bottom: 40px;
}
.site-footer__branding img { width: auto; height: auto; max-height: 40px; max-width: 240px; margin-bottom: 20px; }
.site-footer__newsletter { display: flex; gap: 8px; max-width: 320px; margin-bottom: 16px; }
.site-footer__newsletter input {
	flex: 1;
	padding: 12px 16px;
	border: 1px solid #e0e0e0;
	border-radius: 999px;
	background: #fff;
}
.site-footer__newsletter button {
	width: 44px; height: 44px;
	border-radius: 50%;
	background: var(--zi-primary);
	color: #fff;
	border: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.site-footer__social { display: flex; gap: 10px; margin-top: 14px; }
.site-footer__social .social-icon {
	width: 36px; height: 36px;
	border-radius: 50%;
	background: #fff;
	color: var(--zi-dark);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.site-footer__social .social-icon:hover { background: var(--zi-primary); color: #fff; }

.site-footer__heading { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: 0; }
.site-footer__contacts { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.site-footer__col h3 { margin: 0 0 8px; font-size: 1rem; }
.site-footer__col a { display: block; color: var(--zi-dark); margin-top: 4px; }
.site-footer__col a:hover { color: var(--zi-primary); }

.site-footer__bottom { border-top: 1px solid #e0e0e0; padding: 18px 0; }
.site-footer__bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}
.site-footer__copyright { margin: 0; color: #6e6e6e; font-size: .9rem; }
.site-footer__links .footer-menu { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; }
.site-footer__links a { color: var(--zi-dark); font-size: .9rem; }
.site-footer__links a:hover { color: var(--zi-primary); }

.back-to-top {
	background: var(--zi-primary);
	color: #fff;
	border: 0;
	width: 40px; height: 40px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 12px rgba(100, 160, 190, .45);
}
.back-to-top:hover { background: var(--zi-primary-hover, #538ca8); }

/* --- Responsive --------------------------------------------------------- */
@media (max-width: 980px) {
	.hero__inner,
	.about__inner,
	.why__inner,
	.contact__inner,
	.site-footer__inner {
		grid-template-columns: 1fr;
	}
	.services__grid,
	.recent-blog__grid,
	.posts-grid,
	.testimonials__grid,
	.projects__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.service-card:nth-child(3n) { border-right: 1px solid #eee; }
	.service-card:nth-child(2n) { border-right: 0; }

	/* Stop media columns from sticking to the right when stacked */
	.about__media,
	.why__media,
	.contact__media,
	.hero__media {
		align-items: flex-start;
	}
	.about__image,
	.why__image,
	.contact__image,
	.hero__image {
		margin-left: 0;
		margin-right: auto;
	}
	.why__dots { right: auto; left: -10px; }
	.hero__badge { right: auto; left: 0; }
}

@media (max-width: 720px) {
	.site-nav__inner { gap: 12px; }
	.nav-toggle { display: inline-flex; }
	.primary-nav {
		position: absolute;
		top: 100%;
		left: 0; right: 0;
		background: #fff;
		padding: 16px 20px;
		display: none;
		box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
	}
	.primary-nav.is-open { display: block; }
	.primary-menu { flex-direction: column; gap: 14px; align-items: flex-start; }
	.site-nav__cta { display: none; }
	.site-topbar__inner { font-size: .8rem; gap: 8px; }
	.services__grid,
	.recent-blog__grid,
	.posts-grid,
	.testimonials__grid,
	.stats {
		grid-template-columns: 1fr;
	}
	.projects__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
	.service-card { border-right: 0 !important; }
	.team__row { grid-template-columns: 60px 1fr; }
	.team__bio { grid-column: 2; }
	.team__share { grid-column: 2; justify-self: start; }
	.section-head { grid-template-columns: 1fr; }
	.contact-form__row { grid-template-columns: 1fr; }
	.why__list { grid-template-columns: 1fr; }
	.site-footer__contacts { grid-template-columns: 1fr; }
	.hero__media { min-height: 320px; }
	.hero__badge { right: auto; left: 0; }
	.marquee__item { font-size: 1.2rem; }
	.marquee__list { gap: 30px; padding: 0 15px; }
}

/* --- Print -------------------------------------------------------------- */
@media print {
	.site-nav, .site-topbar, .site-footer, .marquee, .back-to-top { display: none !important; }
}
