/* GoBrilliant Partner Pages - Static HTML Styles */

:root {
	--gb-navy: #0a0f2b;
	--gb-navy-light: #141a3d;
	--gb-accent: #3b82f6;
	--gb-accent-hover: #2563eb;
	--gb-white: #ffffff;
	--gb-gray-50: #f8fafc;
	--gb-gray-100: #f1f5f9;
	--gb-gray-200: #e2e8f0;
	--gb-gray-300: #cbd5e1;
	--gb-gray-400: #94a3b8;
	--gb-gray-500: #64748b;
	--gb-gray-600: #475569;
	--gb-gray-700: #334155;
	--gb-gray-800: #1e293b;
}

html {
	font-size: 16px !important;
}

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

body {
	font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	color: var(--gb-navy);
	line-height: 1.6;
	background-color: var(--gb-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Montserrat', sans-serif;
	line-height: 1.3;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

@media (min-width: 640px) {
	.container {
		padding: 0 1.5rem;
	}
}

@media (min-width: 1024px) {
	.container {
		padding: 0 2rem;
	}
}

.text-center {
	text-align: center;
}

.hidden {
	display: none !important;
}

/* Header */
.header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--gb-white);
	border-bottom: 1px solid var(--gb-gray-200);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
}

@media (min-width: 768px) {
	.header-inner {
		height: 80px;
	}
}

.logo img {
	height: 32px;
}

@media (min-width: 768px) {
	.logo img {
		height: 40px;
	}
}

.nav-desktop {
	display: none;
	align-items: center;
	gap: 2rem;
}

@media (min-width: 768px) {
	.nav-desktop {
		display: flex;
	}
}

.nav-link {
	position: relative;
	color: var(--gb-gray-500);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s;
	padding: 0.5rem 0;
}

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

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gb-accent);
	transition: width 0.2s;
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

.nav-link.active {
	color: var(--gb-navy);
	font-weight: 600;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--gb-accent);
	color: var(--gb-white);
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s;
	border: none;
	cursor: pointer;
	font-size: 1rem;
}

.btn-primary:hover {
	background: var(--gb-accent-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.btn-large {
	padding: 1rem 2rem;
	font-size: 1.1rem;
}

.btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: transparent;
	color: var(--gb-accent);
	border: 2px solid var(--gb-accent);
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s;
	cursor: pointer;
	font-size: 1rem;
}

.btn-outline:hover {
	background: var(--gb-accent);
	color: var(--gb-white);
}

.mobile-menu-btn {
	display: block;
	padding: 0.5rem;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--gb-navy);
}

@media (min-width: 768px) {
	.mobile-menu-btn {
		display: none;
	}
}

.nav-mobile {
	padding: 1rem;
	border-top: 1px solid var(--gb-gray-100);
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.nav-mobile .nav-link {
	font-size: 1.1rem;
	padding: 0.5rem 0;
}

.nav-mobile .btn-primary {
	text-align: center;
	justify-content: center;
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, var(--gb-navy) 0%, var(--gb-navy-light) 100%);
	color: var(--gb-white);
	padding: 2.5rem 0;
}

@media (min-width: 768px) {
	.hero {
		padding: 3.5rem 0;
	}
}

.hero-title {
	font-size: 1.875rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	color:var(--gb-white)
}

@media (min-width: 640px) {
	.hero-title {
		font-size: 2.5rem;
	}
}

@media (min-width: 1024px) {
	.hero-title {
		font-size: 3rem;
	}
}

.hero-subtitle {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.8);
	max-width: 700px;
	margin: 0 auto;
}

@media (min-width: 768px) {
	.hero-subtitle {
		font-size: 1.25rem;
	}
}

.cta-title {
	font-size: 1.375rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
	.cta-title {
		font-size: 1.5rem;
	}
}

.cta-text {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 1.5rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

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

@media (min-width: 768px) {
	.section {
		padding: 2.5rem 0;
	}
}

.bg-gray {
	background: var(--gb-gray-50);
}

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

.section-header h2 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--gb-navy);
	margin-bottom: 1rem;
}

@media (min-width: 768px) {
	.section-header h2 {
		font-size: 2rem;
	}
}

.section-divider {
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, var(--gb-accent) 0%, #60a5fa 100%);
	border-radius: 2px;
	margin: 0 auto;
}

.intro-text {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
	color: var(--gb-gray-600);
	font-size: 1rem;
}

@media (min-width: 768px) {
	.intro-text {
		font-size: 1.125rem;
	}
}

/* Benefits Grid */
.benefits-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 640px) {
	.benefits-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.benefits-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.benefit-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1.25rem;
	background: var(--gb-gray-50);
	border: 1px solid var(--gb-gray-200);
	border-radius: 0.75rem;
	transition: all 0.2s;
}

.benefit-item:hover {
	background: var(--gb-gray-100);
	border-color: var(--gb-accent);
	transform: translateY(-2px);
}

.benefit-item svg {
	flex-shrink: 0;
}

.benefit-item span {
	color: var(--gb-gray-700);
}

/* Partners Grid */
.partners-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.partners-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.partners-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.partner-card {
	background: var(--gb-white);
	border: 1px solid var(--gb-gray-200);
	border-radius: 0.75rem;
	padding: 1.5rem;
	transition: all 0.3s;
}

.partner-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(10, 15, 43, 0.1);
}

.partner-card-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 1rem;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.partner-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(59, 130, 246, 0.1);
	border-radius: 0.75rem;
	color: var(--gb-accent);
}

.partner-badge {
	display: inline-block;
	padding: 0.375rem 0.75rem;
	background: rgba(59, 130, 246, 0.1);
	color: var(--gb-accent);
	font-size: 0.75rem;
	font-weight: 500;
	border-radius: 9999px;
}

.partner-name {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--gb-navy);
	margin-bottom: 0.75rem;
}

.partner-desc {
	color: var(--gb-gray-600);
	font-size: 0.9375rem;
	margin-bottom: 1rem;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.partner-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--gb-accent);
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s;
}

.partner-link:hover {
	color: var(--gb-accent-hover);
}

/* Partner Detail Page */
.partner-hero {
	background: linear-gradient(135deg, var(--gb-navy) 0%, var(--gb-navy-light) 100%);
	color: var(--gb-white);
	padding: 2.5rem 0;
}

@media (min-width: 768px) {
	.partner-hero {
		padding: 3rem 0;
	}
}

.back-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	margin-bottom: 1.5rem;
	transition: color 0.2s;
}

.back-link:hover {
	color: var(--gb-white);
}

.partner-hero-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.partner-hero-icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 0.75rem;
}

.partner-hero-badge {
	display: inline-block;
	padding: 0.375rem 0.75rem;
	background: rgba(255, 255, 255, 0.1);
	color: var(--gb-white);
	font-size: 0.875rem;
	font-weight: 500;
	border-radius: 9999px;
}

.partner-hero-title {
	font-size: 1.875rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--gb-white);
}

@media (min-width: 640px) {
	.partner-hero-title {
		font-size: 2.5rem;
	}
}

@media (min-width: 1024px) {
	.partner-hero-title {
		font-size: 3rem;
	}
}

.partner-hero-subtitle {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.7);
}

.content-section {
	padding: 2rem 0;
}

@media (min-width: 768px) {
	.content-section {
		padding: 2.5rem 0;
	}
}

.content-section h2 {
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--gb-navy);
	margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
	.content-section h2 {
		font-size: 1.5rem;
	}
}

.content-section .section-divider {
	margin: 0;
	margin-bottom: 1rem;
}

.content-section p {
	color: var(--gb-gray-600);
	font-size: 1rem;
	line-height: 1.7;
	max-width: 900px;
}

.two-column {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.two-column {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}

.solution-list {
	list-style: none;
	padding: 0;
}

.solution-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--gb-gray-200);
	color: var(--gb-gray-600);
}

.solution-item:last-child {
	border-bottom: none;
}

.solution-item::before {
	content: '';
	width: 8px;
	height: 8px;
	background: var(--gb-accent);
	border-radius: 50%;
	margin-top: 0.5rem;
	flex-shrink: 0;
}

/* Feature Grid */
.feature-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 640px) {
	.feature-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.feature-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.feature-card {
	background: var(--gb-white);
	border: 1px solid var(--gb-gray-200);
	border-radius: 0.5rem;
	padding: 1.25rem;
	transition: all 0.2s;
}

.feature-card:hover {
	border-color: var(--gb-accent);
	box-shadow: 0 4px 12px rgba(10, 15, 43, 0.08);
}

.feature-card h4 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--gb-navy);
	margin-bottom: 0.5rem;
}

.feature-card p {
	font-size: 0.875rem;
	color: var(--gb-gray-600);
	line-height: 1.5;
}

/* Highlight box */
.highlight-box {
	background: rgba(59, 130, 246, 0.05);
	border-left: 4px solid var(--gb-accent);
	padding: 1rem 1.25rem;
	border-radius: 0 0.5rem 0.5rem 0;
	margin: 1rem 0;
}

.highlight-box p {
	margin: 0;
	font-size: 0.9375rem;
}

/* Three column grid */
.three-column {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 768px) {
	.three-column {
		grid-template-columns: repeat(3, 1fr);
	}
}

.info-card {
	background: var(--gb-white);
	border: 1px solid var(--gb-gray-200);
	border-radius: 0.5rem;
	padding: 1.25rem;
}

.info-card h4 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--gb-navy);
	margin-bottom: 0.5rem;
}

.info-card p {
	font-size: 0.875rem;
	color: var(--gb-gray-600);
	line-height: 1.5;
	margin: 0;
}

/* HTML Output Page */
.output-header {
	background: var(--gb-white);
	border-bottom: 1px solid var(--gb-gray-200);
	padding: 2rem 0;
}

.output-header-inner {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

@media (min-width: 768px) {
	.output-header-inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

.output-header h1 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--gb-navy);
}

@media (min-width: 768px) {
	.output-header h1 {
		font-size: 2rem;
	}
}

.output-header p {
	color: var(--gb-gray-600);
	margin-top: 0.25rem;
}

.output-actions {
	display: flex;
	gap: 0.75rem;
}

.tabs {
	display: flex;
	gap: 0;
	border-bottom: 2px solid var(--gb-gray-200);
	margin-bottom: 1.5rem;
}

.tab-btn {
	padding: 0.75rem 1.5rem;
	background: none;
	border: none;
	font-weight: 500;
	color: var(--gb-gray-500);
	cursor: pointer;
	border-bottom: 2px solid transparent;
	margin-bottom: -2px;
	transition: all 0.2s;
	font-family: inherit;
	font-size: 1rem;
}

.tab-btn:hover {
	color: var(--gb-navy);
}

.tab-btn.active {
	color: var(--gb-accent);
	border-bottom-color: var(--gb-accent);
}

.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
}

.code-card {
	background: var(--gb-white);
	border: 1px solid var(--gb-gray-200);
	border-radius: 0.75rem;
	overflow: hidden;
	margin-bottom: 1.5rem;
}

.code-card-header {
	padding: 1rem 1.5rem;
	border-bottom: 1px solid var(--gb-gray-200);
}

.code-card-header h3 {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--gb-navy);
}

.code-card-header p {
	color: var(--gb-gray-500);
	font-size: 0.875rem;
	margin-top: 0.25rem;
}

.code-preview {
	background: #1e1e1e;
	color: #d4d4d4;
	font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
	font-size: 0.875rem;
	line-height: 1.6;
	padding: 1.5rem;
	overflow-x: auto;
	white-space: pre-wrap;
	word-wrap: break-word;
	max-height: 600px;
	overflow-y: auto;
}

.page-badge {
	display: inline-block;
	padding: 0.25rem 0.5rem;
	background: rgba(59, 130, 246, 0.1);
	color: var(--gb-accent);
	font-size: 0.875rem;
	font-weight: 500;
	border-radius: 0.25rem;
}

/* Footer */
.footer {
	background: var(--gb-navy);
	color: var(--gb-white);
	padding: 3rem 0;
}

.footer-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	text-align: center;
}

@media (min-width: 768px) {
	.footer-content {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
}

@media (min-width: 768px) {
	.footer-brand {
		justify-content: flex-start;
	}
}

.footer-logo {
	height: 32px;
	filter: brightness(0) invert(1);
}

.footer-tagline {
	color: rgba(255, 255, 255, 0.6);
}

.footer-links {
	display: flex;
	gap: 1.5rem;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: color 0.2s;
}

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

.footer-copyright {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.875rem;
}

/* Animations */
.animate-fade-in {
	animation: fadeIn 0.5s ease-out forwards;
}

.animate-slide-up {
	animation: slideUp 0.6s ease-out forwards;
	animation-delay: 0.2s;
	opacity: 0;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Scrollbar */
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

::-webkit-scrollbar-track {
	background: var(--gb-gray-100);
}

::-webkit-scrollbar-thumb {
	background: var(--gb-gray-300);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--gb-gray-400);
}

/* Focus States */
button:focus-visible,
a:focus-visible {
	outline: 2px solid var(--gb-accent);
	outline-offset: 2px;
}

.page-header {
	background-image: url("http://wpdemo.archiwp.com/engitech/wp-content/uploads/sites/4/2019/12/bg-pheader.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}

.partner-hero .back-link:visited {
	color: #43baff;

	svg {
		stroke: #43baff;
	}
}

.partner-hero-icon svg {
	stroke: var(--gb-white);
}
.hero .btn-primary {
    color: var(--gb-white);
}