:root {
	--navy:   #1C3650;
	--blue:   #2A5E82;
	--sky:    #7AAEC4;
	--pale:   #E8F2F7;
	--green:  #1A5C2E;
	--amber:  #7B3F00;
	--white:  #FFFFFF;
	--off:    #F7F9FC;
	--text:   #1A1A1A;
	--muted:  #4A5E6A;
	--border: #9BBDCE;
}

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

body {
	font-family: 'Source Sans 3', sans-serif;
	color: var(--text);
	line-height: 1.6;
	background: var(--white);
}

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

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

/* ── Top bar ─────────────────────────────────────────────────── */
.top-bar {
	position: fixed;
	top: 0; left: 0; right: 0;
	height: 64px;
	background: rgba(28, 54, 80, 0.97);
	backdrop-filter: blur(8px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 2rem;
	z-index: 1000;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar__logo { height: 36px; }

.top-bar__title {
	color: rgba(255,255,255,0.85);
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.01em;
}

.top-bar__right {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.btn-back {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: rgba(255,255,255,0.75);
	font-size: 0.875rem;
	font-weight: 600;
	transition: color 0.2s;
}
.btn-back:hover { color: #fff; }

/* ── Body offset for fixed bar ───────────────────────────────── */
.body-offset { padding-top: 64px; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
	padding: 60px 2rem 40px;
	background: linear-gradient(135deg, #0F2336, #1C3650, #1E4060);
	color: #fff;
	text-align: center;
}

.hero h1 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2rem, 5vw, 3.25rem);
	font-weight: 900;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.hero__subtitle {
	font-size: clamp(1rem, 2vw, 1.2rem);
	opacity: 0.82;
	max-width: 680px;
	margin: 0 auto 2rem;
	font-weight: 300;
}

.hero__icon {
	font-size: 4.5rem;
	color: var(--sky);
	margin-bottom: 1.5rem;
}

.hero__stats {
	display: flex;
	justify-content: center;
	gap: 3rem;
	margin-top: 2.5rem;
	flex-wrap: wrap;
}

.hero__stat { text-align: center; }
.hero__stat .num {
	display: block;
	font-size: 2.25rem;
	font-weight: 700;
	color: var(--sky);
}
.hero__stat .lbl {
	font-size: 0.85rem;
	opacity: 0.7;
}

/* ── Badges ──────────────────────────────────────────────────── */
.badges {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-top: 1.75rem;
}

.badge {
	background: rgba(255,255,255,0.13);
	border: 1px solid rgba(255,255,255,0.28);
	border-radius: 100px;
	padding: 0.35rem 1rem;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}

/* ── Container ───────────────────────────────────────────────── */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* ── Sections ────────────────────────────────────────────────── */
.section { padding: 2rem 0; }

.section--pale { background: var(--pale); }

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

.section-header {
	margin-bottom: 1.1rem;
}

.category-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	text-transform: uppercase;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--sky);
	margin-bottom: 0.6rem;
}

.section--navy .category-tag { color: var(--sky); }

.section-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(1.6rem, 3vw, 2.25rem);
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 0.5rem;
}

.section--navy .section-title { color: #fff; }

.section-desc {
	font-size: 1.25rem;
	color: var(--muted);
}

.section--navy .section-desc { color: rgba(255,255,255,0.65); }

/* ── Product cards (index) ───────────────────────────────────── */
.prod-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.25rem;
}

.prod-card {
	background: #fff;
	border-radius: 12px 12px 0px 0px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,0.07);
	border: 1px solid #dae7ed;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
	display: flex;
	flex-direction: column;
}

.prod-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 28px rgba(0,0,0,0.14);
}

.prod-card__head {
	padding: 1.1rem 1.4rem;
	background: var(--navy);
	color: #fff;
	display: flex;
	align-items: center;
	gap: 0.7rem;
}

.prod-card__head.blue  { background: var(--blue); }
.prod-card__head.green { background: var(--green); }

.prod-card__head i { font-size: 1.4rem; flex-shrink: 0; }

.prod-card__head strong {
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.3;
}

.prod-card__body {
	padding: 1.1rem 1.4rem 1.4rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.prod-card__body p {
	font-size: 1.08rem;
	color: var(--muted);
	line-height: 1.6;
	flex: 1;
	margin-bottom: 1.1rem;
}

.btn-primary {
	display: inline-block;
	background: var(--sky);
	color: var(--navy);
	font-weight: 700;
	font-size: 0.875rem;
	padding: 0.45rem 1.1rem;
	border-radius: 4px;
	transition: background 0.2s, color 0.2s;
	align-self: flex-start;
}

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

/* ── Feature cards (product pages) ──────────────────────────── */
.feat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: 1.1rem;
}

.feat-card {
	background: #fff;
	border-radius: 10px;
	padding: 1.4rem;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
	border: 1px solid rgba(0,0,0,0.04);
}

.feat-card i {
	font-size: 1.6rem;
	color: var(--blue);
	margin-bottom: 0.7rem;
	display: block;
}

.feat-card h4 {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 0.45rem;
}

.feat-card p {
	font-size: 0.85rem;
	color: var(--muted);
	line-height: 1.6;
}

/* ── Content section (docx prose) ───────────────────────────── */
.content-prose {
	max-width: 820px;
	margin: 0 auto;
}

.content-prose h2, .content-prose .section-title {
	font-family: 'Playfair Display', serif;
	font-size: 1.75rem;
	color: var(--navy);
	margin: 2.5rem 0 0.75rem;
}

.content-prose h3 {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--navy);
	margin: 2rem 0 0.6rem;
	padding-bottom: 0.35rem;
	border-bottom: 2px solid var(--pale);
}

.content-prose h4 {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--blue);
	margin: 1.5rem 0 0.4rem;
}

.content-prose p {
	margin-bottom: 1.1rem;
	line-height: 1.8;
	color: var(--text);
}

.content-prose p.lead {
	font-size: 1.1rem;
	font-weight: 300;
	color: var(--navy);
	border-left: 4px solid var(--sky);
	padding-left: 1rem;
	margin-bottom: 1.5rem;
}

.content-prose ul {
	margin: 0.5rem 0 1.1rem 1.5rem;
}

.content-prose li {
	margin-bottom: 0.4rem;
	line-height: 1.7;
	color: var(--text);
}

/* ── CTA / Footer ────────────────────────────────────────────── */
.site-footer {
	background: var(--navy);
	color: rgba(255,255,255,0.65);
	text-align: center;
	padding: 3.5rem 2rem;
	font-size: 0.9rem;
}

.site-footer a { color: var(--sky); }
.site-footer a:hover { color: #fff; }

.footer-cta {
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.footer-cta .btn-contact {
	display: inline-block;
	background: var(--sky);
	color: var(--navy);
	font-weight: 700;
	padding: 0.6rem 1.5rem;
	border-radius: 6px;
	transition: background 0.2s;
}
.footer-cta .btn-contact:hover { background: #fff; }

/* ── Scroll animations ───────────────────────────────────────── */
.animate-in {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.45s ease, transform 0.45s ease;
}
.animate-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
	.top-bar { padding: 0 1rem; }
	.top-bar__title { display: none; }
	.hero { padding: 80px 1rem 50px; }
	.hero__stats { gap: 1.5rem; }
	.container { padding: 0 1rem; }
	.section { padding: 3.5rem 0; }
	.prod-grid { grid-template-columns: 1fr; }
	.feat-grid { grid-template-columns: 1fr; }
}
