/* ==========================================================================
   1. GLOBAL STYLES & RESET
   ========================================================================== */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body {
	background: #0f172a;
	color: #e5e7eb;
	line-height: 1.6;
}
a {
	color: inherit;
	text-decoration: none;
}

/* ==========================================================================
   2. HEADER & LOGO AREA
   ========================================================================== */
header {
	background: linear-gradient(135deg, #1e293b, #020617);
	padding: 16px 24px;
	position: sticky;
	top: 0;
	z-index: 10;
	border-bottom: 1px solid #1f2937;
}
.header-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.logo-container {
	display: flex;
	align-items: center;
	gap: 10px;
}
.logo-icon {
	background: #22c55e;
	color: #020617;
	font-weight: 800;
	font-size: 1.1rem;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}
.logo-text {
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #ffffff;
}
.logo-text span {
	color: #22c55e;
}
.badge {
	font-size: 0.7rem;
	text-transform: uppercase;
	padding: 2px 8px;
	border-radius: 999px;
	border: 1px solid #4b5563;
	color: #9ca3af;
	display: inline-block;
	margin-top: 2px;
}
.nav {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.btn-secondary {
	font-size: 0.8rem;
	border-radius: 999px;
	padding: 6px 12px;
	border: 1px solid #4b5563;
	background: transparent;
	color: #e5e7eb;
}

/* ==========================================================================
   3. CONTAINER & CONTENT LAYOUT
   ========================================================================== */
.article {
	max-width: 760px;
	margin: 24px auto 40px;
	padding: 0 16px;
}
.article-back {
	font-size: 0.8rem;
	color: #9ca3af;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 12px;
}
.article h1 {
	font-size: 1.7rem;
	margin-bottom: 12px;
	line-height: 1.3;
	color: #ffffff;
}
.article-meta {
	font-size: 0.85rem;
	color: #9ca3af;
	margin-bottom: 12px;
}
.article-img {
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid #1f2937;
	margin-bottom: 20px;
}
.article-img img {
	width: 100%;
	display: block;
}

/* Typography styles matching policy/informational pages */
.article-body h2 {
	font-size: 1.25rem;
	color: #ffffff;
	margin: 24px 0 10px;
	border-bottom: 1px solid #1f2937;
	padding-bottom: 6px;
}
.article-body p {
	margin-bottom: 12px;
	font-size: 1rem;
	color: #cbd5e1;
}
.article-body ul {
	margin-bottom: 16px;
	padding-left: 20px;
}
.article-body li {
	margin-bottom: 6px;
	color: #cbd5e1;
}

/* ==========================================================================
   4. CORE COMPONENTS (BLOCKS, FORMS, GRIDS)
   ========================================================================== */
/* Green-check conditional blocks */
.conditions-block {
	background: #1e293b;
	border-left: 4px solid #22c55e;
	padding: 16px;
	border-radius: 0 12px 12px 0;
	margin: 20px 0;
}
.conditions-block p {
	font-weight: 600;
	margin-bottom: 8px;
}
.conditions-block ul {
	list-style-type: none;
	padding-left: 4px;
}
.conditions-block li {
	margin-bottom: 6px;
	position: relative;
	padding-left: 18px;
	font-size: 0.95rem;
}
.conditions-block li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #22c55e;
	font-weight: bold;
}

/* Lead Generation Form Container */
.form-container {
	background: #020617;
	border: 1px solid #1f2937;
	border-radius: 18px;
	padding: 24px;
	margin: 30px 0;
	position: relative;
}
.form-container h3 {
	margin-bottom: 12px;
	font-size: 1.2rem;
}

.form-group {
	margin-bottom: 14px;
}
.form-group label {
	display: block;
	font-size: 0.85rem;
	color: #9ca3af;
	margin-bottom: 4px;
}
.form-group input {
	width: 100%;
	padding: 10px 14px;
	background: #0f172a;
	border: 1px solid #374151;
	border-radius: 8px;
	color: #fff;
	font-size: 0.95rem;
	transition: border-color 0.2s;
}
.form-group input:focus {
	outline: none;
	border-color: #22c55e;
}
.submit-btn {
	width: 100%;
	padding: 12px;
	background: #22c55e;
	color: #020617;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s;
}
.submit-btn:hover {
	background: #16a34a;
}
.thank-you-msg {
	display: none;
	position: absolute;
	inset: 0;
	background: rgba(2, 6, 23, 0.95);
	border-radius: 18px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #22c55e;
	padding: 20px;
	z-index: 5;
}
.thank-you-msg h4 {
	font-size: 1.4rem;
	margin-bottom: 6px;
}
.thank-you-msg p {
	color: #9ca3af;
	font-size: 0.95rem;
}

/* Contact Page Grid Layout */
.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-top: 24px;
}
.contact-card {
	background: #020617;
	border: 1px solid #1f2937;
	border-radius: 14px;
	padding: 24px;
}
.contact-card h3 {
	color: #22c55e;
	margin-bottom: 12px;
	font-size: 1.15rem;
}
.contact-card p {
	margin-bottom: 8px;
	font-size: 0.95rem;
	color: #e5e7eb;
}
.contact-card p strong {
	color: #9ca3af;
}

/* ==========================================================================
   5. ACCORDION FAQ STYLES
   ========================================================================== */
.faq-section {
	margin: 40px 0 20px;
}
.faq-title {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 6px;
	color: #ffffff;
}
.faq-subtitle {
	font-size: 0.85rem;
	color: #9ca3af;
	margin-bottom: 20px;
}
.faq-accordion {
	border: 1px solid #1f2937;
	border-radius: 12px;
	overflow: hidden;
}
.faq-item {
	border-bottom: 1px solid #1f2937;
}
.faq-item:last-child {
	border-bottom: none;
}
.faq-item details {
	background: #020617;
	width: 100%;
}
.faq-item summary {
	padding: 16px;
	font-size: 1rem;
	font-weight: 600;
	color: #e5e7eb;
	cursor: pointer;
	user-select: none;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.2s;
}
.faq-item summary:hover {
	background: #1e293b;
}
.faq-item summary::after {
	content: "＋";
	font-size: 1.1rem;
	color: #22c55e;
	transition: transform 0.2s;
}
.faq-item details[open] summary::after {
	content: "✕";
	transform: rotate(90deg);
	color: #ef4444;
}
.faq-content {
	padding: 0 16px 16px 16px;
	font-size: 0.95rem;
	color: #cbd5e1;
	background: #020617;
}

/* ==========================================================================
   6. GLOBAL FOOTER
   ========================================================================== */
footer {
	background: #020617;
	border-top: 1px solid #1f2937;
	padding: 32px 16px;
	margin-top: 60px;
}
.footer-inner {
	max-width: 760px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.footer-links {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
	font-size: 0.9rem;
	color: #9ca3af;
}
.footer-links a:hover {
	color: #22c55e;
}
.footer-sources {
	font-size: 0.8rem;
	color: #64748b;
	text-align: center;
	border-top: 1px solid #1f2937;
	padding-top: 16px;
}
.footer-sources a {
	color: #38bdf8;
	text-decoration: underline;
}
.footer-copyright {
	font-size: 0.8rem;
	color: #64748b;
	text-align: center;
}

/* ==========================================================================
   7. MEDIA QUERIES
   ========================================================================== */
@media (max-width: 640px) {
	.header-inner {
		flex-direction: column;
		align-items: flex-start;
	}
	.nav {
		width: 100%;
		justify-content: flex-start;
	}
}