/* ==========================================================================
   Clever Operators Theme  -  Main Stylesheet
   ========================================================================== */

/* ---------- Custom Properties ---------- */
:root {
	--co-navy: #0F1C2E;
	--co-navy-light: #162438;
	--co-white: #FFFFFF;
	--co-teal: #2BA5B5;
	--co-teal-deep: #1A7A8A;
	--co-teal-light: #E6F5F7;
	--co-grey-warm: #6B7280;
	--co-grey-light: #F3F4F6;
	--co-grey-border: #E5E7EB;
	--co-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--co-radius: 8px;
	--co-radius-lg: 12px;
	--co-max-width: 1160px;
	--co-transition: 0.2s ease;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

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

body {
	font-family: var(--co-font);
	font-size: 17px;
	line-height: 1.6;
	color: var(--co-navy);
	background: var(--co-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

a {
	color: var(--co-teal-deep);
	text-decoration: none;
	transition: color var(--co-transition);
}

a:hover {
	color: var(--co-teal);
}

ul, ol {
	list-style: none;
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1.25;
	font-weight: 700;
	color: var(--co-navy);
}

h1 { font-size: clamp(2.25rem, 5vw, 3rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); font-weight: 600; }

p + p { margin-top: 1em; }


/* ---------- Layout ---------- */
.container {
	max-width: var(--co-max-width);
	margin: 0 auto;
	padding: 0 24px;
}

.section {
	padding: 80px 24px;
	max-width: var(--co-max-width);
	margin: 0 auto;
}

.section-white { background: var(--co-white); }
.section-light { background: var(--co-grey-light); }
.section-teal  { background: var(--co-teal-light); }
.section-dark  { background: var(--co-navy); color: var(--co-white); }
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark p { color: var(--co-white); }

.section-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--co-teal-deep);
	margin-bottom: 12px;
}

.section-heading {
	margin-bottom: 16px;
}

.section-lead {
	font-size: 1.125rem;
	color: var(--co-grey-warm);
	max-width: 640px;
	margin-bottom: 48px;
}

.section-dark .section-tag { color: var(--co-teal); }
.section-dark .section-lead { color: rgba(255, 255, 255, 0.7); }


/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--co-font);
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1;
	padding: 14px 28px;
	border-radius: var(--co-radius);
	border: 2px solid transparent;
	cursor: pointer;
	transition: all var(--co-transition);
	text-decoration: none;
	white-space: nowrap;
}

.btn-primary {
	background: var(--co-teal);
	color: var(--co-white);
	border-color: var(--co-teal);
}

.btn-primary:hover {
	background: var(--co-teal-deep);
	border-color: var(--co-teal-deep);
	color: var(--co-white);
}

.btn-outline {
	background: transparent;
	color: var(--co-white);
	border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
	border-color: var(--co-white);
	color: var(--co-white);
}

.btn-outline-dark {
	background: transparent;
	color: var(--co-navy);
	border-color: var(--co-grey-border);
}

.btn-outline-dark:hover {
	border-color: var(--co-navy);
}

.btn-lg {
	padding: 16px 32px;
	font-size: 1rem;
}


/* ---------- Navigation ---------- */
.site-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(15, 28, 46, 0.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: background 0.2s ease;
}

.site-nav.scrolled {
	background: rgba(15, 28, 46, 0.98);
}

.nav-inner {
	max-width: var(--co-max-width);
	margin: 0 auto;
	padding: 0 24px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.nav-logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.nav-logo img {
	height: 40px;
	width: auto;
}

.nav-links {
	display: flex;
	align-items: center;
	flex: 1;
	justify-content: center;
}

.nav-menu-list {
	display: flex;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-menu-list a {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.9375rem;
	font-weight: 500;
	transition: color var(--co-transition);
}

.nav-menu-list a:hover {
	color: var(--co-white);
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
}

.btn-nav-cta {
	padding: 10px 20px;
	font-size: 0.875rem;
}

/* Hamburger */
.nav-hamburger {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	flex-direction: column;
	gap: 5px;
}

.hamburger-line {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--co-white);
	border-radius: 2px;
	transition: all var(--co-transition);
}

/* Mobile nav panel */
.nav-mobile {
	display: none;
	background: var(--co-navy);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 24px;
}

.nav-mobile[aria-hidden="false"],
.nav-mobile.open {
	display: block;
}

.nav-mobile-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.nav-mobile-list a {
	display: block;
	padding: 12px 0;
	color: rgba(255, 255, 255, 0.75);
	font-size: 1.0625rem;
	font-weight: 500;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-mobile-list a:hover {
	color: var(--co-white);
}

.nav-mobile-cta {
	margin-top: 20px;
}


/* ---------- Hero ---------- */
.hero {
	position: relative;
	background: var(--co-navy);
	padding: 160px 24px 100px;
	text-align: center;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(ellipse at 50% 0%, rgba(43, 165, 181, 0.08) 0%, transparent 60%);
	pointer-events: none;
}

.hero-content {
	position: relative;
	max-width: 720px;
	margin: 0 auto;
}

.hero-tagline-small {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--co-teal);
	margin-bottom: 24px;
}

.hero h1 {
	color: var(--co-white);
	margin-bottom: 24px;
	font-size: clamp(2.5rem, 6vw, 3.5rem);
}

.hero-sub {
	font-size: 1.1875rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.7);
	max-width: 560px;
	margin: 0 auto 40px;
}

.hero-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.hero-proof {
	display: flex;
	justify-content: center;
	gap: 32px;
	margin-top: 56px;
	flex-wrap: wrap;
}

.hero-proof-item {
	text-align: center;
}

.hero-proof-num {
	display: block;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--co-teal);
}

.hero-proof-label {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.5);
	margin-top: 4px;
}


/* ---------- Problem Strip ---------- */
.problem-strip {
	padding: 80px 24px;
	max-width: var(--co-max-width);
	margin: 0 auto;
}

.problem-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: start;
}

.problem-quote {
	font-size: 1.625rem;
	font-weight: 600;
	line-height: 1.35;
	color: var(--co-navy);
	position: relative;
	padding-left: 24px;
	border-left: 3px solid var(--co-teal);
}

.problem-text p {
	color: var(--co-grey-warm);
	font-size: 1.0625rem;
	line-height: 1.7;
}


/* ---------- Steps / How It Works ---------- */
.steps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.step-card {
	padding: 32px;
	background: var(--co-white);
	border-radius: var(--co-radius-lg);
	border: 1px solid var(--co-grey-border);
}

.step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--co-teal-light);
	color: var(--co-teal-deep);
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.step-title {
	margin-bottom: 12px;
}

.step-desc {
	color: var(--co-grey-warm);
	font-size: 0.9375rem;
	line-height: 1.6;
}


/* ---------- Service Cards ---------- */
.services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

.service-card {
	padding: 40px;
	background: var(--co-white);
	border-radius: var(--co-radius-lg);
	border: 1px solid var(--co-grey-border);
}

.service-card-tag {
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--co-teal-deep);
	margin-bottom: 12px;
}

.service-card h3 {
	margin-bottom: 16px;
}

.service-card-desc {
	color: var(--co-grey-warm);
	margin-bottom: 24px;
	line-height: 1.7;
}

.service-card-meta {
	display: flex;
	gap: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--co-grey-border);
	font-size: 0.875rem;
	color: var(--co-grey-warm);
}

.service-card-meta strong {
	color: var(--co-navy);
	font-weight: 600;
}


/* ---------- Testimonials ---------- */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.testimonial-card {
	padding: 32px;
	background: var(--co-white);
	border-radius: var(--co-radius-lg);
	border: 1px solid var(--co-grey-border);
}

.testimonial-stars {
	color: #F59E0B;
	font-size: 1.125rem;
	margin-bottom: 16px;
}

.testimonial-quote {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: var(--co-grey-warm);
	margin-bottom: 24px;
	font-style: normal;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.author-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.875rem;
	flex-shrink: 0;
}

.author-name {
	font-weight: 600;
	font-size: 0.875rem;
	color: var(--co-navy);
}

.author-biz {
	font-size: 0.8125rem;
	color: var(--co-grey-warm);
}


/* ---------- CTA Section (dark) ---------- */
.cta-dark {
	position: relative;
	background: var(--co-navy);
	padding: 80px 24px;
	text-align: center;
	overflow: hidden;
}

.cta-dark::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(43, 165, 181, 0.06) 0%, transparent 70%);
	pointer-events: none;
}

.cta-dark-inner {
	position: relative;
	max-width: 600px;
	margin: 0 auto;
}

.cta-dark h2 {
	color: var(--co-white);
	margin-bottom: 16px;
}

.cta-dark p {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 32px;
	font-size: 1.0625rem;
}


/* ---------- Blog Cards ---------- */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.blog-card {
	background: var(--co-white);
	border-radius: var(--co-radius-lg);
	border: 1px solid var(--co-grey-border);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.blog-card-image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.blog-card-body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.blog-tag {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--co-teal-deep);
	margin-bottom: 8px;
}

.blog-title {
	font-size: 1.125rem;
	margin-bottom: 12px;
}

.blog-title a { color: inherit; }
.blog-title a:hover { color: var(--co-teal-deep); }

.blog-excerpt {
	font-size: 0.9375rem;
	color: var(--co-grey-warm);
	line-height: 1.6;
	flex: 1;
}

.blog-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid var(--co-grey-border);
	font-size: 0.8125rem;
}

.blog-read-time {
	color: var(--co-grey-warm);
}

.blog-link {
	font-weight: 600;
	color: var(--co-teal-deep);
}


/* ---------- FAQ ---------- */
.faq-list {
	max-width: 720px;
	margin: 0 auto;
}

.faq-item {
	border-bottom: 1px solid var(--co-grey-border);
}

.faq-q {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 20px 0;
	background: none;
	border: none;
	cursor: pointer;
	font-family: var(--co-font);
	font-size: 1.0625rem;
	font-weight: 600;
	color: var(--co-navy);
	text-align: left;
}

.faq-chevron {
	font-size: 1.25rem;
	transition: transform var(--co-transition);
	color: var(--co-grey-warm);
}

.faq-q[aria-expanded="true"] .faq-chevron {
	transform: rotate(180deg);
}

.faq-a {
	display: none;
	overflow: hidden;
}

.faq-a.open {
	display: block;
}

.faq-a-inner {
	padding: 0 0 20px;
	color: var(--co-grey-warm);
	font-size: 0.9375rem;
	line-height: 1.7;
}


/* ---------- Footer ---------- */
.site-footer {
	background: var(--co-navy);
	color: rgba(255, 255, 255, 0.6);
	padding: 64px 0 0;
}

.footer-inner {
	max-width: var(--co-max-width);
	margin: 0 auto;
	padding: 0 24px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
	display: flex;
	align-items: center;
	margin-bottom: 16px;
}

.footer-logo img {
	height: 36px;
	width: auto;
}

.footer-tagline {
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 20px;
	color: rgba(255, 255, 255, 0.5);
}

.footer-social {
	display: flex;
	gap: 12px;
}

.footer-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.6);
	transition: all var(--co-transition);
}

.footer-social-link:hover {
	background: var(--co-teal);
	color: var(--co-white);
}

.footer-col-heading {
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--co-white);
	margin-bottom: 20px;
}

.footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.9375rem;
	transition: color var(--co-transition);
}

.footer-links a:hover {
	color: var(--co-white);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px 0 72px;
	font-size: 0.8125rem;
}

.footer-bottom a {
	color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a:hover {
	color: var(--co-white);
}


/* ---------- Email Capture ---------- */
.email-capture {
	background: var(--co-grey-light);
	border-radius: var(--co-radius-lg);
	padding: 40px;
	text-align: center;
	margin: 48px 0;
}

.email-capture-heading {
	font-size: 1.25rem;
	margin-bottom: 8px;
}

.email-capture-sub {
	color: var(--co-grey-warm);
	font-size: 0.9375rem;
	margin-bottom: 24px;
}


/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
	padding: 16px 0;
	font-size: 0.8125rem;
}

.breadcrumbs ol {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.breadcrumbs a {
	color: var(--co-grey-warm);
}

.breadcrumbs a:hover {
	color: var(--co-teal-deep);
}

.breadcrumb-sep {
	color: var(--co-grey-warm);
	margin: 0 4px;
}

.breadcrumbs [aria-current] {
	color: var(--co-navy);
	font-weight: 500;
}


/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
	background: var(--co-navy);
	padding: 140px 24px 60px;
	text-align: center;
}

.page-hero h1 {
	color: var(--co-white);
	margin-bottom: 16px;
}

.page-hero-sub {
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.125rem;
	max-width: 560px;
	margin: 0 auto;
}


/* ---------- Single Post ---------- */
.single-content {
	max-width: 720px;
	margin: 0 auto;
	padding: 48px 24px 80px;
}

.single-meta {
	display: flex;
	gap: 16px;
	font-size: 0.8125rem;
	color: var(--co-grey-warm);
	margin-bottom: 32px;
}

.single-content h1 {
	margin-bottom: 16px;
}

.single-body {
	font-size: 1.0625rem;
	line-height: 1.8;
	color: #374151;
}

.single-body h2 {
	margin-top: 48px;
	margin-bottom: 16px;
}

.single-body h3 {
	margin-top: 32px;
	margin-bottom: 12px;
}

.single-body p {
	margin-bottom: 1.25em;
}

.single-body ul,
.single-body ol {
	margin: 1.25em 0;
	padding-left: 1.5em;
	list-style: disc;
}

.single-body ol { list-style: decimal; }

.single-body li {
	margin-bottom: 0.5em;
}

.single-body blockquote {
	border-left: 3px solid var(--co-teal);
	padding: 16px 24px;
	margin: 2em 0;
	background: var(--co-grey-light);
	border-radius: 0 var(--co-radius) var(--co-radius) 0;
	font-style: italic;
	color: var(--co-grey-warm);
}

.single-body code {
	background: var(--co-grey-light);
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 0.9em;
}

.single-body pre {
	background: var(--co-navy);
	color: var(--co-white);
	padding: 24px;
	border-radius: var(--co-radius);
	overflow-x: auto;
	margin: 2em 0;
}

.single-body pre code {
	background: none;
	padding: 0;
	color: inherit;
}

.single-body img {
	border-radius: var(--co-radius);
	margin: 2em 0;
}


/* ---------- Author Box ---------- */
.author-box {
	display: flex;
	gap: 20px;
	padding: 32px;
	background: var(--co-grey-light);
	border-radius: var(--co-radius-lg);
	margin-top: 48px;
}

.author-box-avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--co-teal);
	color: var(--co-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.25rem;
	flex-shrink: 0;
}

.author-box-name {
	font-weight: 600;
	margin-bottom: 4px;
}

.author-box-bio {
	font-size: 0.9375rem;
	color: var(--co-grey-warm);
	line-height: 1.6;
}


/* ---------- Blog Archive ---------- */
.archive-header {
	background: var(--co-navy);
	padding: 140px 24px 60px;
	text-align: center;
}

.archive-header h1 {
	color: var(--co-white);
	margin-bottom: 12px;
}

.archive-header p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.0625rem;
}

.archive-grid {
	max-width: var(--co-max-width);
	margin: 0 auto;
	padding: 48px 24px 80px;
}

.archive-posts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}


/* ---------- What We Build List ---------- */
.build-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.build-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 16px 20px;
	background: var(--co-white);
	border-radius: var(--co-radius);
	border: 1px solid var(--co-grey-border);
	font-size: 0.9375rem;
}

.build-icon {
	color: var(--co-teal);
	font-size: 1.125rem;
	flex-shrink: 0;
	margin-top: 1px;
}


/* ---------- Process Timeline ---------- */
.timeline {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	position: relative;
}

.timeline::before {
	content: '';
	position: absolute;
	top: 28px;
	left: 40px;
	right: 40px;
	height: 2px;
	background: var(--co-teal-light);
}

.timeline-step {
	text-align: center;
	position: relative;
}

.timeline-dot {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--co-teal-light);
	color: var(--co-teal-deep);
	font-weight: 700;
	font-size: 0.875rem;
	margin-bottom: 16px;
	position: relative;
	z-index: 1;
}

.timeline-title {
	font-weight: 600;
	margin-bottom: 8px;
}

.timeline-desc {
	font-size: 0.875rem;
	color: var(--co-grey-warm);
	line-height: 1.5;
}


/* ---------- Values Grid ---------- */
.values-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.value-card {
	padding: 32px;
	background: var(--co-white);
	border-radius: var(--co-radius-lg);
	border: 1px solid var(--co-grey-border);
}

.value-card h3 {
	margin-bottom: 12px;
}

.value-card p {
	color: var(--co-grey-warm);
	font-size: 0.9375rem;
	line-height: 1.6;
}


/* ---------- Contact ---------- */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

.contact-info h2 {
	margin-bottom: 16px;
}

.contact-info p {
	color: var(--co-grey-warm);
	margin-bottom: 24px;
	line-height: 1.7;
}

.expect-list {
	list-style: none;
	padding: 0;
	margin: 24px 0;
}

.expect-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 12px 0;
	color: var(--co-grey-warm);
	font-size: 0.9375rem;
	line-height: 1.5;
}

.expect-icon {
	color: var(--co-teal);
	flex-shrink: 0;
	margin-top: 2px;
}


/* ---------- 404 ---------- */
.page-404 {
	text-align: center;
	padding: 160px 24px 100px;
}

.page-404 h1 {
	font-size: 5rem;
	color: var(--co-teal);
	margin-bottom: 16px;
}

.page-404 p {
	color: var(--co-grey-warm);
	margin-bottom: 32px;
	font-size: 1.125rem;
}


/* ---------- Related Posts ---------- */
.related-posts {
	margin-top: 64px;
	padding-top: 48px;
	border-top: 1px solid var(--co-grey-border);
}

.related-posts h2 {
	margin-bottom: 24px;
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}


/* ---------- Inline CTA (in posts) ---------- */
.inline-cta {
	background: var(--co-teal-light);
	border-radius: var(--co-radius-lg);
	padding: 32px;
	margin: 48px 0;
	text-align: center;
}

.inline-cta h3 {
	margin-bottom: 12px;
}

.inline-cta p {
	color: var(--co-grey-warm);
	margin-bottom: 20px;
}


/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}

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

	.archive-posts {
		grid-template-columns: 1fr 1fr;
	}

	.timeline {
		grid-template-columns: repeat(2, 1fr);
	}

	.timeline::before {
		display: none;
	}
}

@media (max-width: 768px) {
	body { font-size: 16px; }

	.section { padding: 56px 20px; }

	/* Nav */
	.nav-links { display: none; }
	.btn-nav-cta { display: none; }
	.nav-hamburger { display: flex; }

	/* Hero */
	.hero { padding: 130px 20px 72px; }
	.hero-actions { flex-direction: column; align-items: center; }
	.hero-proof { flex-direction: column; gap: 20px; }

	/* Problem */
	.problem-inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	/* Steps */
	.steps-grid { grid-template-columns: 1fr; }

	/* Services */
	.services-grid { grid-template-columns: 1fr; }

	/* Testimonials */
	.testimonials-grid { grid-template-columns: 1fr; }

	/* Blog */
	.blog-grid { grid-template-columns: 1fr; }
	.archive-posts { grid-template-columns: 1fr; }

	/* Build list */
	.build-list { grid-template-columns: 1fr; }

	/* Timeline */
	.timeline { grid-template-columns: 1fr; }

	/* Values */
	.values-grid { grid-template-columns: 1fr; }

	/* Contact */
	.contact-grid { grid-template-columns: 1fr; }

	/* Footer */
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 8px;
		text-align: center;
	}

	/* Related */
	.related-grid { grid-template-columns: 1fr; }

	/* Mobile sticky CTA */
	.mobile-sticky-cta {
		display: flex;
	}
}

/* Mobile sticky CTA bar */
.mobile-sticky-cta {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 999;
	background: var(--co-navy);
	padding: 12px 20px;
	justify-content: center;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-sticky-cta .btn {
	width: 100%;
	max-width: 400px;
	text-align: center;
}

@media (max-width: 480px) {
	.hero { padding: 110px 20px 56px; }
}
