/* ==========================================================================
   Outrightcrm Theme — Main Styles
   Colors: tomato red (#E8503A), charcoal (#36454F)
   ========================================================================== */

:root {
	--green: #E8503A;
	--green-light: #FFF0ED;
	--green-mint: #FFF8F6;
	--green-pale: #F5D0C8;
	--green-dark: #36454F;
	--green-olive: #2C2C2C;
	--green-deep: #1A1A1A;
	--tomato: #E8503A;
	--tomato-dark: #C0392B;
	--tomato-darker: #9B2E22;
	--tomato-light: #FFF0ED;
	--tomato-glow: rgba(232, 80, 58, 0.35);
	--charcoal: #36454F;
	--charcoal-dark: #2C2C2C;
	--charcoal-deep: #1A1A1A;
	--charcoal-mid: #252d34;
	--teal: #36454F;
	--teal-light: #E8EAED;
	--purple-soft: #6b5b95;
	--white: #ffffff;
	--cream: #FAF8F7;
	--black: #1a1a1a;
	--gray-900: #2d2d2d;
	--gray-700: #555555;
	--gray-500: #888888;
	--gray-300: #cccccc;
	--gray-100: #f5f5f5;
	--gold: #D4A017;
	--gold-light: #FFD700;
	--blue: #36454F;
	--blue-light: transparent;
	--blue-deep: #2C2C2C;
	--tan: #C0392B;
	--footer-dark: #080b0e;
	--footer-mid: #0f1419;
	--footer-accent: #161e26;
	--footer-glow: rgba(232, 80, 58, 0.08);
	--glass-bg: rgba(255, 255, 255, 0.68);
	--glass-bg-strong: rgba(255, 255, 255, 0.94);
	--glass-border: rgba(255, 255, 255, 0.65);
	--glass-shadow: 0 8px 32px rgba(26, 26, 26, 0.08);
	--gradient-hero: linear-gradient(135deg, #FFF8F6 0%, #FFF0ED 45%, #E8EAED 100%);
	--gradient-accent: linear-gradient(135deg, var(--tomato) 0%, var(--tomato-dark) 100%);
	--gradient-accent-deep: linear-gradient(135deg, var(--tomato-dark) 0%, var(--charcoal) 100%);
	--gradient-dark: linear-gradient(168deg, var(--footer-dark) 0%, var(--footer-mid) 42%, #1a2229 72%, var(--charcoal-deep) 100%);
	--gradient-mesh:
		radial-gradient(ellipse 90% 60% at 8% -5%, rgba(232, 80, 58, 0.09) 0%, transparent 55%),
		radial-gradient(ellipse 70% 50% at 92% 5%, rgba(54, 69, 79, 0.07) 0%, transparent 50%),
		radial-gradient(ellipse 50% 40% at 50% 100%, rgba(232, 80, 58, 0.04) 0%, transparent 60%),
		linear-gradient(180deg, #fefefe 0%, var(--cream) 50%, #f5f2f0 100%);
	--shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
	--shadow-md: 0 4px 24px rgba(26, 26, 26, 0.08);
	--shadow-lg: 0 12px 40px rgba(26, 26, 26, 0.1);
	--shadow-xl: 0 24px 64px rgba(26, 26, 26, 0.14);
	--shadow-glow: 0 8px 32px rgba(232, 80, 58, 0.2);
	--shadow-glow-strong: 0 16px 48px rgba(232, 80, 58, 0.28);
	--shadow-premium: 0 4px 6px rgba(26, 26, 26, 0.02), 0 12px 24px rgba(26, 26, 26, 0.06), 0 24px 48px rgba(26, 26, 26, 0.04);
	--radius: 12px;
	--radius-lg: 16px;
	--radius-xl: 22px;
	--radius-pill: 50px;
	--font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	--font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
	--font-serif: var(--font-display);
	--container: 1200px;
	--header-h: 80px;
	--transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-spring: 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.6;
	color: var(--gray-900);
	background: var(--gradient-mesh);
	background-attachment: fixed;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 20px;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	border: none;
	border-radius: var(--radius);
	font-family: var(--font-sans);
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: all var(--transition);
}

.btn--green { background: var(--green); color: var(--white); }
.btn--green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--dark-green { background: var(--green-olive); color: var(--white); }
.btn--dark-green:hover { background: var(--green-dark); transform: translateY(-2px); }

.btn-read-more {
	background: var(--green-dark);
	color: var(--white);
	padding: 10px 24px;
	border-radius: var(--radius);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all var(--transition);
}
.btn-read-more:hover { background: var(--green); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: var(--glass-bg);
	backdrop-filter: blur(24px) saturate(200%);
	-webkit-backdrop-filter: blur(24px) saturate(200%);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 1px 0 rgba(54, 69, 79, 0.04), 0 8px 32px rgba(0, 0, 0, 0.04);
	border-bottom: 1px solid rgba(54, 69, 79, 0.06);
	transition: box-shadow var(--transition), background var(--transition);
	overflow: visible;
}

.header-top {
	position: relative;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-h);
	gap: 20px;
}

/* Accent line confined to header bar — hidden when menus are active */
.header-top::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: min(200px, 40%);
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--tomato) 50%, transparent);
	opacity: 0.4;
	pointer-events: none;
	z-index: 1;
	transition: opacity var(--transition);
}

.site-header:has(.nav-item:hover) .header-top::after,
.site-header:has(.nav-item.is-open) .header-top::after,
.site-header.is-menu-active .header-top::after {
	opacity: 0;
}

.logo-link {
	display: inline-flex;
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-glow);
	transition: transform var(--transition), box-shadow var(--transition);
}
.logo-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(232, 80, 58, 0.28);
}

.site-logo,
.footer-logo {
	width: 70px;
	height: 70px;
	object-fit: cover;
	border-radius: var(--radius-xl);
	border: 3px solid var(--green-light);
	background: var(--white);
	transition: transform var(--transition), width var(--transition), height var(--transition), border-color var(--transition);
}
.footer-logo {
	width: 60px;
	height: 60px;
	border-color: rgba(232, 80, 58, 0.35);
	box-shadow: 0 4px 20px rgba(232, 80, 58, 0.2);
}
.logo-link:hover .site-logo { transform: scale(1.04); border-color: var(--green); }

.primary-nav {
	flex: 1;
	display: flex;
	justify-content: center;
	position: relative;
	z-index: 20;
}

.nav-list {
	display: flex;
	align-items: center;
	gap: 4px;
}

.nav-link {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 10px 16px;
	font-size: 14px;
	font-weight: 500;
	color: var(--gray-700);
	border: 1px solid transparent;
	background: none;
	cursor: pointer;
	border-radius: var(--radius-pill);
	transition: all var(--transition);
	white-space: nowrap;
	position: relative;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 4px;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--gradient-accent);
	border-radius: 2px;
	transform: translateX(-50%);
	transition: width var(--transition);
}

.nav-link:hover::after,
.nav-item:hover > .nav-link::after,
.nav-item--dropdown:hover .nav-link--category::after {
	width: calc(100% - 24px);
}

.nav-item--dropdown.is-open .nav-link--category::after,
.nav-item--mega.is-open > .nav-link::after,
.nav-item--dropdown:hover .nav-link--category::after,
.nav-item--mega:hover > .nav-link::after {
	width: 0;
	opacity: 0;
}

.nav-link:hover,
.nav-item:hover > .nav-link,
.nav-item.is-open > .nav-link,
.nav-item--dropdown:hover .nav-link--category,
.nav-item--dropdown:hover .nav-link--toggle,
.nav-item--dropdown.is-open .nav-link--category,
.nav-item--dropdown.is-open .nav-link--toggle {
	color: var(--tomato-dark);
	background: rgba(255, 240, 237, 0.75);
	border-color: rgba(232, 80, 58, 0.12);
	box-shadow: 0 2px 12px rgba(232, 80, 58, 0.08);
}

.nav-dropdown-trigger {
	display: flex;
	align-items: stretch;
}

.nav-link--category {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	padding-right: 8px;
}

.nav-link--toggle {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	padding: 10px 12px 10px 2px;
	margin-left: -4px;
}

.nav-link--brand {
	padding: 8px 18px 8px 14px;
}

.nav-link--brand::after {
	display: none;
}

.nav-link--brand .brand-name {
	font-family: var(--font-display);
	font-size: 21px;
	font-weight: 600;
	font-variation-settings: 'SOFT' 50, 'WONK' 0;
	letter-spacing: -0.02em;
	color: var(--charcoal-deep);
	background: linear-gradient(135deg, var(--charcoal-deep) 0%, var(--tomato-dark) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: opacity var(--transition), transform var(--transition);
}

.nav-link--brand:hover .brand-name,
.nav-item:hover > .nav-link--brand .brand-name {
	opacity: 0.85;
	transform: translateY(-1px);
}

.nav-link--brand:hover,
.nav-item:hover > .nav-link--brand {
	background: transparent;
	border-color: transparent;
}

.nav-chevron {
	width: 0; height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	margin-left: 4px;
	transition: transform var(--transition);
}
.nav-item.is-open .nav-chevron { transform: rotate(180deg); }

/* Dropdown panels */
.dropdown-panel {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	min-width: 260px;
	background: var(--glass-bg-strong);
	backdrop-filter: blur(24px) saturate(180%);
	-webkit-backdrop-filter: blur(24px) saturate(180%);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-xl), 0 0 0 1px rgba(54, 69, 79, 0.06);
	padding: 10px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.2s cubic-bezier(0.34, 1.2, 0.64, 1);
	pointer-events: none;
	border: 1px solid rgba(255, 255, 255, 0.72);
	z-index: 2000;
}

.nav-item--dropdown {
	position: relative;
	z-index: 1;
}

.nav-item--mega {
	position: static;
	z-index: 1;
}

.nav-item--dropdown.is-open,
.nav-item--mega.is-open,
.nav-item--dropdown:hover,
.nav-item--mega:hover {
	z-index: 100;
}

.nav-item--dropdown.is-open .dropdown-panel {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

@media (min-width: 769px) {
	.nav-item--dropdown:not(.is-open) .dropdown-panel,
	.nav-item--mega:not(.is-open) .mega-panel {
		pointer-events: none;
	}

	.nav-item--dropdown:not(.is-open) .dropdown-panel {
		opacity: 0;
		visibility: hidden;
		transform: translateY(10px);
		transition: opacity 0.08s ease, visibility 0s linear 0.08s, transform 0.08s ease;
	}

	.dropdown-panel,
	.submenu-panel,
	.mega-panel {
		animation: none !important;
	}

	.dropdown-item.has-children:not(.is-submenu-active) .submenu-panel {
		opacity: 0;
		visibility: hidden;
		transform: translateX(-10px);
		pointer-events: none;
		transition: opacity 0.08s ease, visibility 0s linear 0.08s, transform 0.08s ease;
	}
}

.dropdown-item { position: relative; }
.dropdown-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 16px;
	font-size: 14px;
	color: var(--gray-700);
	border-radius: var(--radius);
	transition: all var(--transition);
}
.dropdown-link:hover { color: var(--tomato-dark); background: var(--green-light); padding-left: 20px; }

.sub-chevron {
	width: 6px; height: 6px;
	border-right: 2px solid var(--gray-500);
	border-bottom: 2px solid var(--gray-500);
	transform: rotate(-45deg);
}

.submenu-panel {
	position: absolute;
	left: 100%;
	top: 0;
	min-width: 300px;
	background: var(--glass-bg-strong);
	backdrop-filter: blur(24px) saturate(180%);
	-webkit-backdrop-filter: blur(24px) saturate(180%);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-xl);
	padding: 8px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-10px);
	transition: opacity 0.08s ease, visibility 0.08s ease, transform 0.08s ease;
	pointer-events: none;
	border: 1px solid rgba(255, 255, 255, 0.55);
	z-index: 2001;
}

.dropdown-item.has-children.is-submenu-active .submenu-panel {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
	pointer-events: auto;
}

@media (min-width: 769px) {
	.dropdown-item.has-children:not(.is-submenu-active) .submenu-panel {
		opacity: 0;
		visibility: hidden;
		transform: translateX(-10px);
		pointer-events: none;
		transition: opacity 0.08s ease, visibility 0s linear 0.08s, transform 0.08s ease;
	}
}

.submenu-panel li a {
	display: block;
	padding: 9px 20px;
	font-size: 13px;
	color: var(--gray-700);
	transition: all var(--transition);
	white-space: nowrap;
}
.submenu-panel li a:hover { color: var(--green-dark); background: var(--green-light); padding-left: 24px; }

/* Mega menu */

.mega-panel {
	position: absolute;
	top: calc(100% + 12px);
	left: 50%;
	right: auto;
	width: calc(100% - 48px);
	max-width: var(--container);
	background: var(--glass-bg-strong);
	backdrop-filter: blur(28px) saturate(190%);
	-webkit-backdrop-filter: blur(28px) saturate(190%);
	box-shadow: var(--shadow-xl), 0 0 0 1px rgba(54, 69, 79, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: var(--radius-xl);
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-50%) translateY(12px);
	transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.34, 1.2, 0.64, 1), visibility 0.2s ease;
	pointer-events: none;
	z-index: 2000;
}

.nav-item--mega.is-open .mega-panel {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
}

@media (min-width: 769px) {
	.nav-item--mega:not(.is-open) .mega-panel {
		opacity: 0;
		visibility: hidden;
		transform: translateX(-50%) translateY(12px);
		pointer-events: none;
		transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
	}
}

.mega-panel-inner {
	display: flex;
	gap: 40px;
	padding: 36px 28px 40px;
	background: linear-gradient(165deg, rgba(255,255,255,0.95) 0%, rgba(255,248,246,0.88) 55%, rgba(232, 240, 237, 0.35) 100%);
	border-radius: var(--radius-xl);
}

.mega-columns {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	flex: 1;
	gap: 24px;
}

.mega-heading {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--green-dark);
	margin-bottom: 16px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--green-light);
}

.mega-links li { margin-bottom: 6px; }
.mega-links a {
	display: block;
	padding: 8px 12px;
	font-size: 14px;
	font-weight: 500;
	color: var(--gray-700);
	border-radius: var(--radius);
	transition: color var(--transition), background var(--transition), transform var(--transition);
	text-decoration: none;
	line-height: 1.35;
}
.mega-links a:hover {
	color: var(--green-dark);
	background: var(--green-light);
	transform: translateX(4px);
}
.mega-links a.mega-link--stacked {
	line-height: 1.25;
}
.mega-links a:focus-visible {
	outline: 2px solid var(--green);
	outline-offset: 2px;
}

.mega-cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	min-width: 200px;
}

.mega-devices {
	position: relative;
	width: 180px;
	height: 140px;
}

.device-glow {
	position: absolute;
	width: 120px;
	height: 120px;
	background: rgba(74, 144, 217, 0.15);
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: pulse-glow 3s ease-in-out infinite;
}

.device {
	position: absolute;
	background: var(--gray-300);
	border-radius: 4px;
	box-shadow: var(--shadow-sm);
}
.device--laptop { width: 80px; height: 50px; bottom: 10px; left: 0; }
.device--phone { width: 30px; height: 50px; bottom: 20px; left: 70px; background: var(--white); border: 2px solid var(--gray-300); }
.device--tablet { width: 45px; height: 60px; bottom: 15px; right: 20px; background: var(--white); border: 2px solid var(--gray-300); }

.header-search {
	position: relative;
	z-index: 10;
}

.search-toggle {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1.5px solid rgba(232, 80, 58, 0.2);
	background: var(--white);
	color: var(--charcoal);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--transition);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.search-toggle:hover,
.search-toggle.is-active {
	background: var(--gradient-accent);
	color: var(--white);
	border-color: transparent;
	box-shadow: var(--shadow-glow);
	transform: scale(1.05);
}

.search-dropdown {
	max-height: 0;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(255, 240, 237, 0.92) 0%, rgba(250, 248, 247, 0.95) 100%);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	transition: max-height var(--transition), padding var(--transition);
	border-bottom: 1px solid rgba(232, 80, 58, 0.06);
	position: relative;
	z-index: 1;
}
.search-dropdown.is-open {
	max-height: 100px;
	padding: 20px 0;
}

.search-form {
	display: flex;
	gap: 12px;
	max-width: 600px;
	margin: 0 auto;
}

.search-input {
	flex: 1;
	padding: 14px 24px;
	border: 2px solid var(--green);
	border-radius: var(--radius-pill);
	font-size: 15px;
	outline: none;
	background: var(--white);
	transition: box-shadow var(--transition);
}
.search-input:focus { box-shadow: 0 0 0 4px rgba(232, 80, 58, 0.2); }

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}
.mobile-menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--gray-900);
	transition: all var(--transition);
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
}

.section-header-left {
	display: flex;
	align-items: center;
	gap: 10px;
}

.section-title {
	font-family: var(--font-display);
	font-size: 26px;
	font-weight: 600;
	font-variation-settings: 'SOFT' 50, 'WONK' 0;
	letter-spacing: -0.02em;
	color: var(--charcoal-deep);
	position: relative;
}

.section-divider {
	height: 3px;
	background: linear-gradient(90deg, var(--tomato) 0%, rgba(54, 69, 79, 0.15) 60%, transparent 100%);
	margin-bottom: 32px;
	border-radius: 3px;
}

.section-icon {
	width: 24px;
	height: 24px;
	display: inline-block;
}
.section-icon--book {
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E8503A'%3E%3Cpath d='M6 2c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6H6zm7 1.5L18.5 9H13V3.5z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.section-icon--bars {
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E8503A'%3E%3Crect x='4' y='14' width='4' height='8'/%3E%3Crect x='10' y='8' width='4' height='14'/%3E%3Crect x='16' y='4' width='4' height='18'/%3E%3C/svg%3E") center/contain no-repeat;
}
.section-icon--crypto {
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E8503A'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3Ccircle cx='16' cy='8' r='3'/%3E%3Crect x='6' y='14' width='12' height='6' rx='2'/%3E%3C/svg%3E") center/contain no-repeat;
}

.view-all-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 18px;
	background: var(--gradient-accent);
	color: var(--white);
	font-size: 13px;
	font-weight: 600;
	border-radius: var(--radius-pill);
	box-shadow: 0 2px 8px rgba(232, 80, 58, 0.25);
	transition: all var(--transition);
}
.view-all-btn:hover {
	background: linear-gradient(135deg, var(--tomato-dark) 0%, var(--charcoal) 100%);
	transform: translateX(3px);
	box-shadow: 0 4px 14px rgba(54, 69, 79, 0.3);
}
.view-all-btn .arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	background: none;
	color: inherit;
	padding: 0;
	line-height: 1;
	border: none;
	box-shadow: none;
}
.view-all-btn .arrow svg {
	width: 10px;
	height: 10px;
	fill: currentColor;
}

.view-all-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	font-weight: 600;
	color: var(--gray-900);
	transition: all var(--transition);
}
.view-all-link:hover { color: var(--green-dark); }
.view-all-link .arrow { font-size: 10px; }

/* ==========================================================================
   Homepage Sections
   ========================================================================== */
.section-title--highlight {
	background: transparent;
	padding: 0;
	border-radius: 0;
}

.home-section {
	padding: 56px 0;
	position: relative;
}

.featured-section {
	padding-top: 48px;
}

.featured-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: min(600px, 80%);
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(232, 80, 58, 0.15), transparent);
}

.featured-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.featured-large-card,
.featured-small-card {
	border: 1px solid rgba(54, 69, 79, 0.08);
	border-radius: var(--radius-xl);
	overflow: hidden;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	transition: transform var(--transition-spring), box-shadow var(--transition), border-color var(--transition);
}
.featured-large-card:hover,
.featured-small-card:hover {
	box-shadow: var(--shadow-glow);
	transform: translateY(-6px);
	border-color: var(--tomato);
}

.featured-large-card:hover .featured-title a,
.featured-small-card:hover .featured-title a {
	color: var(--tomato);
}

.featured-small-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.featured-image-wrap {
	position: relative;
	overflow: hidden;
}
.featured-image-wrap .card-image {
	width: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.featured-large-card .card-image { height: 280px; }
.featured-small-card .card-image { height: 140px; }
.featured-large-card:hover .card-image,
.featured-small-card:hover .card-image { transform: scale(1.05); }

.share-btn {
	position: absolute;
	bottom: 10px;
	left: 10px;
	width: 32px;
	height: 32px;
	background: var(--gray-900);
	color: var(--white);
	border: none;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0;
	transition: opacity var(--transition);
}
.featured-image-wrap:hover .share-btn { opacity: 1; }

.featured-body { padding: 20px; }

.featured-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 10px;
	line-height: 1.3;
}
.featured-title a {
	transition: color var(--transition);
}
.featured-small-card .featured-title { font-size: 15px; }

.article-meta {
	font-size: 13px;
	color: var(--gray-500);
	margin-bottom: 12px;
	display: block;
}
.author-link {
	color: var(--tomato);
	text-decoration: none;
	font-weight: 600;
}
.author-link:hover { color: var(--charcoal); }

.featured-excerpt {
	font-size: 14px;
	color: var(--gray-700);
	line-height: 1.7;
}
.featured-large-card .featured-excerpt { min-height: 180px; }
.featured-small-card .featured-excerpt {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 66px;
}

/* Knowledge Repository Section */
.knowledge-section {
	background: linear-gradient(180deg, rgba(255, 240, 237, 0.6) 0%, rgba(255, 248, 246, 0.85) 50%, rgba(255, 240, 237, 0.6) 100%);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.knowledge-section::before,
.knowledge-section::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 60px;
	background: var(--white);
}
.knowledge-section::before {
	top: 0;
	border-radius: 0 0 50% 50% / 0 0 100% 100%;
	transform: scaleX(1.2);
}
.knowledge-section::after {
	bottom: 0;
	border-radius: 50% 50% 0 0 / 100% 100% 0 0;
	transform: scaleX(1.2);
}

.knowledge-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: start;
	position: relative;
	z-index: 1;
}

.knowledge-heading-box {
	background: rgba(255, 255, 255, 0.9);
	border-left: 4px solid var(--tomato);
	padding: 28px 32px;
	margin-bottom: 28px;
	box-shadow: var(--shadow-md);
	border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.knowledge-heading {
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--gray-900);
	line-height: 1.4;
}

.knowledge-text {
	font-size: 15px;
	color: var(--gray-700);
	line-height: 1.8;
}

.knowledge-features { display: flex; flex-direction: column; gap: 28px; }

.feature-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.feature-icon {
	width: 48px;
	height: 48px;
	min-width: 48px;
	background: var(--green-dark);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 20px;
}

.feature-title {
	font-size: 17px;
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: 4px;
}

.feature-desc {
	font-size: 14px;
	color: var(--gray-500);
	line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
	background: var(--green-light);
	padding: 60px 0 80px;
	text-align: center;
}

.testimonials-heading {
	font-size: 26px;
	font-weight: 700;
	color: var(--black);
	max-width: 700px;
	margin: 0 auto 12px;
	line-height: 1.4;
}

.testimonials-sub {
	font-size: 15px;
	color: var(--gray-700);
	margin-bottom: 40px;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.testimonial-card {
	background: var(--green-pale);
	border-radius: var(--radius-lg);
	padding: 30px 24px;
	text-align: left;
	position: relative;
	transition: all var(--transition);
}
.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
}

.testimonial-quote {
	position: absolute;
	top: 16px;
	right: 20px;
	font-size: 48px;
	color: rgba(255,255,255,0.6);
	font-family: var(--font-serif);
	line-height: 1;
}

.testimonial-text {
	font-size: 14px;
	color: var(--gray-700);
	line-height: 1.7;
	margin-bottom: 20px;
}

.testimonial-author {
	font-size: 14px;
}
.testimonial-author strong { color: var(--black); }
.testimonial-author span { color: var(--gray-500); }

/* Category Carousel */
.categories-section { padding: 50px 0; overflow: visible; }

.categories-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
}

.categories-header h2 {
	font-size: 22px;
	font-weight: 700;
	color: var(--charcoal-deep);
}

.carousel-controls {
	display: flex;
	gap: 8px;
}

.carousel-btn {
	width: 40px;
	height: 40px;
	background: var(--green-dark);
	color: var(--white);
	border: none;
	border-radius: var(--radius);
	cursor: pointer;
	font-size: 16px;
	transition: all var(--transition);
}
.carousel-btn:hover { background: var(--green); transform: scale(1.05); }

.category-carousel-shell {
	background: linear-gradient(145deg, rgba(255, 248, 246, 0.95) 0%, rgba(255, 255, 255, 0.92) 55%, rgba(232, 234, 237, 0.35) 100%);
	border: 1px solid rgba(54, 69, 79, 0.1);
	border-radius: var(--radius-xl);
	padding: 28px 24px;
	box-shadow: var(--shadow-sm);
}

.category-carousel--static {
	overflow: visible;
	padding: 10px 0 14px;
	margin: 0;
}

.category-track {
	display: flex;
	gap: 20px;
	padding: 4px 2px;
}

.category-track--static {
	flex-wrap: wrap;
	justify-content: center;
	transition: none;
	transform: none !important;
}

.category-track--static .category-card {
	flex: 0 0 calc(20% - 16px);
}

.category-card {
	flex: 0 0 calc(20% - 16px);
	min-width: 200px;
	border: 1px solid rgba(54, 69, 79, 0.12);
	border-radius: var(--radius-xl);
	padding: 28px 22px;
	text-align: center;
	background: var(--white);
	box-shadow: 0 2px 12px rgba(26, 26, 26, 0.04);
	transition: all var(--transition);
	position: relative;
	overflow: hidden;
	isolation: isolate;
}
.category-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-accent);
	opacity: 0;
	transition: opacity var(--transition);
}
.category-card:hover {
	border-color: var(--tomato);
	box-shadow: var(--shadow-glow);
	transform: translateY(-6px);
}
.category-card:hover::before { opacity: 1; }

.category-icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 16px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--tomato-light) 0%, var(--teal-light) 100%);
	border: 2px solid rgba(232, 80, 58, 0.15);
	box-shadow: 0 4px 16px rgba(232, 80, 58, 0.12);
}
.category-icon svg {
	width: 40px;
	height: 40px;
	display: block;
}

.category-name {
	font-size: 15px;
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: 4px;
}

.category-parent {
	font-size: 12px;
	color: var(--gray-500);
	margin-bottom: 16px;
}

.btn-view-articles {
	display: inline-block;
	padding: 9px 22px;
	background: var(--charcoal);
	color: var(--white);
	font-size: 12px;
	font-weight: 600;
	border-radius: var(--radius-pill);
	transition: all var(--transition);
}
.btn-view-articles:hover { background: var(--tomato); transform: translateY(-2px); }

/* Article Grids */
.section-mint {
	background: linear-gradient(180deg, rgba(255, 248, 246, 0.5) 0%, rgba(255, 255, 255, 0.3) 100%);
}

.grid-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

/* Finance/Business cards — modern style */
.card-fb {
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: var(--radius-xl);
	overflow: hidden;
	border: 1px solid rgba(54, 69, 79, 0.08);
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition-spring), box-shadow var(--transition), border-color var(--transition);
	display: flex;
	flex-direction: column;
}
.card-fb:hover {
	box-shadow: var(--shadow-glow);
	transform: translateY(-6px);
	border-color: var(--tomato);
}
.card-fb:hover .card-fb-title a {
	color: var(--tomato);
}
.card-fb-image-wrap {
	position: relative;
	overflow: hidden;
}
.card-fb-image-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(26, 26, 26, 0.4) 100%);
	opacity: 0;
	transition: opacity var(--transition);
}
.card-fb:hover .card-fb-image-wrap::after { opacity: 1; }
.card-fb .card-image {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.card-fb:hover .card-image { transform: scale(1.06); }
.card-fb-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.card-fb-category {
	display: inline-block;
	padding: 4px 10px;
	margin-bottom: 10px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--tomato);
	background: var(--tomato-light);
	border-radius: var(--radius-pill);
	width: fit-content;
}
.card-fb-title {
	font-size: 17px;
	font-weight: 700;
	color: var(--charcoal-deep);
	margin-bottom: 8px;
	line-height: 1.35;
}
.card-fb-title a {
	transition: color var(--transition);
}
.card-fb-title a:hover { color: var(--tomato); }
.card-fb-excerpt {
	font-size: 13px;
	color: var(--gray-700);
	line-height: 1.65;
	margin: 12px 0 auto;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.read-more-link {
	font-size: 13px;
	color: var(--tomato);
	font-weight: 700;
	margin-top: 14px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	transition: all var(--transition);
}
.read-more-link:hover { color: var(--charcoal); gap: 8px; }

/* Technology section with sidebar */
.tech-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 30px;
	align-items: start;
}

.browse-category {
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(54, 69, 79, 0.08);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-md);
	overflow: hidden;
	align-self: stretch;
	display: flex;
	flex-direction: column;
}

.browse-category-header {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 16px 20px;
	border-bottom: 2px solid var(--tomato-light);
	font-weight: 700;
	font-size: 15px;
	color: var(--charcoal);
	background: linear-gradient(135deg, var(--tomato-light) 0%, var(--white) 100%);
	flex-shrink: 0;
}

.browse-category-list { flex: 1; overflow: hidden; }

.browse-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 20px;
	border-bottom: 1px solid var(--gray-100);
	font-size: 13px;
	transition: background var(--transition);
}
.browse-item:hover { background: var(--green-light); }

.browse-item--parent { font-weight: 600; }
.browse-item--parent > a {
	text-decoration: none;
	color: var(--charcoal);
}
.browse-item--parent > a:hover { color: var(--tomato); }
.browse-item--child { padding-left: 32px; }
.browse-item--grandchild { padding-left: 48px; color: var(--gray-700); }

.browse-count {
	color: var(--gray-500);
	font-size: 12px;
	min-width: 40px;
	text-align: right;
}

/* Technology cards (img6 style) */
.card-tech {
	border: 1px solid rgba(54, 69, 79, 0.08);
	border-radius: var(--radius-xl);
	overflow: hidden;
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	transition: transform var(--transition-spring), box-shadow var(--transition), border-color var(--transition);
	box-shadow: var(--shadow-sm);
}
.card-tech:hover {
	box-shadow: var(--shadow-glow);
	transform: translateY(-6px);
	border-color: var(--tomato);
}
.card-tech:hover .card-tech-title a {
	color: var(--tomato);
}
.card-tech .card-image { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s ease; }
.card-tech:hover .card-image { transform: scale(1.05); }
.card-tech-body { padding: 20px; text-align: center; }
.card-tech-title {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--charcoal-deep);
}
.card-tech-title a {
	transition: color var(--transition);
}
.card-tech-title a:hover { color: var(--tomato); }
.card-tech-excerpt {
	font-size: 13px;
	color: var(--gray-700);
	margin: 12px 0 16px;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Recent articles (img8 style) */
.card-recent {
	border: 1px solid rgba(54, 69, 79, 0.1);
	border-radius: var(--radius-xl);
	padding: 18px;
	background: var(--white);
	transition: transform var(--transition-spring), box-shadow var(--transition), border-color var(--transition);
	box-shadow: var(--shadow-sm);
}
.card-recent:hover {
	box-shadow: var(--shadow-glow);
	transform: translateY(-6px);
	border-color: var(--tomato);
}
.card-recent:hover .card-recent-title a {
	color: var(--tomato);
}

.card-recent-top {
	display: flex;
	gap: 14px;
	margin-bottom: 12px;
}
.card-recent .card-image {
	width: 100px;
	height: 100px;
	min-width: 100px;
	object-fit: cover;
	border-radius: var(--radius);
}
.card-recent-title {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 6px;
	color: var(--charcoal-deep);
}
.card-recent-title a {
	transition: color var(--transition);
}
.card-recent-title a:hover { color: var(--tomato); }
.card-recent-excerpt {
	font-size: 13px;
	color: var(--gray-700);
	line-height: 1.6;
	margin-bottom: 14px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.card-recent .btn-read-more { display: block; text-align: center; width: fit-content; margin: 0 auto; }

/* Credit & Loan cards */
.card-credit {
	background: var(--white);
	border-radius: var(--radius-xl);
	overflow: hidden;
	border: 1px solid rgba(54, 69, 79, 0.1);
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition-spring), box-shadow var(--transition), border-color var(--transition);
}
.card-credit:hover {
	box-shadow: var(--shadow-glow);
	transform: translateY(-6px);
	border-color: var(--tomato);
}
.card-credit:hover .card-credit-title a {
	color: var(--tomato);
}
.card-credit .card-image {
	transition: transform 0.5s ease;
}
.card-credit:hover .card-image {
	transform: scale(1.05);
}
.card-credit > a:first-child {
	display: block;
	overflow: hidden;
}
.card-credit .card-image { width: 100%; height: 180px; object-fit: cover; }
.card-credit-body { padding: 18px; }
.card-credit-title {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 8px;
	line-height: 1.3;
	color: var(--charcoal-deep);
}
.card-credit-title a {
	transition: color var(--transition);
}

/* Info blocks */
.info-blocks-section {
	padding: 50px 0;
	background: var(--white);
}

.info-blocks-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.info-block {
	background: rgba(255, 255, 255, 0.75);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-radius: var(--radius-lg);
	padding: 32px 28px;
	border-left: 4px solid var(--tomato);
	border-top: 1px solid rgba(255, 255, 255, 0.8);
	border-right: 1px solid rgba(54, 69, 79, 0.06);
	border-bottom: 1px solid rgba(54, 69, 79, 0.06);
	box-shadow: var(--shadow-premium);
	transition: all var(--transition);
}

.info-block:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-glow);
	border-left-color: var(--charcoal);
}

.info-block h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--green-dark);
	margin-bottom: 12px;
}

.info-block p {
	font-size: 14px;
	color: var(--gray-700);
	line-height: 1.7;
}

/* ==========================================================================
   Category Archive
   ========================================================================== */
.archive-header {
	padding: 56px 0 36px;
	background: linear-gradient(165deg, rgba(255, 240, 237, 0.95) 0%, rgba(250, 248, 247, 0.9) 100%);
	position: relative;
	overflow: hidden;
}

.archive-header::before {
	content: '';
	position: absolute;
	top: -60%;
	right: -8%;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(232, 80, 58, 0.1) 0%, transparent 70%);
	pointer-events: none;
}

.archive-header::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(232, 80, 58, 0.2), transparent);
}

.archive-title {
	font-family: var(--font-display);
	font-size: clamp(28px, 4vw, 38px);
	font-weight: 600;
	font-variation-settings: 'SOFT' 50, 'WONK' 0;
	letter-spacing: -0.02em;
	color: var(--charcoal-deep);
	line-height: 1.2;
}

.archive-description {
	font-size: 15px;
	color: var(--gray-700);
	margin-top: 8px;
}

.archive-section { padding: 40px 0 60px; }

.outrightcrm-pagination {
	margin-top: 40px;
	text-align: center;
}
.outrightcrm-pagination ul {
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}
.outrightcrm-pagination li a,
.outrightcrm-pagination li span {
	display: inline-block;
	padding: 10px 16px;
	border: 1px solid var(--gray-300);
	border-radius: var(--radius);
	font-size: 14px;
	transition: all var(--transition);
}
.outrightcrm-pagination li a:hover,
.outrightcrm-pagination .current {
	background: var(--green-dark);
	color: var(--white);
	border-color: var(--green-dark);
}

/* ==========================================================================
   Pages
   ========================================================================== */
.page-header {
	padding: 50px 0 30px;
	background: var(--green-light);
	text-align: center;
}

.page-header--gradient {
	background: linear-gradient(165deg, rgba(255, 248, 246, 0.98) 0%, rgba(255, 240, 237, 0.85) 50%, rgba(232, 234, 237, 0.4) 100%);
	position: relative;
	overflow: hidden;
	padding: 80px 0 56px;
}

.page-header--gradient::before {
	content: '';
	position: absolute;
	top: -40%;
	right: -10%;
	width: 480px;
	height: 480px;
	background: radial-gradient(circle, rgba(232, 80, 58, 0.1) 0%, transparent 70%);
	pointer-events: none;
}

.page-header--gradient::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(232, 80, 58, 0.15), transparent);
}

.page-eyebrow {
	display: inline-block;
	padding: 6px 14px;
	margin-bottom: 14px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--green-dark);
	background: rgba(255, 255, 255, 0.8);
	border-radius: var(--radius-pill);
}

.page-lead {
	max-width: 640px;
	margin: 14px auto 0;
	font-size: 17px;
	color: var(--gray-700);
	line-height: 1.7;
}

.page-content--plain .container {
	max-width: 860px;
}

.page-title {
	font-family: var(--font-display);
	font-size: clamp(30px, 4vw, 40px);
	font-weight: 600;
	font-variation-settings: 'SOFT' 50, 'WONK' 0;
	letter-spacing: -0.02em;
	color: var(--charcoal-deep);
	line-height: 1.2;
}

.page-content {
	padding: 50px 0 80px;
}

.page-content .container {
	max-width: 800px;
}

.page-content h2 {
	font-size: 22px;
	font-weight: 700;
	color: var(--green-dark);
	margin: 30px 0 12px;
}

.page-content p {
	font-size: 15px;
	color: var(--gray-700);
	line-height: 1.8;
	margin-bottom: 16px;
}

/* FAQ */
.faq-list { margin-top: 30px; }

.faq-item {
	border: 1px solid var(--gray-300);
	border-radius: var(--radius-lg);
	margin-bottom: 12px;
	overflow: hidden;
	transition: box-shadow var(--transition);
}
.faq-item.is-open { box-shadow: var(--shadow-sm); }

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 24px;
	background: var(--white);
	border: none;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	color: var(--gray-900);
	text-align: left;
	transition: background var(--transition);
}
.faq-question:hover { background: var(--green-light); }

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.is-open .faq-answer {
	max-height: 300px;
	padding: 0 24px 20px;
}

.faq-answer p {
	font-size: 14px;
	color: var(--gray-700);
	line-height: 1.7;
}

/* Forms */
.outrightcrm-form {
	max-width: 600px;
	margin: 30px auto 0;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 6px;
	color: var(--gray-900);
}

.form-input,
.form-textarea {
	width: 100%;
	padding: 14px 24px;
	border: 1px solid var(--gray-300);
	border-radius: var(--radius-pill);
	font-size: 15px;
	font-family: var(--font-sans);
	outline: none;
	transition: border-color var(--transition), box-shadow var(--transition);
	background: var(--white);
}
.form-textarea {
	border-radius: var(--radius-lg);
	min-height: 120px;
	resize: vertical;
}
.form-input:focus,
.form-textarea:focus {
	border-color: var(--tomato);
	box-shadow: 0 0 0 3px rgba(232, 80, 58, 0.15);
}

.form-checkbox {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
	font-size: 14px;
	color: var(--gray-700);
}
.form-checkbox input { width: 18px; height: 18px; accent-color: var(--green-dark); }

.btn-submit {
	width: 100%;
	padding: 16px;
	background: var(--gradient-accent);
	color: var(--white);
	border: none;
	border-radius: var(--radius-pill);
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all var(--transition);
}
.btn-submit:hover {
	background: linear-gradient(135deg, var(--tomato-dark) 0%, var(--charcoal) 100%);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.form-notice {
	padding: 14px 20px;
	border-radius: var(--radius);
	margin-bottom: 20px;
	font-size: 14px;
}
.form-notice--success { background: var(--tomato-light); color: var(--tomato-dark); border: 1px solid var(--tomato); }
.form-notice--error { background: #fde8e8; color: #c0392b; border: 1px solid #e74c3c; }

.form-card {
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-radius: var(--radius-xl);
	padding: 40px;
	box-shadow: var(--shadow-premium);
	border: 1px solid rgba(255, 255, 255, 0.8);
}

.form-card-title {
	margin-bottom: 8px;
	color: var(--charcoal);
	font-size: 20px;
	font-weight: 700;
}

.form-card-lead,
.author-form-lead {
	text-align: center;
	color: var(--gray-700);
	margin-bottom: 24px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	font-size: 14px;
	line-height: 1.7;
}

.form-card-lead {
	text-align: left;
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

/* About page */
.about-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin: -30px auto 50px;
	max-width: 900px;
	position: relative;
	z-index: 2;
}

.stat-card {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-radius: var(--radius-xl);
	padding: 36px 32px;
	text-align: left;
	box-shadow: var(--shadow-premium);
	border: 1px solid rgba(232, 80, 58, 0.1);
	transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.stat-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-glow);
}

.stat-number {
	display: block;
	font-family: var(--font-serif);
	font-size: 32px;
	font-weight: 700;
	color: var(--green-dark);
	margin-bottom: 6px;
}

.stat-label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--gray-500);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 12px;
}

.stat-desc {
	font-size: 14px;
	color: var(--gray-700);
	line-height: 1.7;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin: 30px 0 50px;
}

.value-card {
	background: var(--white);
	border-radius: var(--radius-xl);
	padding: 28px 24px;
	border-left: 4px solid var(--green);
	box-shadow: var(--shadow-sm);
	transition: all var(--transition);
}
.value-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-left-color: var(--teal);
}

.value-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gradient-accent);
	color: var(--white);
	font-size: 20px;
	margin-bottom: 16px;
}

.value-card h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--green-dark);
	margin-bottom: 10px;
}

.standards-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 20px;
}

.standard-item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 16px 18px;
	background: var(--green-mint);
	border-radius: var(--radius-lg);
}

.standard-item strong {
	display: block;
	color: var(--green-dark);
	margin-bottom: 4px;
}

.page-cta-banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 50px;
	padding: 32px 36px;
	background: var(--gradient-accent);
	border-radius: var(--radius-xl);
	color: var(--white);
	box-shadow: var(--shadow-glow);
}
.page-cta-banner h3 {
	font-size: 22px;
	margin-bottom: 8px;
	color: var(--white);
}
.page-cta-banner p {
	color: rgba(255, 255, 255, 0.95);
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 0;
}
.page-cta-banner .btn--green {
	background: var(--white);
	color: var(--green-dark);
}
.page-cta-banner .btn--green:hover {
	background: var(--cream);
}

/* Updates page */
.updates-timeline {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.update-card {
	background: var(--white);
	border-radius: var(--radius-xl);
	padding: 28px 30px;
	border: 1px solid var(--green-light);
	box-shadow: var(--shadow-sm);
	transition: all var(--transition);
}
.update-card:hover {
	box-shadow: var(--shadow-md);
	border-color: var(--green);
}

.update-card h2 {
	font-size: 20px;
	font-weight: 700;
	color: var(--green-dark);
	margin: 8px 0 12px;
}

.update-date {
	font-size: 13px;
	font-weight: 600;
	color: var(--teal);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.update-card--upcoming {
	background: linear-gradient(135deg, var(--green-mint), var(--teal-light));
	border-style: dashed;
}

.author-form-section {
	margin-top: 50px;
	padding: 40px;
	background: var(--white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
}

.author-form-heading {
	font-family: var(--font-serif);
	font-size: 22px;
	font-weight: 600;
	color: var(--green-dark);
	line-height: 1.5;
	margin-bottom: 24px;
	text-align: center;
}

/* Contact page */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	max-width: 900px;
	margin: 0 auto;
}

.contact-info h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--green-dark);
	margin-bottom: 16px;
}

.contact-detail {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
	font-size: 14px;
	color: var(--gray-700);
}

.contact-detail-icon {
	width: 40px;
	height: 40px;
	background: var(--green-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--green-dark);
	font-size: 18px;
}

/* Email grid (Contact page) */
.email-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	max-width: 960px;
	margin: 0 auto 46px;
}

.email-card {
	display: block;
	background: var(--white);
	border: 1px solid var(--green-light);
	border-radius: var(--radius-lg);
	padding: 24px 20px;
	text-align: left;
	box-shadow: var(--shadow-sm);
	transition: all var(--transition);
}
.email-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: var(--tomato);
}

.email-card-icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gradient-accent);
	font-size: 18px;
	margin-bottom: 14px;
}

.email-card-label {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	color: var(--gray-500);
	margin-bottom: 6px;
}

.email-card-address {
	font-size: 15px;
	font-weight: 700;
	color: var(--tomato-dark);
	word-break: break-word;
	margin-bottom: 8px;
}

.email-card-desc {
	font-size: 13px;
	color: var(--gray-700);
	line-height: 1.5;
}

/* Team grid (About page) */
.team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	margin: 30px 0 10px;
}

.team-card {
	background: var(--white);
	border-radius: var(--radius-xl);
	padding: 26px 20px;
	text-align: center;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--green-light);
	transition: all var(--transition);
}
.team-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.team-avatar {
	width: 68px;
	height: 68px;
	margin: 0 auto 14px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gradient-accent);
	color: var(--white);
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: 22px;
}

.team-card h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--green-dark);
	margin-bottom: 4px;
}

.team-role {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	color: var(--tomato-dark);
}

.team-overview {
	background: var(--white);
	border: 1px solid var(--green-light);
	border-radius: var(--radius-xl);
	padding: 32px 36px;
	box-shadow: var(--shadow-sm);
	margin-top: 24px;
}

.team-overview p {
	font-size: 15px;
	color: var(--gray-700);
	line-height: 1.8;
	margin-bottom: 16px;
}

.team-overview p:last-child {
	margin-bottom: 0;
}

.team-overview-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px 28px;
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--green-light);
}

.team-overview-item strong {
	display: block;
	font-size: 15px;
	color: var(--green-dark);
	margin-bottom: 4px;
}

.team-overview-item span {
	font-size: 14px;
	color: var(--gray-700);
	line-height: 1.6;
}

/* Update tags (Updates page) */
.update-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	color: var(--tomato-dark);
	background: var(--tomato-light);
	padding: 4px 10px;
	border-radius: var(--radius-pill);
	margin-bottom: 10px;
}
.update-card--upcoming .update-tag {
	background: rgba(255,255,255,0.6);
}

/* Single post */
.single-post-header {
	padding: 64px 0 48px;
	background: linear-gradient(168deg, rgba(255, 240, 237, 0.92) 0%, rgba(250, 248, 247, 0.95) 60%, rgba(255, 255, 255, 0.4) 100%);
	position: relative;
	overflow: hidden;
	text-align: center;
}
.single-post-header::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -5%;
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, rgba(232, 80, 58, 0.08) 0%, transparent 70%);
	pointer-events: none;
}
.single-post-title {
	font-family: var(--font-display);
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 600;
	font-variation-settings: 'SOFT' 50, 'WONK' 0;
	letter-spacing: -0.02em;
	color: var(--charcoal-deep);
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.25;
}
.single-post-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 40px 20px 80px;
}
.single-post-content p {
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 20px;
	color: var(--gray-700);
}

/* Footer — Premium Dark Theme */
.site-footer {
	background: var(--gradient-dark);
	color: rgba(255, 255, 255, 0.78);
	padding: 0 0 30px;
	position: relative;
	overflow: hidden;
}

.site-footer::before,
.site-footer::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.site-footer::before {
	top: -160px;
	right: -100px;
	width: 480px;
	height: 480px;
	background: radial-gradient(circle, rgba(232, 80, 58, 0.14) 0%, transparent 68%);
	animation: footerGlow 8s ease-in-out infinite alternate;
}

.site-footer::after {
	bottom: -120px;
	left: -80px;
	width: 360px;
	height: 360px;
	background: radial-gradient(circle, rgba(54, 69, 79, 0.3) 0%, transparent 70%);
}

@keyframes footerGlow {
	from { transform: scale(1) translate(0, 0); opacity: 0.8; }
	to { transform: scale(1.08) translate(-12px, 8px); opacity: 1; }
}

.footer-wave {
	position: absolute;
	top: -1px;
	left: 0;
	right: 0;
	height: 56px;
	background: linear-gradient(180deg, var(--cream) 0%, rgba(250, 248, 247, 0.95) 100%);
	border-radius: 0 0 50% 50% / 0 0 100% 100%;
	transform: scaleX(1.12);
	box-shadow: 0 4px 24px rgba(26, 26, 26, 0.04);
}

.footer-inner {
	position: relative;
	z-index: 1;
	padding-top: 80px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
	gap: 48px;
	margin-bottom: 52px;
}

.footer-about {
	padding: 32px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-xl);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
	transition: border-color var(--transition), box-shadow var(--transition);
}

.footer-about:hover {
	border-color: rgba(232, 80, 58, 0.2);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-brand-wrap {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 18px;
}

.footer-brand {
	font-family: var(--font-display);
	font-size: 24px;
	font-weight: 600;
	font-variation-settings: 'SOFT' 50, 'WONK' 0;
	letter-spacing: -0.02em;
	color: var(--white);
	margin: 0 0 4px;
}

.footer-tagline {
	color: var(--tomato);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 2.5px;
	margin-bottom: 0;
	font-weight: 600;
}

.footer-desc {
	font-size: 14px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.72);
	max-width: 340px;
}

.footer-social {
	display: flex;
	gap: 10px;
	margin-top: 22px;
}

.footer-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.85);
	transition: all var(--transition);
}

.footer-social-link:hover {
	background: var(--tomato);
	border-color: var(--tomato);
	color: var(--white);
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(232, 80, 58, 0.35);
}

.footer-links h4,
.footer-categories h4,
.footer-newsletter h4 {
	color: var(--white);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 12px;
}

.footer-links h4::after,
.footer-categories h4::after,
.footer-newsletter h4::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 36px;
	height: 2px;
	background: var(--gradient-accent);
	border-radius: 2px;
}

.footer-links li,
.footer-categories li { margin-bottom: 11px; }

.footer-links a,
.footer-categories a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.72);
	transition: color var(--transition), padding-left var(--transition);
	display: inline-block;
}

.footer-links a:hover,
.footer-categories a:hover {
	color: var(--tomato);
	padding-left: 6px;
}

.footer-newsletter {
	padding: 32px;
	background: linear-gradient(145deg, rgba(232, 80, 58, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
	border: 1px solid rgba(232, 80, 58, 0.15);
	border-radius: var(--radius-xl);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.footer-newsletter h4::after {
	width: 100%;
	max-width: 48px;
}

.newsletter-form p,
.footer-newsletter > p {
	font-size: 14px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.68);
	margin-bottom: 16px;
}

.newsletter-input-wrap {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.newsletter-form input {
	padding: 14px 18px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.06);
	color: var(--white);
	font-size: 14px;
	outline: none;
	transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.45); }

.newsletter-form input:focus {
	border-color: rgba(232, 80, 58, 0.6);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 0 3px rgba(232, 80, 58, 0.15);
}

.footer-newsletter .btn--green {
	background: var(--gradient-accent);
	border: none;
	box-shadow: 0 4px 16px rgba(232, 80, 58, 0.3);
}

.footer-newsletter .btn--green:hover {
	background: linear-gradient(135deg, var(--tomato-dark) 0%, var(--charcoal) 100%);
	box-shadow: 0 6px 24px rgba(232, 80, 58, 0.4);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 32px;
	text-align: center;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.55);
	background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.15) 100%);
	margin: 0 -20px;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 8px;
}

.footer-credit {
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.45);
	font-size: 12px;
	letter-spacing: 0.3px;
}

/* Newsletter toast */
.newsletter-toast {
	position: fixed;
	bottom: 24px;
	right: 24px;
	left: auto;
	z-index: 10000;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	max-width: 380px;
	padding: 18px 20px;
	background: var(--white);
	border-radius: var(--radius-xl);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
	border-left: 4px solid var(--green);
	opacity: 0;
	transform: translateY(20px) scale(0.96);
	transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
	pointer-events: none;
}
.newsletter-toast.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}
.newsletter-toast-icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--green-light);
	color: var(--green);
	display: flex;
	align-items: center;
	justify-content: center;
}
.newsletter-toast-body strong {
	display: block;
	font-size: 15px;
	color: var(--charcoal-deep);
	margin-bottom: 4px;
}
.newsletter-toast-body p {
	font-size: 13px;
	color: var(--gray-700);
	line-height: 1.5;
	margin: 0;
}
.newsletter-toast-close {
	flex-shrink: 0;
	background: none;
	border: none;
	font-size: 22px;
	line-height: 1;
	color: var(--gray-500);
	cursor: pointer;
	padding: 0;
	margin: -4px -4px 0 0;
	transition: color var(--transition);
}
.newsletter-toast-close:hover { color: var(--charcoal); }

/* ==========================================================================
   Scroll to Top Button
   ========================================================================== */
.scroll-to-top {
	position: fixed;
	bottom: 28px;
	right: 28px;
	z-index: 9999;
	width: 52px;
	height: 52px;
	border: none;
	border-radius: 50%;
	background: var(--gradient-accent);
	color: var(--white);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 24px rgba(232, 80, 58, 0.4), 0 2px 8px rgba(26, 26, 26, 0.15);
	opacity: 0;
	visibility: hidden;
	transform: translateY(16px) scale(0.9);
	transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow var(--transition), background var(--transition);
	pointer-events: none;
}

.scroll-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}

.scroll-to-top:hover {
	background: var(--gradient-accent-deep);
	box-shadow: 0 10px 32px rgba(232, 80, 58, 0.5), 0 4px 12px rgba(26, 26, 26, 0.2);
	transform: translateY(-4px) scale(1.05);
}

.scroll-to-top:active {
	transform: translateY(-2px) scale(1);
}

.scroll-to-top svg {
	width: 22px;
	height: 22px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* Premium card & section enhancements */
.featured-large-card,
.featured-small-card,
.card-fb,
.card-tech,
.card-recent,
.card-credit,
.category-card {
	box-shadow: var(--shadow-premium);
}

.home-section {
	padding: 64px 0;
}

.section-title {
	font-size: clamp(24px, 3vw, 30px);
}

.section-divider {
	height: 3px;
	background: linear-gradient(90deg, var(--tomato) 0%, rgba(54, 69, 79, 0.2) 50%, transparent 100%);
	margin-bottom: 36px;
	border-radius: 3px;
	opacity: 0.85;
}

.page-header--gradient {
	background: linear-gradient(168deg, rgba(255, 248, 246, 0.98) 0%, rgba(255, 240, 237, 0.88) 40%, rgba(232, 234, 237, 0.35) 100%);
	padding: 88px 0 64px;
}

.archive-header {
	padding: 64px 0 44px;
	background: linear-gradient(168deg, rgba(255, 240, 237, 0.92) 0%, rgba(250, 248, 247, 0.95) 60%, rgba(255, 255, 255, 0.5) 100%);
}

.knowledge-section {
	background: linear-gradient(180deg, rgba(255, 240, 237, 0.55) 0%, rgba(255, 248, 246, 0.9) 50%, rgba(255, 240, 237, 0.55) 100%);
	padding: 88px 0;
}

.testimonials-section {
	background: linear-gradient(180deg, var(--tomato-light) 0%, rgba(255, 248, 246, 0.6) 100%);
	padding: 72px 0 88px;
}

.mega-panel-inner {
	background: linear-gradient(168deg, rgba(255,255,255,0.97) 0%, rgba(255,248,246,0.92) 50%, rgba(232, 240, 237, 0.4) 100%);
	border: 1px solid rgba(255, 255, 255, 0.8);
}

.search-dropdown.is-open {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 248, 247, 0.98) 100%);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

/* Responsive */
@media (max-width: 1200px) {
	.mega-columns { grid-template-columns: repeat(3, 1fr); }
	.nav-link { padding: 10px 10px; font-size: 13px; }
}

@media (max-width: 1024px) {
	.mega-columns { grid-template-columns: repeat(2, 1fr); }
	.grid-4 { grid-template-columns: repeat(2, 1fr); }
	.testimonials-grid { grid-template-columns: repeat(2, 1fr); }
	.info-blocks-grid { grid-template-columns: repeat(2, 1fr); }
	.featured-grid { grid-template-columns: 1fr; }
	.tech-layout { grid-template-columns: 1fr; }
	.browse-category { max-height: none !important; }
	.browse-category-list { max-height: none !important; overflow: visible; }
	.category-card { flex: 0 0 calc(33.333% - 14px); }
	.footer-grid { grid-template-columns: repeat(2, 1fr); }
	.about-stats { grid-template-columns: 1fr; }
	.values-grid { grid-template-columns: 1fr 1fr; }
	.email-grid { grid-template-columns: repeat(2, 1fr); }
	.team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
	.container { padding: 0 16px; }
	.home-section { padding: 36px 0; }
	.mobile-menu-toggle { display: flex; }

	.site-header:has(.nav-item:hover) .header-top::after,
	.site-header:has(.nav-item.is-open) .header-top::after {
		opacity: 0;
	}

	.header-top::after {
		display: none;
	}

	.footer-about,
	.footer-newsletter {
		padding: 22px;
	}

	.nav-list {
		position: fixed;
		top: var(--header-h);
		left: 0;
		right: 0;
		bottom: 0;
		background: var(--white);
		flex-direction: column;
		align-items: stretch;
		padding: 20px;
		gap: 0;
		transform: translateX(100%);
		transition: transform var(--transition);
		overflow-y: auto;
		z-index: 999;
	}
	.nav-list.is-open { transform: translateX(0); }

	.nav-dropdown-trigger {
		display: flex;
		width: 100%;
		align-items: center;
	}

	.nav-link--category {
		flex: 1;
		border-radius: var(--radius-pill);
		padding-right: 16px;
	}

	.nav-link--toggle {
		flex-shrink: 0;
		border-radius: var(--radius-pill);
		margin-left: 0;
	}

	.dropdown-panel,
	.mega-panel,
	.submenu-panel {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		width: 100%;
		max-width: none;
		left: auto;
		box-shadow: none;
		border: none;
		border-radius: var(--radius-lg);
		display: none;
		pointer-events: auto;
	}
	.nav-item.is-open .dropdown-panel,
	.nav-item.is-open .mega-panel { display: block; }
	.dropdown-item.is-open .submenu-panel { display: block; }

	.mega-panel-inner { flex-direction: column; padding: 20px 0; }
	.mega-columns { grid-template-columns: 1fr; gap: 20px; }

	.grid-4, .grid-3 { grid-template-columns: 1fr; }
	.featured-small-grid { grid-template-columns: 1fr; }
	.knowledge-grid { grid-template-columns: 1fr; }
	.testimonials-grid { grid-template-columns: 1fr; }
	.info-blocks-grid { grid-template-columns: 1fr; }
	.form-row { grid-template-columns: 1fr; }
	.contact-grid { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; gap: 32px; }
	.category-card { flex: 0 0 85%; min-width: 0; }
	.category-carousel-shell { padding: 20px 16px; }
	.category-carousel { padding: 8px 4px 12px; }
	.about-stats { grid-template-columns: 1fr; }
	.team-overview-list { grid-template-columns: 1fr; }
	.values-grid { grid-template-columns: 1fr; }
	.standards-list { grid-template-columns: 1fr; }
	.page-cta-banner { flex-direction: column; text-align: center; }
	.email-grid { grid-template-columns: 1fr; }
	.team-grid { grid-template-columns: 1fr 1fr; }
	.section-header { flex-wrap: wrap; gap: 12px; }
	.newsletter-toast {
		left: 16px;
		right: 16px;
		bottom: 16px;
		max-width: none;
	}
	.scroll-to-top {
		bottom: 20px;
		right: 20px;
		width: 48px;
		height: 48px;
	}
}
