/* ================================
   RESET & BASE
=================================== */

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

html, body {
    height: 100%;
}

body {
    font-family: 'Albert Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: linear-gradient(135deg, #0D1B2A 0%, #0F1E2D 100%);
    color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Generic links */
a {
    color: inherit;
    text-decoration: none;
}

/* ================================
   LAYOUT HELPERS (PHP BACKBONE)
=================================== */

.bz-main {
    /* Push content below fixed header */
    padding-top: 92px;
    padding-bottom: 4rem;
    min-height: calc(100vh - 220px);
}

.bz-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Generic section scaffolding for inner pages */
.bz-section {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    backdrop-filter: blur(10px);
}

.bz-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.bz-section-intro {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 720px;
}

/* Simple grid helper */
.bz-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.6rem;
    margin-top: 1.6rem;
}

/* Card style used for services/blocks */
.bz-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.6rem 1.8rem;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}

.bz-card h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.bz-card p {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.78);
}

/* Buttons used by various pages */
.bz-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.8rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    font-family: inherit;
    white-space: nowrap;
}

.bz-btn-primary {
    background: linear-gradient(135deg, #00C2A8 0%, #00D67F 100%);
    color: #0D1B2A;
    box-shadow: 0 14px 32px rgba(0, 194, 168, 0.45);
}

.bz-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 194, 168, 0.6);
}

.bz-btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.bz-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.07);
}

/* ================================
   HEADER (FORGE STYLE)
=================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(13, 27, 42, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00C2A8 0%, #00D67F 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 194, 168, 0.3);
}

.header-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.header-logo-text .highlight {
    color: #00C2A8;
}

/* Nav */
.header-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.header-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    position: relative;
    padding-bottom: 0.2rem;
}

.header-nav a:hover {
    color: #00C2A8;
}

.header-nav a.active {
    color: #00C2A8;
}

.header-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -0.4rem;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00C2A8, #00D67F);
    border-radius: 1px;
}

/* Header CTA */
.header-cta {
    background: linear-gradient(135deg, #00C2A8 0%, #00D67F 100%);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 194, 168, 0.3);
}

/* ================================
   CONTACT FORM (contact.php)
=================================== */

.bz-contact-form {
    margin-top: 1.8rem;
    max-width: 680px;
}

.bz-contact-form .bz-grid {
    margin-top: 0;
    gap: 1.2rem;
}

.bz-field {
    margin-bottom: 1.2rem;
}

.bz-field label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.bz-field input,
.bz-field textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(15, 23, 42, 0.85);
    color: #ffffff;
    font-family: inherit;
    font-size: 0.96rem;
    transition: all 0.2s ease;
}

.bz-field input::placeholder,
.bz-field textarea::placeholder {
    color: rgba(148, 163, 184, 0.9);
}

.bz-field input:focus,
.bz-field textarea:focus {
    outline: none;
    border-color: #00C2A8;
    box-shadow: 0 0 0 2px rgba(0, 194, 168, 0.5);
}

/* ================================
   FOOTER (FORGE STYLE)
=================================== */

.footer {
    position: relative;
    background: linear-gradient(135deg, #0D1B2A 0%, #0F1E2D 100%);
    color: #ffffff;
    overflow: hidden;
    box-shadow:
        0 -8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 3rem;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 194, 168, 0.3) 25%,
        rgba(0, 214, 127, 0.3) 75%,
        transparent 100%
    );
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 1.5rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

/* Brand block */

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00C2A8 0%, #00D67F 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 194, 168, 0.3);
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.footer-logo-text .highlight {
    color: #00C2A8;
}

.footer-motto {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    font-weight: 500;
    font-style: italic;
}

.footer-description {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.93rem;
    line-height: 1.7;
    max-width: 320px;
}

/* Footer link columns */

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
}

.footer-column-title {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #00C2A8, #00D67F);
    border-radius: 999px;
}

.footer-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-link:hover {
    color: #00C2A8;
}

/* Contact col */

.footer-contact .footer-link {
    display: block;
}

/* Bottom bar */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    flex-wrap: wrap;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-social a {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
    color: #00C2A8;
    transform: translateY(-1px);
}

/* ================================
   RESPONSIVE
=================================== */

@media (max-width: 900px) {
    .header-container {
        padding: 0.85rem 1.25rem;
        flex-wrap: wrap;
    }

    .header-nav {
        gap: 1.1rem;
        font-size: 0.9rem;
    }

    .bz-container {
        padding: 1.5rem 1.25rem 3rem;
    }

    .bz-section {
        padding: 2rem 1.5rem;
    }

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

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

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .header-nav {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .header-cta {
        align-self: flex-start;
    }

    .bz-main {
        padding-top: 104px;
    }

    .bz-section-title {
        font-size: 1.8rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-brand,
    .footer-contact {
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .header-logo-text {
        font-size: 1.25rem;
    }

    .footer-container {
        padding: 2.3rem 1.25rem 1.3rem;
    }

    .footer-description {
        max-width: 100%;
    }
}
/* ============================
   Layout & Global Helpers
   ============================ */

section {
	padding: 4rem 1.5rem;
}

.hero-section,
.pillars-section,
.services-section {
	scroll-margin-top: 80px; /* nicer anchor scrolling if you have a fixed header */
}

.hero-container,
.pillars-container,
.services-container {
	max-width: 1080px;
	margin: 0 auto;
}

/* Reusable section header pattern */
.section-header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 3rem;
}

.section-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.2rem 0.9rem;
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: rgba(31, 41, 55, 0.06);
	color: #374151;
	margin-bottom: 0.75rem;
}

.section-title {
	font-size: clamp(1.9rem, 2.2vw + 1.2rem, 2.4rem);
	line-height: 1.1;
	margin-bottom: 0.75rem;
	color: #111827;
}

.section-subtitle {
	font-size: 1rem;
	line-height: 1.6;
	color: #4b5563;
}

/* ============================
   Hero
   ============================ */

.hero-section {
	background: radial-gradient(circle at top left, #1f2937 0, #020617 55%);
	color: #f9fafb;
	padding-top: 5.5rem;
	padding-bottom: 5.5rem;
}

.hero-section.hero-section--secondary {
	background: #020617;
	padding-top: 2.5rem;
	padding-bottom: 3rem;
}

.hero-container {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.hero-topline {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 1.75rem;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(248, 250, 252, 0.08);
	border: 1px solid rgba(148, 163, 184, 0.5);
	border-radius: 999px;
	padding: 0.2rem 0.9rem;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #e5e7eb;
}

.hero-tagline {
	font-size: 0.95rem;
	color: #e5e7eb;
}

.hero-title {
	font-size: clamp(2.4rem, 3.3vw + 1.5rem, 3.4rem);
	line-height: 1.05;
	font-weight: 800;
	margin-bottom: 1rem;
	color: #f9fafb;
}

.hero-title .highlight {
	background: linear-gradient(120deg, #fbbf24, #f97316, #ec4899);
	-webkit-background-clip: text;
	color: transparent;
}

.hero-subtitle {
	max-width: 40rem;
	font-size: 1rem;
	line-height: 1.7;
	color: #e5e7eb;
	margin-bottom: 2rem;
}

.hero-cta-group {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-bottom: 2.5rem;
}

.hero-cta-primary,
.hero-cta-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.8rem 1.4rem;
	border-radius: 999px;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	transition:
		background 0.18s ease,
		color 0.18s ease,
		box-shadow 0.18s ease,
		transform 0.08s ease;
	cursor: pointer;
}

.hero-cta-primary {
	background: linear-gradient(135deg, #f97316, #f59e0b);
	color: #111827;
	box-shadow: 0 14px 30px rgba(248, 181, 61, 0.32);
}

.hero-cta-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 18px 38px rgba(248, 181, 61, 0.45);
}

.hero-cta-secondary {
	background: transparent;
	color: #e5e7eb;
	border: 1px solid rgba(148, 163, 184, 0.6);
}

.hero-cta-secondary:hover {
	background: rgba(15, 23, 42, 0.9);
}

/* Bottom hero band */

.hero-bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	align-items: stretch;
	border-top: 1px solid rgba(148, 163, 184, 0.35);
	padding-top: 1.75rem;
	margin-top: 1.5rem;
}

.hero-pill {
	flex: 1.2;
	min-width: 220px;
	border-radius: 0.9rem;
	padding: 0.9rem 1rem;
	background: radial-gradient(circle at top left, rgba(248, 181, 61, 0.18), transparent 60%);
	border: 1px solid rgba(248, 181, 61, 0.3);
	font-size: 0.92rem;
	color: #f9fafb;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.hero-pill .pill-label {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.11em;
	color: #fed7aa;
}

.hero-pill .pill-value {
	font-weight: 500;
}

.hero-stats {
	flex: 2;
	min-width: 260px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 0.9rem;
}

.stat-item {
	border-radius: 0.9rem;
	padding: 0.75rem 0.9rem;
	background: rgba(15, 23, 42, 0.9);
	border: 1px solid rgba(148, 163, 184, 0.4);
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.stat-number {
	font-size: 1.3rem;
	font-weight: 700;
	color: #fbbf24;
}

.stat-label {
	font-size: 0.8rem;
	color: #9ca3af;
}

/* Secondary hero CTA band */

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

.hero-section.hero-section--secondary .hero-cta-secondary {
	border-color: rgba(148, 163, 184, 0.7);
	color: #e5e7eb;
	background: rgba(15, 23, 42, 0.95);
	padding-inline: 1.6rem;
}

/* ============================
   Pillars
   ============================ */

.pillars-section {
	background: #f9fafb;
}

.pillars-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.8rem;
}

.pillar-card {
	background: #ffffff;
	border-radius: 1.2rem;
	padding: 1.6rem 1.4rem 1.5rem;
	border: 1px solid #e5e7eb;
	box-shadow: 0 14px 40px rgba(15, 23, 42, 0.04);
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	position: relative;
	overflow: hidden;
}

.pillar-card::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0.06;
	pointer-events: none;
}

/* Slightly different hues per pillar */

.pillar-card.protect::before {
	background: radial-gradient(circle at top left, #22c55e, transparent 55%);
}

.pillar-card.profit::before {
	background: radial-gradient(circle at top left, #f97316, transparent 55%);
}

.pillar-card.prosper::before {
	background: radial-gradient(circle at top left, #6366f1, transparent 55%);
}

.pillar-icon {
	width: 2.3rem;
	height: 2.3rem;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #0f172a;
	color: #f9fafb;
	font-size: 1.2rem;
	margin-bottom: 0.2rem;
}

.pillar-title {
	font-size: 1.2rem;
	font-weight: 700;
	color: #111827;
	margin-bottom: 0.1rem;
}

.pillar-description {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #4b5563;
}

.pillar-features {
	list-style: none;
	padding: 0;
	margin: 0.4rem 0 0;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.pillar-features li {
	position: relative;
	padding-left: 1.1rem;
	font-size: 0.9rem;
	color: #4b5563;
}

.pillar-features li::before {
	content: "•";
	position: absolute;
	left: 0.15rem;
	color: #9ca3af;
}

/* ============================
   Services
   ============================ */

.services-section {
	background: #020617;
	color: #e5e7eb;
}

.services-section .section-title {
	color: #f9fafb;
}

.services-section .section-subtitle {
	color: #cbd5f5;
}

.services-section .section-badge {
	background: rgba(30, 64, 175, 0.25);
	color: #bfdbfe;
	border: 1px solid rgba(129, 140, 248, 0.55);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.6rem;
}

.service-card {
	background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.17), rgba(15, 23, 42, 0.96));
	border-radius: 1.1rem;
	padding: 1.4rem 1.3rem 1.3rem;
	border: 1px solid rgba(148, 163, 184, 0.45);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.8);
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	transition:
		transform 0.12s ease-out,
		box-shadow 0.12s ease-out,
		border-color 0.12s ease-out;
}

.service-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.95);
	border-color: rgba(251, 191, 36, 0.75);
}

.service-icon {
	width: 2.2rem;
	height: 2.2rem;
	border-radius: 0.8rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(15, 23, 42, 0.92);
	font-size: 1.2rem;
}

.service-title {
	font-size: 1.05rem;
	font-weight: 600;
	color: #f9fafb;
}

.service-description {
	font-size: 0.9rem;
	line-height: 1.7;
	color: #e5e7eb;
}

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

@media (max-width: 960px) {
	.pillars-grid,
	.services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.hero-section {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	.hero-bottom {
		border-top: 1px solid rgba(148, 163, 184, 0.35);
	}

	.pillars-grid,
	.services-grid {
		grid-template-columns: 1fr;
	}

	.section-header {
		text-align: left;
	}

	.section-title {
		font-size: 1.75rem;
	}

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

	.hero-cta-primary,
	.hero-cta-secondary {
		justify-content: center;
		width: 100%;
	}
}