/* TeamCinq — main stylesheet */

:root {
	--navy: #0b1f3a;
	--navy-deep: #071628;
	--ink: #13233d;
	--muted: #5b6b82;
	--line: #e4eaf2;
	--surface: #ffffff;
	--mist: #f4f7fb;
	--blue: #1f6bff;
	--blue-soft: #dcebff;
	--teal: #1aa7a1;
	--teal-soft: #d7f3f1;
	--green: #2f9e6b;
	--green-soft: #d9f3e6;
	--violet: #6b6ad8;
	--violet-soft: #e6e6fb;
	--radius: 8px;
	--radius-lg: 14px;
	--shadow: 0 10px 30px rgba(11, 31, 58, 0.06);
	--container: 1120px;
	--font-display: "Sora", sans-serif;
	--font-body: "Manrope", sans-serif;
}

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

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

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink);
	background:
		radial-gradient(1200px 500px at 85% -10%, rgba(47, 124, 246, 0.08), transparent 60%),
		radial-gradient(900px 420px at -10% 20%, rgba(26, 167, 161, 0.06), transparent 55%),
		var(--surface);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	padding-left: env(safe-area-inset-left);
	padding-right: env(safe-area-inset-right);
}

#main,
.site-footer {
	overflow-x: clip;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1,
h2,
h3 {
	font-family: var(--font-display);
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin: 0;
}

p {
	margin: 0;
}

.container {
	--gutter: clamp(1rem, 4vw, 1.5rem);
	width: min(100% - (var(--gutter) * 2), var(--container));
	margin-inline: auto;
}

.container.narrow {
	width: min(100% - (var(--gutter) * 2), 760px);
}

.skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	background: var(--navy);
	color: #fff;
	padding: 0.75rem 1rem;
	z-index: 1000;
}

.skip-link:focus {
	left: 1rem;
	top: 1rem;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-family: var(--font-display);
	font-size: 0.92rem;
	font-weight: 600;
	padding: 0.85rem 1.2rem;
	min-height: 44px;
	border-radius: var(--radius);
	border: 1px solid transparent;
	text-align: center;
	transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.nav-mobile-cta {
	display: none;
}

body.nav-open {
	overflow: hidden;
	touch-action: none;
}

.btn:hover {
	transform: translateY(-1px);
}

.btn-primary {
	background: var(--navy);
	color: #fff;
}

.btn-primary:hover {
	background: #143157;
}

.btn-ghost {
	background: #fff;
	border-color: #d5dee9;
	color: var(--navy);
}

.btn-ghost:hover {
	border-color: var(--navy);
}

.btn-light {
	background: #fff;
	color: var(--navy);
}

.btn-light:hover {
	background: #f3f7ff;
}

.btn-outline-light {
	margin-top: 1.5rem;
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline-light:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.08);
}

.section-eyebrow {
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 0.85rem;
}

.section-eyebrow.center,
.section-title.center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.section-eyebrow.on-dark {
	color: #6ea8ff;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-top: 1.25rem;
	font-weight: 700;
	font-family: var(--font-display);
	font-size: 0.92rem;
	color: var(--blue);
}

.text-link:hover {
	color: var(--navy);
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	backdrop-filter: blur(12px);
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid rgba(228, 234, 242, 0.8);
	padding-top: env(safe-area-inset-top);
}

.header-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1.5rem;
	min-height: 72px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: 0.02em;
	color: var(--navy);
}

.brand-name {
	font-size: 1.1rem;
}

.brand-team {
	color: var(--navy);
}

.brand-cinq {
	color: var(--blue);
}

.brand-light .brand-team {
	color: #fff;
}

.brand-light .brand-cinq {
	color: #6ea8ff;
}

.brand .custom-logo-link,
.brand .custom-logo-link img {
	display: block;
	height: 36px;
	width: auto;
}

.nav-list {
	display: flex;
	justify-content: center;
	gap: 1.4rem;
	flex-wrap: wrap;
}

.nav-list a {
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--muted);
}

.nav-list a:hover,
.nav-list .current-menu-item > a {
	color: var(--navy);
}

.header-cta {
	white-space: nowrap;
}

.nav-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	width: 16px;
	height: 2px;
	background: var(--navy);
}

/* Hero */
.hero {
	position: relative;
	overflow: hidden;
	padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
	min-height: min(88vh, 760px);
	display: flex;
	align-items: center;
}

.hero-atmosphere {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(244, 247, 251, 0.85)),
		radial-gradient(700px 420px at 70% 30%, rgba(47, 124, 246, 0.16), transparent 70%),
		radial-gradient(520px 360px at 20% 80%, rgba(26, 167, 161, 0.12), transparent 70%);
	pointer-events: none;
}

.hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.hero h1 {
	font-size: clamp(2.15rem, 7vw + 0.5rem, 4.4rem);
	font-weight: 800;
	overflow-wrap: anywhere;
}

.hero h1 .line {
	display: block;
}

.line-navy {
	color: var(--navy);
}

.line-blue {
	color: var(--blue);
}

.hero-lead {
	margin-top: 1.25rem;
	max-width: 34rem;
	font-size: clamp(0.98rem, 0.4vw + 0.92rem, 1.08rem);
	color: var(--muted);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 1.75rem;
}

.hero-visual {
	display: flex;
	justify-content: center;
}

.chart {
	width: min(100%, 320px);
	height: 360px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 0.85rem;
	padding: 1.5rem 1.25rem 1.25rem;
	border-radius: 24px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.35)),
		linear-gradient(145deg, #eaf3ff, #e8fbf7);
	border: 1px solid rgba(255, 255, 255, 0.8);
}

.bar {
	flex: 1;
	height: var(--h);
	border-radius: 999px 999px 10px 10px;
	background: linear-gradient(180deg, #63b0ff, #2ed3b8);
	transform-origin: bottom;
	animation: rise 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.bar:nth-child(1) { animation-delay: 0.05s; }
.bar:nth-child(2) { animation-delay: 0.15s; }
.bar:nth-child(3) { animation-delay: 0.25s; }
.bar:nth-child(4) { animation-delay: 0.35s; }
.bar:nth-child(5) { animation-delay: 0.45s; }

.bar-peak {
	position: relative;
	background: linear-gradient(180deg, #7ec0ff, #1fc4a8 70%, #14a892);
}

.peak-chevron {
	position: absolute;
	top: -0.65rem;
	left: 50%;
	width: 12px;
	height: 12px;
	border-left: 2px solid #fff;
	border-top: 2px solid #fff;
	transform: translateX(-50%) rotate(45deg);
	filter: drop-shadow(0 2px 4px rgba(11, 31, 58, 0.2));
}

@keyframes rise {
	from {
		transform: scaleY(0.2);
		opacity: 0.4;
	}
	to {
		transform: scaleY(1);
		opacity: 1;
	}
}

/* Trusted */
.trusted {
	padding: 1.75rem 0 2.5rem;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.7);
}

.trusted-label {
	text-align: center;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #8a97ab;
	margin-bottom: 1.1rem;
}

.logo-row {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1.5rem 2.5rem;
}

.logo-row span {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.05rem;
	color: #a7b3c5;
	letter-spacing: 0.02em;
}

/* Challenges */
.challenges {
	padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

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

.challenges-intro h2,
.section-title,
.partner-intro h2,
.method-intro h2 {
	font-size: clamp(1.8rem, 3.4vw, 2.45rem);
	color: var(--navy);
	max-width: 18ch;
}

.section-title.center {
	max-width: 22ch;
}

.challenges-intro p {
	margin-top: 1rem;
	color: var(--muted);
	max-width: 36ch;
}

.feature-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem 1.5rem;
}

.feature {
	padding: 0.25rem 0.15rem;
}

.feature h3,
.solution-card h3,
.partner-cards h3 {
	font-size: 1.02rem;
	margin: 0.85rem 0 0.4rem;
	color: var(--navy);
}

.feature p,
.solution-card li,
.partner-cards p,
.method-steps p {
	color: var(--muted);
	font-size: 0.95rem;
}

.icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 10px;
}

.icon-blue { background: var(--blue-soft); color: var(--blue); }
.icon-green { background: var(--green-soft); color: var(--green); }
.icon-teal { background: var(--teal-soft); color: var(--teal); }
.icon-violet { background: var(--violet-soft); color: var(--violet); }

/* Solutions */
.solutions {
	padding: 0 0 clamp(3.5rem, 7vw, 5.5rem);
}

.section-title {
	margin-bottom: 2rem;
}

.solution-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

.solution-card {
	position: relative;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 1.35rem 1.2rem 1.2rem;
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
	min-height: 100%;
	transition: transform 0.25s ease, border-color 0.25s ease;
}

.card-badge {
	position: absolute;
	top: 0.85rem;
	right: 0.85rem;
	font-family: var(--font-display);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #0f7a4d;
	background: #d9f3e6;
	padding: 0.28rem 0.5rem;
	border-radius: 6px;
}

.solution-card:hover {
	transform: translateY(-3px);
	border-color: #c9d7ea;
}

.solution-card ul {
	margin: 0.75rem 0 1.25rem;
	display: grid;
	gap: 0.45rem;
	flex: 1;
}

.solution-card li {
	position: relative;
	padding-left: 0.9rem;
}

.solution-card li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #b7c4d8;
}

.solution-card .text-link {
	margin-top: auto;
}

/* Method */
.method {
	background:
		radial-gradient(700px 280px at 80% 0%, rgba(47, 124, 246, 0.25), transparent 60%),
		linear-gradient(160deg, #0a1a31, #0d2748 55%, #0a2038);
	color: #fff;
	padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.method-inner {
	display: grid;
	grid-template-columns: 0.7fr 1.3fr;
	gap: 2.5rem;
	align-items: start;
}

.method-intro h2 {
	color: #fff;
	max-width: 12ch;
}

.method-intro p {
	margin-top: 1rem;
	color: rgba(255, 255, 255, 0.72);
	max-width: 32ch;
}

.method-steps {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1rem;
}

.method-steps li {
	position: relative;
	padding-top: 0.35rem;
}

.method-steps li::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, rgba(127, 190, 255, 0.9), rgba(46, 211, 184, 0.35));
}

.step-num {
	display: block;
	margin-top: 0.9rem;
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #6ea8ff;
}

.step-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin: 0.65rem 0 0.75rem;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.method-steps strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1rem;
	margin-bottom: 0.4rem;
}

.method-steps p {
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.88rem;
}

/* Partner */
.partner {
	padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.partner-cards {
	display: grid;
	gap: 1rem;
}

.partner-row {
	grid-template-columns: repeat(4, 1fr);
	margin-top: 0.25rem;
}

.partner-cards article {
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 1.25rem 1.15rem;
	background: linear-gradient(180deg, #fff, #f8fbff);
	box-shadow: var(--shadow);
}

/* Industries */
.industries {
	padding: 0 0 clamp(3rem, 6vw, 4.5rem);
}

.industry-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 0.75rem;
}

.industry-grid-6 {
	grid-template-columns: repeat(6, 1fr);
}

.industry-grid article {
	aspect-ratio: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	text-align: center;
	padding: 0.75rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: #fff;
	transition: border-color 0.25s ease, transform 0.25s ease;
}

.industry-grid article:hover {
	border-color: #bdd0ea;
	transform: translateY(-2px);
}

.industry-icon {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	display: grid;
	place-items: center;
	background: var(--mist);
	color: #6b7c94;
}

.industry-grid h3 {
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--navy);
}

/* CTA */
.cta-banner {
	padding: 0 0 clamp(3.5rem, 7vw, 5rem);
}

.cta-panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.5rem, 3vw, 2.5rem);
	border-radius: 18px;
	background:
		radial-gradient(500px 180px at 15% 0%, rgba(255, 255, 255, 0.22), transparent 55%),
		linear-gradient(105deg, #2f7cf6 0%, #2aa8d8 48%, #1aa7a1 100%);
	color: #fff;
	box-shadow: 0 18px 40px rgba(31, 120, 190, 0.25);
}

.cta-copy h2 {
	font-size: clamp(1.4rem, 2.6vw, 1.9rem);
	max-width: 18ch;
}

.cta-copy p {
	margin-top: 0.45rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1rem;
}

/* Footer */
.site-footer {
	background: var(--navy-deep);
	color: rgba(255, 255, 255, 0.78);
	padding: 3.5rem 0 1.5rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr 1.1fr;
	gap: 1.5rem;
}

.brand-light {
	color: #fff;
	margin-bottom: 0.9rem;
}

.footer-brand p {
	max-width: 28ch;
	font-size: 0.92rem;
}

.social-row {
	display: flex;
	gap: 0.65rem;
	margin-top: 1.1rem;
}

.social-row a {
	width: 34px;
	height: 34px;
	border-radius: 8px;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.social-row a:hover {
	background: rgba(255, 255, 255, 0.16);
}

.footer-col h3,
.footer-connect h3 {
	font-family: var(--font-display);
	font-size: 0.92rem;
	color: #fff;
	margin-bottom: 0.9rem;
}

.footer-col ul {
	display: grid;
	gap: 0.55rem;
}

.footer-col a,
.footer-connect a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
}

.footer-col a:hover,
.footer-connect a:hover {
	color: #fff;
}

.footer-connect p {
	font-size: 0.9rem;
	margin-bottom: 0.4rem;
}

.footer-connect p,
.footer-connect a {
	overflow-wrap: anywhere;
	word-break: break-word;
}

.footer-bottom {
	margin-top: 2.5rem;
	padding-top: 1.25rem;
	padding-bottom: env(safe-area-inset-bottom);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.5);
}

/* Inner pages */
.page-shell {
	padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 7vw, 5rem);
}

.content-card h1 {
	font-size: clamp(1.75rem, 4vw, 2.8rem);
	color: var(--navy);
	margin-bottom: 1.25rem;
	overflow-wrap: anywhere;
}

.entry-content {
	color: var(--muted);
	overflow-wrap: anywhere;
}

.entry-content > * + * {
	margin-top: 1rem;
}

.entry-content img,
.entry-content iframe,
.entry-content video,
.entry-content table {
	max-width: 100%;
}

.entry-content iframe,
.entry-content video {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
}

.entry-content table {
	display: block;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

/* Scroll sections stay visible; motion is progressive enhancement only */
html.js [data-animate]:not([data-animate="header"]):not([data-animate="hero"]) {
	transition: opacity 0.55s ease, transform 0.55s ease;
}

html.js [data-animate]:not([data-animate="header"]):not([data-animate="hero"]).will-animate:not(.is-visible) {
	opacity: 0;
	transform: translateY(18px);
}

html.js [data-animate].is-visible {
	opacity: 1;
	transform: none;
}

.hero-copy h1 .line,
.hero-copy .hero-lead,
.hero-copy .hero-actions {
	opacity: 0;
	transform: translateY(18px);
	animation: fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-copy h1 .line:nth-child(1) { animation-delay: 0.08s; }
.hero-copy h1 .line:nth-child(2) { animation-delay: 0.16s; }
.hero-copy h1 .line:nth-child(3) { animation-delay: 0.24s; }
.hero-copy .hero-lead { animation-delay: 0.36s; }
.hero-copy .hero-actions { animation-delay: 0.48s; }

@keyframes fade-up {
	to {
		opacity: 1;
		transform: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	html.js [data-animate]:not([data-animate="header"]):not([data-animate="hero"]).will-animate:not(.is-visible) {
		opacity: 1;
		transform: none;
	}

	.hero-copy h1 .line,
	.hero-copy .hero-lead,
	.hero-copy .hero-actions,
	.bar {
		opacity: 1;
		transform: none;
		animation: none;
	}
}

/* Responsive — large tablets / small laptops */
@media (max-width: 1100px) {
	.solution-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.industry-grid,
	.industry-grid-6 {
		grid-template-columns: repeat(3, 1fr);
	}

	.partner-row {
		grid-template-columns: 1fr 1fr;
	}

	.method-inner,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.method-steps {
		grid-template-columns: repeat(3, 1fr);
	}

	.footer-grid {
		gap: 2rem 1.5rem;
	}
}

/* Responsive — tablets */
@media (max-width: 900px) {
	.header-inner {
		grid-template-columns: 1fr auto;
		justify-content: space-between;
		min-height: 64px;
		gap: 0.75rem;
		position: relative;
	}

	.header-cta {
		display: none;
	}

	.nav-toggle {
		display: inline-flex;
		min-width: 44px;
		min-height: 44px;
	}

	.site-nav {
		display: none;
		position: fixed;
		left: 0;
		right: 0;
		top: var(--header-offset, calc(64px + env(safe-area-inset-top)));
		z-index: 1001;
		background: rgba(255, 255, 255, 0.98);
		border-bottom: 1px solid var(--line);
		padding: 1rem clamp(1rem, 4vw, 1.5rem) 1.35rem;
		box-shadow: 0 16px 28px rgba(11, 31, 58, 0.08);
		max-height: calc(100vh - var(--header-offset, 64px) - env(safe-area-inset-bottom));
		max-height: calc(100dvh - var(--header-offset, 64px) - env(safe-area-inset-bottom));
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.site-nav.is-open {
		display: block;
	}

	.nav-list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.nav-list a {
		display: block;
		padding: 0.85rem 0.15rem;
		min-height: 44px;
		border-bottom: 1px solid var(--line);
	}

	.nav-mobile-cta {
		display: inline-flex;
		width: 100%;
		margin-top: 1rem;
	}

	.hero {
		min-height: auto;
		padding: clamp(2.5rem, 8vw, 4rem) 0 clamp(2.25rem, 6vw, 3.5rem);
	}

	.hero-grid,
	.challenges-grid {
		grid-template-columns: 1fr;
	}

	.chart {
		height: min(42vw, 260px);
		width: min(100%, 280px);
		padding: 1.15rem 1rem 1rem;
	}

	.challenges-intro h2,
	.section-title,
	.partner-intro h2,
	.method-intro h2 {
		max-width: none;
	}

	.challenges-intro p,
	.method-intro p {
		max-width: none;
	}

	.method-steps {
		grid-template-columns: 1fr 1fr;
	}

	.cta-panel {
		flex-direction: column;
		align-items: stretch;
		text-align: left;
	}

	.cta-panel .btn {
		width: 100%;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.footer-brand {
		grid-column: 1 / -1;
	}
}

/* Responsive — large phones / small tablets */
@media (max-width: 640px) {
	.feature-grid,
	.partner-row,
	.solution-grid {
		grid-template-columns: 1fr;
	}

	.industry-grid,
	.industry-grid-6 {
		grid-template-columns: 1fr 1fr;
	}

	.method-steps {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.method-steps li {
		display: grid;
		grid-template-columns: auto 1fr;
		grid-template-areas:
			"num num"
			"icon title"
			"icon desc";
		column-gap: 0.95rem;
		row-gap: 0.25rem;
		align-items: start;
	}

	.method-steps li::before {
		width: 2.5rem;
	}

	.method-steps .step-num {
		grid-area: num;
		margin-top: 0.75rem;
	}

	.method-steps .step-icon {
		grid-area: icon;
		align-self: center;
		margin: 0;
	}

	.method-steps strong {
		grid-area: title;
		margin-bottom: 0;
	}

	.method-steps p {
		grid-area: desc;
	}

	.hero-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.hero-actions .btn {
		width: 100%;
	}

	.logo-row {
		gap: 1rem 1.5rem;
	}

	.logo-row span {
		font-size: 0.95rem;
	}

	.solution-card,
	.partner-cards article {
		padding: 1.2rem 1.05rem;
	}

	.industry-grid article {
		aspect-ratio: auto;
		min-height: 7.5rem;
		padding: 1rem 0.65rem;
	}

	.industry-grid h3 {
		font-size: 0.78rem;
		line-height: 1.3;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.site-footer {
		padding: 2.75rem 0 1.25rem;
	}

	.cta-copy h2 {
		max-width: none;
	}
}

/* Responsive — small phones */
@media (max-width: 420px) {
	.industry-grid,
	.industry-grid-6 {
		grid-template-columns: 1fr;
	}

	.industry-grid article {
		flex-direction: row;
		justify-content: flex-start;
		text-align: left;
		min-height: 0;
		padding: 0.9rem 1rem;
		gap: 0.85rem;
	}

	.chart {
		height: 220px;
		width: 100%;
		max-width: 240px;
		gap: 0.55rem;
	}

	.brand-name {
		font-size: 1rem;
	}

	.section-title.center {
		max-width: none;
	}
}

/* Short / landscape viewports */
@media (max-height: 520px) and (orientation: landscape) {
	.hero {
		min-height: auto;
		padding: 2rem 0;
	}

	.hero-visual {
		display: none;
	}

	.site-nav {
		max-height: 60vh;
	}
}

/* Very wide screens — keep readable measure */
@media (min-width: 1400px) {
	.hero-grid {
		gap: 5rem;
	}
}