/* ==========================================================================
   EXECUTIVE IT CONSULTANT DESIGN SYSTEM (Midnight Navy & Metallic Gold)
   Based on reference webku.png
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800&display=swap');

:root {
	--color-navy-dark: #070d18;
	--color-navy-main: #0b1526;
	--color-navy-surface: #101e36;
	--color-navy-card: #152642;
	
	--color-gold-main: #d4af37;
	--color-gold-light: #f3e5ab;
	--color-gold-dark: #a38020;
	--gradient-gold: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #aa7c11 100%);
	
	--color-maroon: #800020;
	--color-maroon-light: #a31638;
	
	--color-bg-light: #f4f6f9;
	--color-text-dark: #0f172a;
	--color-text-muted: #64748b;
	--color-text-light: #f8fafc;
	--color-text-dim: #94a3b8;
	
	--font-heading: 'Outfit', -apple-system, sans-serif;
	--font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
	
	--border-light: rgba(255, 255, 255, 0.1);
	--border-gold: rgba(212, 175, 55, 0.35);
	
	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 20px;
	
	--shadow-glow: 0 0 35px rgba(212, 175, 55, 0.25);
	--shadow-card: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--font-body);
	background-color: var(--color-navy-dark);
	color: var(--color-text-light);
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

a {
	color: inherit;
	text-decoration: none;
	transition: all 0.3s ease;
}

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

.container {
	width: 90%;
	max-width: 1240px;
	margin: 0 auto;
}

/* ==========================================================================
   TYPOGRAPHY & ACCENTS
   ========================================================================== */
.text-gold-gradient {
	background: var(--gradient-gold);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

.text-gold {
	color: var(--color-gold-main);
}

.section-label {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.15em;
	color: var(--color-gold-main);
	margin-bottom: 0.75rem;
	text-transform: uppercase;
}

.section-heading {
	font-family: var(--font-heading);
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.02em;
	margin-bottom: 1rem;
}

.section-subtext {
	color: var(--color-text-muted);
	font-size: 1.05rem;
	max-width: 650px;
}

.section-header.center {
	text-align: center;
	margin-bottom: 3.5rem;
}

.section-header.center .section-subtext {
	margin: 0 auto;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.75rem;
	font-family: var(--font-heading);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-gold {
	background: var(--gradient-gold);
	color: var(--color-navy-dark);
	border: none;
	box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-outline-light {
	background: transparent;
	color: var(--color-text-light);
	border: 1px solid var(--border-light);
}

.btn-outline-light:hover {
	border-color: var(--color-gold-main);
	color: var(--color-gold-main);
	background: rgba(212, 175, 55, 0.05);
}

.btn-block {
	width: 100%;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(7, 13, 24, 0.9);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border-light);
	padding: 1.1rem 0;
	transition: all 0.3s ease;
}

.site-header.scrolled {
	padding: 0.75rem 0;
	box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

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

.brand-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.logo-icon {
	width: 40px;
	height: 40px;
	background: var(--color-navy-card);
	border: 1px solid var(--color-gold-main);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 1.3rem;
	box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.2);
}

.logo-icon-sm {
	width: 32px;
	height: 32px;
	font-size: 1rem;
}

.logo-i { color: #ffffff; }
.logo-t { color: var(--color-gold-main); }

.brand-text {
	display: flex;
	flex-direction: column;
}

.brand-name {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.1rem;
	line-height: 1.1;
	letter-spacing: -0.01em;
}

.brand-tag {
	font-size: 0.65rem;
	font-weight: 700;
	color: var(--color-gold-main);
	letter-spacing: 0.12em;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.nav-link {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--color-text-dim);
}

.nav-link:hover, .nav-link.active {
	color: var(--color-gold-main);
}

.nav-sep {
	color: rgba(255, 255, 255, 0.2);
	font-size: 0.75rem;
}

.btn-consultation {
	background: var(--color-maroon);
	color: #ffffff;
	padding: 0.6rem 1.2rem;
	border-radius: var(--radius-sm);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	border: 1px solid var(--color-maroon-light);
	transition: all 0.3s ease;
}

.btn-consultation:hover {
	background: var(--color-maroon-light);
	box-shadow: 0 4px 15px rgba(128, 0, 32, 0.4);
}

.nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	flex-direction: column;
	gap: 5px;
}

.nav-toggle span {
	width: 24px;
	height: 2px;
	background: var(--color-text-light);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
	position: relative;
	padding: 11rem 0 6rem;
	background: radial-gradient(circle at 70% 30%, #13233f 0%, #070d18 70%);
	overflow: hidden;
}

.hero-bg-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 1px);
	background-size: 40px 40px;
	pointer-events: none;
	opacity: 0.6;
}

.hero-inner {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	align-items: center;
	gap: 4rem;
	position: relative;
	z-index: 2;
}

.badge-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(128, 0, 32, 0.25);
	border: 1px solid rgba(128, 0, 32, 0.5);
	padding: 0.4rem 1rem;
	border-radius: 50px;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	color: #ff94ab;
	margin-bottom: 1.5rem;
}

.badge-dot {
	width: 8px;
	height: 8px;
	background: #ff3b68;
	border-radius: 50%;
	box-shadow: 0 0 10px #ff3b68;
}

.hero-headline {
	font-family: var(--font-heading);
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.03em;
	margin-bottom: 1.5rem;
	text-transform: uppercase;
}

.hero-subheadline {
	font-size: 1.15rem;
	color: var(--color-text-dim);
	margin-bottom: 2.5rem;
	max-width: 600px;
	line-height: 1.6;
}

.hero-cta-group {
	display: flex;
	gap: 1.25rem;
}

.executive-photo-wrapper {
	position: relative;
}

.photo-glow-effect {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
	z-index: 1;
}

.photo-card-frame {
	position: relative;
	z-index: 2;
	background: var(--color-navy-surface);
	border: 2px solid var(--color-gold-main);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-card), var(--shadow-glow);
}

.executive-portrait {
	width: 100%;
	height: 420px;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.photo-badge {
	position: absolute;
	bottom: 15px;
	left: 15px;
	right: 15px;
	background: rgba(7, 13, 24, 0.85);
	backdrop-filter: blur(8px);
	border: 1px solid var(--border-gold);
	padding: 0.75rem 1rem;
	border-radius: var(--radius-sm);
}

.photo-badge .badge-title {
	display: block;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1rem;
	color: #ffffff;
}

.photo-badge .badge-sub {
	display: block;
	font-size: 0.75rem;
	color: var(--color-gold-main);
	font-weight: 600;
}

/* ==========================================================================
   CLIENTS STRIP
   ========================================================================== */
.clients-strip {
	background: var(--color-navy-main);
	border-top: 1px solid var(--border-light);
	border-bottom: 1px solid var(--border-light);
	padding: 2.5rem 0;
}

.clients-title {
	text-align: center;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	color: var(--color-text-dim);
	margin-bottom: 1.5rem;
}

.clients-logos {
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	gap: 2rem;
}

.client-brand {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.4);
	transition: color 0.3s ease;
}

.client-brand:hover {
	color: var(--color-gold-main);
}

.platform-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
	text-align: center;
}

.platform-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.platform-icon {
	width: 56px;
	height: 56px;
	background: rgba(212, 175, 55, 0.1);
	border: 1px solid var(--border-gold);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-gold-main);
	margin-bottom: 1rem;
}

.platform-icon .svg-icon {
	width: 28px;
	height: 28px;
}

.platform-title {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 0.5rem;
}

.platform-desc {
	font-size: 0.88rem;
	color: var(--color-text-dim);
	max-width: 260px;
	line-height: 1.55;
}

/* ==========================================================================
   ABOUT / FOUNDER SECTION
   ========================================================================== */
.about-section {
	padding: 7rem 0;
	background: var(--color-bg-light);
	color: var(--color-text-dark);
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-card-quote {
	background: #ffffff;
	border-radius: var(--radius-md);
	padding: 3rem 2.5rem;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
	position: relative;
	border-left: 4px solid var(--color-maroon);
}

.quote-icon {
	font-family: Georgia, serif;
	font-size: 5rem;
	line-height: 1;
	color: var(--color-maroon);
	opacity: 0.2;
	position: absolute;
	top: 15px;
	right: 25px;
}

.quote-text {
	font-size: 1.15rem;
	line-height: 1.7;
	color: var(--color-text-dark);
	font-style: italic;
	margin-bottom: 2rem;
	position: relative;
	z-index: 2;
}

.quote-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.author-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid var(--color-gold-main);
}

.author-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.author-info h4 {
	font-family: var(--font-heading);
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--color-text-dark);
}

.author-info p {
	font-size: 0.8rem;
	color: var(--color-text-muted);
}

.about-details .section-heading {
	color: var(--color-text-dark);
}

.about-details .section-desc {
	color: var(--color-text-muted);
	margin-bottom: 2rem;
	font-size: 1.05rem;
}

.expertise-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.pill-item {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--color-text-dark);
	box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.pill-check {
	color: var(--color-maroon);
	font-weight: 800;
	margin-right: 0.3rem;
}

/* ==========================================================================
   SERVICES SECTION (GOLD GRID)
   ========================================================================== */
.services-section {
	padding: 7rem 0;
	background: var(--color-navy-dark);
}

.services-gold-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
	gap: 2rem;
}

.service-gold-card {
	background: var(--color-navy-surface);
	border: 1px solid var(--border-gold);
	border-radius: var(--radius-md);
	padding: 2.5rem 2rem;
	position: relative;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	display: flex;
	flex-direction: column;
}

.service-gold-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-glow);
	border-color: var(--color-gold-main);
	background: var(--color-navy-card);
}

.service-card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
}

.service-icon-box {
	width: 50px;
	height: 50px;
	background: rgba(212, 175, 55, 0.1);
	border: 1px solid var(--border-gold);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-gold-main);
}

.service-icon-box .svg-icon {
	width: 26px;
	height: 26px;
}

.service-badge {
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	color: var(--color-gold-main);
	background: rgba(212, 175, 55, 0.15);
	padding: 0.25rem 0.6rem;
	border-radius: 4px;
}

.service-title {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #ffffff;
}

.service-text {
	font-size: 0.9rem;
	color: var(--color-text-dim);
	margin-bottom: 2rem;
	flex-grow: 1;
	line-height: 1.6;
}

.service-link {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: var(--color-gold-main);
	text-transform: uppercase;
}

.service-gold-card:hover .service-link {
	color: #ffffff;
}

/* ==========================================================================
   CASE STUDIES SECTION
   ========================================================================== */
.casestudies-section {
	padding: 7rem 0;
	background: var(--color-navy-main);
	border-top: 1px solid var(--border-light);
}

.casestudies-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
}

.casestudy-card {
	background: var(--color-navy-surface);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: all 0.3s ease;
}

.casestudy-card:hover {
	border-color: var(--border-gold);
	transform: translateY(-5px);
}

.casestudy-thumb {
	height: 200px;
	position: relative;
	overflow: hidden;
	background: var(--color-navy-card);
}

.casestudy-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.casestudy-card:hover .casestudy-thumb img {
	transform: scale(1.08);
}

.casestudy-thumb-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(circle, #1a2f52 0%, #0c1729 100%);
}

.placeholder-icon {
	font-size: 3rem;
	opacity: 0.4;
}

.casestudy-tag {
	position: absolute;
	top: 15px;
	left: 15px;
	background: var(--color-maroon);
	color: #ffffff;
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	padding: 0.3rem 0.75rem;
	border-radius: 4px;
}

.casestudy-body {
	padding: 1.75rem;
}

.casestudy-title {
	font-family: var(--font-heading);
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: #ffffff;
}

.casestudy-desc {
	font-size: 0.88rem;
	color: var(--color-text-dim);
	line-height: 1.5;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
	padding: 7rem 0;
	background: radial-gradient(circle at 30% 50%, #101e36 0%, #070d18 80%);
}

.contact-card-wrapper {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 4rem;
	background: var(--color-navy-surface);
	border: 1px solid var(--border-gold);
	border-radius: var(--radius-lg);
	padding: 4rem;
	box-shadow: var(--shadow-card);
}

.contact-heading {
	font-family: var(--font-heading);
	font-size: 2.25rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.contact-lead {
	color: var(--color-text-dim);
	margin-bottom: 2.5rem;
	font-size: 1rem;
}

.contact-info-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.info-item {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.info-icon {
	width: 44px;
	height: 44px;
	background: rgba(212, 175, 55, 0.1);
	border: 1px solid var(--border-gold);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-gold-main);
	font-size: 1.2rem;
}

.info-text span {
	display: block;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	color: var(--color-text-dim);
}

.info-text strong {
	font-size: 0.95rem;
	color: #ffffff;
}

.consultation-form {
	background: var(--color-navy-card);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-md);
	padding: 2.5rem;
}

.form-title {
	font-family: var(--font-heading);
	font-size: 1.35rem;
	font-weight: 700;
	margin-bottom: 1.75rem;
	color: #ffffff;
}

.form-group-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.form-group {
	margin-bottom: 1.25rem;
}

.consultation-form label {
	display: block;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	color: var(--color-text-dim);
	margin-bottom: 0.5rem;
}

.consultation-form input,
.consultation-form textarea {
	width: 100%;
	background: var(--color-navy-surface);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-sm);
	padding: 0.85rem 1rem;
	color: #ffffff;
	font-family: var(--font-body);
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.consultation-form input:focus,
.consultation-form textarea:focus {
	outline: none;
	border-color: var(--color-gold-main);
	box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.form-note {
	margin-top: 1rem;
	font-size: 0.85rem;
	text-align: center;
}

.form-note.success { color: #4ade80; }
.form-note.error { color: #f87171; }

.form-wa-alt {
	margin-top: 1.25rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--border-light);
	text-align: center;
	font-size: 0.85rem;
	color: var(--color-text-dim);
}

.form-wa-alt a {
	color: #25D366;
	font-weight: 700;
}

.form-wa-alt a:hover {
	text-decoration: underline;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
	background: #040810;
	border-top: 1px solid var(--border-light);
	padding: 3rem 0;
	font-size: 0.85rem;
	color: var(--color-text-dim);
}

.footer-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-left {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

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

.footer-nav a {
	color: var(--color-text-dim);
}

.footer-nav a:hover {
	color: var(--color-gold-main);
}

/* ==========================================================================
   REVEAL ANIMATIONS (MATCH JS is-visible)
   ========================================================================== */
[data-reveal] {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
	.hero-inner {
		grid-template-columns: 1fr;
		gap: 3rem;
		text-align: center;
	}
	
	.hero-subheadline {
		margin-left: auto;
		margin-right: auto;
	}
	
	.hero-cta-group {
		justify-content: center;
	}
	
	.about-grid {
		grid-template-columns: 1fr;
	}
	
	.contact-card-wrapper {
		grid-template-columns: 1fr;
		padding: 2.5rem;
	}
}

@media (max-width: 768px) {
	.site-nav, .btn-consultation {
		display: none;
	}
	
	.nav-toggle {
		display: flex;
	}
	
	.hero-headline {
		font-size: 2.5rem;
	}
	
	.form-group-row {
		grid-template-columns: 1fr;
	}

	.platform-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

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

/* ==========================================================================
   DOWNLOAD TEASER BANNER (homepage)
   ========================================================================== */
.download-teaser {
	padding: 4.5rem 0;
	background: var(--color-navy-card);
	border-top: 1px solid var(--border-gold);
	border-bottom: 1px solid var(--border-gold);
}

.download-teaser-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.download-teaser-heading {
	font-family: var(--font-heading);
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.download-teaser-text {
	color: var(--color-text-dim);
	max-width: 480px;
}

/* ==========================================================================
   DOWNLOAD PAGE
   ========================================================================== */
.download-hero {
	position: relative;
	padding: 9rem 0 4rem;
	background: radial-gradient(circle at 70% 30%, #13233f 0%, #070d18 70%);
	overflow: hidden;
}

.download-hero-overlay {
	position: absolute;
	top: 0; left: 0; width: 100%; height: 100%;
	background-image: radial-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 1px);
	background-size: 40px 40px;
	pointer-events: none;
	opacity: 0.6;
}

.download-hero .container { position: relative; z-index: 2; }

.download-heading {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.download-lead {
	color: var(--color-text-dim);
	font-size: 1.05rem;
	max-width: 560px;
}

.download-section {
	padding: 4rem 0 7rem;
	background: var(--color-navy-dark);
}

.download-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.download-card {
	background: var(--color-navy-surface);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-md);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
}

.download-card:hover {
	border-color: var(--border-gold);
	transform: translateY(-5px);
}

.download-thumb {
	height: 170px;
	position: relative;
	overflow: hidden;
	background: var(--color-navy-card);
}

.download-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.download-thumb-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(circle, #1a2f52 0%, #0c1729 100%);
}

.download-thumb-placeholder .placeholder-icon {
	font-size: 3rem;
	opacity: 0.5;
}

.download-kategori-tag {
	position: absolute;
	top: 15px;
	left: 15px;
	background: var(--color-maroon);
	color: #ffffff;
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	padding: 0.3rem 0.75rem;
	border-radius: 4px;
	text-transform: uppercase;
}

.download-body {
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.download-title {
	font-family: var(--font-heading);
	font-size: 1.15rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 0.6rem;
}

.download-desc {
	font-size: 0.88rem;
	color: var(--color-text-dim);
	line-height: 1.55;
	margin-bottom: 1rem;
	flex-grow: 1;
}

.download-meta {
	display: flex;
	gap: 1rem;
	font-size: 0.78rem;
	color: var(--color-gold-main);
	font-weight: 700;
	margin-bottom: 1.25rem;
}

.empty-note-dark {
	grid-column: 1 / -1;
	text-align: center;
	color: var(--color-text-dim);
	padding: 3rem 0;
}

.download-disclaimer {
	margin-top: 3rem;
	text-align: center;
	font-size: 0.8rem;
	color: var(--color-text-dim);
	opacity: 0.75;
}

@media (max-width: 640px) {
	.download-teaser-inner { flex-direction: column; align-items: flex-start; text-align: left; }
	.download-heading { font-size: 2rem; }
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.wa-float {
	position: fixed;
	bottom: 25px;
	right: 25px;
	width: 60px;
	height: 60px;
	background-color: #25D366;
	color: #ffffff;
	border-radius: 50px;
	text-align: center;
	box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	animation: waPulse 2s infinite;
}

.wa-float:hover {
	transform: scale(1.1);
	background-color: #20ba5a;
	box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.wa-icon {
	width: 34px;
	height: 34px;
}

.wa-tooltip {
	position: absolute;
	right: 70px;
	background: rgba(7, 13, 24, 0.9);
	color: #ffffff;
	padding: 0.5rem 1rem;
	border-radius: 6px;
	font-size: 0.78rem;
	font-weight: 700;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: all 0.3s ease;
	border: 1px solid rgba(212, 175, 55, 0.3);
	box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.wa-float:hover .wa-tooltip {
	opacity: 1;
	visibility: visible;
	right: 75px;
}

@keyframes waPulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
	}
	70% {
		box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
	}
}
