/* ============================================
   GESTUN ONLINE - Main Stylesheet
   Mobile-first responsive design
============================================ */

/* ============================================
   DESIGN TOKENS
============================================ */
:root {
	/* Brand colors (from logo) */
	--navy-900: #0F172A;
	--navy-800: #1E293B;
	--navy-700: #1E3A8A;
	--navy-600: #2563EB;
	--navy-500: #3B82F6;
	--navy-100: #DBEAFE;
	--navy-50: #EFF6FF;

	--yellow-500: #F4B83F;
	--yellow-400: #FBBF24;
	--yellow-100: #FEF3C7;

	--green-wa: #25D366;
	--green-wa-dark: #1FAB52;
	--green-500: #10B981;
	--green-100: #D1FAE5;

	--red-500: #EF4444;
	--red-600: #DC2626;
	--red-100: #FEE2E2;

	/* Neutrals */
	--white: #FFFFFF;
	--gray-50: #F9FAFB;
	--gray-100: #F3F4F6;
	--gray-200: #E5E7EB;
	--gray-300: #D1D5DB;
	--gray-400: #9CA3AF;
	--gray-500: #6B7280;
	--gray-600: #4B5563;
	--gray-700: #374151;
	--gray-800: #1F2937;
	--gray-900: #111827;

	/* Semantic */
	--text-primary: var(--gray-800);
	--text-secondary: var(--gray-500);
	--text-muted: var(--gray-400);
	--text-on-dark: var(--white);
	--bg-primary: var(--white);
	--bg-secondary: var(--gray-50);
	--border: var(--gray-200);
	--brand-primary: var(--navy-700);
	--brand-accent: var(--yellow-500);

	/* Typography */
	--font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--text-xs: 0.75rem;
	--text-sm: 0.875rem;
	--text-base: 1rem;
	--text-lg: 1.125rem;
	--text-xl: 1.25rem;
	--text-2xl: 1.5rem;
	--text-3xl: 1.875rem;
	--text-4xl: 2.25rem;
	--text-5xl: 3rem;

	/* Spacing */
	--space-1: 0.25rem;
	--space-2: 0.5rem;
	--space-3: 0.75rem;
	--space-4: 1rem;
	--space-5: 1.25rem;
	--space-6: 1.5rem;
	--space-8: 2rem;
	--space-10: 2.5rem;
	--space-12: 3rem;
	--space-16: 4rem;
	--space-20: 5rem;
	--space-24: 6rem;

	/* Radius */
	--radius-sm: 0.375rem;
	--radius: 0.5rem;
	--radius-md: 0.75rem;
	--radius-lg: 1rem;
	--radius-xl: 1.5rem;
	--radius-full: 9999px;

	/* Shadows */
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

	/* Layout */
	--container-max: 1200px;
	--header-height: 72px;

	/* Transitions */
	--ease: cubic-bezier(0.4, 0, 0.2, 1);
	--transition: 200ms var(--ease);
}

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

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: var(--text-base);
	line-height: 1.6;
	color: var(--text-primary);
	background: var(--bg-primary);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	min-width: 320px;
	overflow-x: clip;
	max-width: 100vw;
}

html {
	overflow-x: clip;
	max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 var(--space-4);
	font-weight: 700;
	line-height: 1.2;
	color: var(--text-primary);
}

p { margin: 0 0 var(--space-4); }
a { color: var(--brand-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy-600); }

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

ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================
   ICONS
============================================ */
.gicon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.gicon svg {
	width: 1em;
	height: 1em;
}

/* ============================================
   LAYOUT
============================================ */
.container {
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--space-4);
}

.site-main {
	min-height: 50vh;
}

/* ============================================
   PLACEHOLDERS
============================================ */
.placeholder {
	display: inline-block;
	overflow: hidden;
	background: var(--gray-100);
}
.placeholder-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}
.placeholder-chat {
	width: 100%;
	aspect-ratio: 2 / 1;
	border-radius: var(--radius);
}
.placeholder-hero {
	width: 100%;
	max-width: 540px;
	background: transparent;
}
.placeholder-hero svg {
	display: block;
	width: 100%;
	height: auto;
}

/* ============================================
   BUTTONS
============================================ */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-3);
	padding: var(--space-4) var(--space-6);
	font-size: var(--text-base);
	font-weight: 600;
	line-height: 1.2;
	border-radius: var(--radius-lg);
	transition: all var(--transition);
	cursor: pointer;
	text-align: center;
	max-width: 100%;
}

/* Short buttons stay on single line */
.btn-wa-header,
.btn-sm,
.btn-urgency {
	white-space: nowrap;
}

.btn .gicon {
	font-size: 1.25em;
}

/* WhatsApp button */
.btn-wa {
	background: var(--green-wa);
	color: var(--white);
	box-shadow: var(--shadow-md);
}
.btn-wa:hover {
	background: var(--green-wa-dark);
	color: var(--white);
	transform: translateY(-1px);
	box-shadow: var(--shadow-lg);
}

.btn-wa-header {
	padding: var(--space-3) var(--space-5);
	font-size: var(--text-sm);
	border-radius: var(--radius-full);
	background: var(--green-wa);
	color: var(--white);
	box-shadow: var(--shadow-sm);
	flex-shrink: 0;
}
.btn-wa-header:hover {
	background: var(--green-wa-dark);
	color: var(--white);
}

.btn-hero {
	width: 100%;
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: var(--space-2) var(--space-3);
	align-items: center;
	padding: var(--space-3) var(--space-4);
	border-radius: var(--radius-lg);
	text-align: left;
}
.btn-hero .gicon {
	font-size: 1.5em;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	width: 48px;
	height: 48px;
	grid-row: span 2;
	flex-shrink: 0;
}
.btn-hero .btn-main {
	display: block;
	font-size: var(--text-sm);
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.3;
	overflow-wrap: anywhere;
	min-width: 0;
}
.btn-hero .btn-sub {
	display: block;
	font-size: var(--text-xs);
	opacity: 0.9;
	font-weight: 500;
	overflow-wrap: anywhere;
	min-width: 0;
}

.btn-urgency {
	background: var(--yellow-500);
	color: var(--gray-900);
	font-weight: 700;
	border-radius: var(--radius-md);
}
.btn-urgency:hover {
	background: var(--yellow-400);
	color: var(--gray-900);
	transform: translateY(-1px);
}

.btn-final {
	background: var(--green-wa);
	color: var(--white);
	padding: var(--space-4) var(--space-5);
	max-width: 100%;
}
.btn-final .gicon {
	font-size: 1.5em;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	width: 44px;
	height: 44px;
	flex-shrink: 0;
}
.btn-final .btn-final-text {
	text-align: left;
	flex: 1;
	min-width: 0;
}
.btn-final .btn-main {
	display: block;
	font-weight: 700;
	font-size: var(--text-sm);
	line-height: 1.3;
	overflow-wrap: anywhere;
}
.btn-final .btn-sub {
	display: block;
	font-size: var(--text-xs);
	opacity: 0.9;
	margin-top: 2px;
	overflow-wrap: anywhere;
}

.btn-help {
	width: 100%;
}
.btn-bottom {
	padding: var(--space-4) var(--space-6);
}
.btn-sm {
	padding: var(--space-2) var(--space-4);
	font-size: var(--text-sm);
}
.btn-outline {
	background: transparent;
	color: var(--brand-primary);
	border: 2px solid var(--brand-primary);
}
.btn-outline:hover {
	background: var(--brand-primary);
	color: var(--white);
}

/* ============================================
   HEADER (desktop-first, mobile compact via media query)
============================================ */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--white);
	border-bottom: 1px solid var(--border);
	min-height: var(--header-height);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--header-height);
	gap: var(--space-4);
	flex-wrap: nowrap;
}

.site-logo {
	display: flex;
	align-items: center;
	color: var(--text-primary);
	flex-shrink: 0;
	min-width: 0;
}
.site-logo img {
	max-height: 48px;
	width: auto;
}
.logo-fallback {
	display: flex;
	align-items: center;
	gap: var(--space-2);
}
.logo-fallback svg {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
}
.logo-text {
	display: flex;
	flex-direction: column;
	line-height: 1;
	min-width: 0;
}
.logo-text-main {
	font-weight: 800;
	font-size: var(--text-lg);
	color: var(--navy-700);
	letter-spacing: -0.02em;
	white-space: nowrap;
}
.logo-text-accent {
	color: var(--navy-500);
}
.logo-text-sub {
	font-size: 0.65rem;
	color: var(--text-secondary);
	margin-top: 2px;
	font-weight: 500;
}

.site-nav {
	display: flex;
	align-items: center;
	flex-grow: 1;
	justify-content: center;
	min-width: 0;
}

.nav-menu {
	display: flex;
	gap: var(--space-6);
}
.nav-menu a {
	color: var(--text-primary);
	font-weight: 600;
	font-size: var(--text-sm);
	padding: var(--space-2) var(--space-1);
	position: relative;
	transition: color var(--transition);
	white-space: nowrap;
}
.nav-menu a:hover,
.nav-menu a.current {
	color: var(--navy-700);
}
.nav-menu a.current::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 3px;
	background: var(--yellow-500);
	border-radius: 2px;
}

/* MOBILE HEADER OVERRIDES (compact for < 768px) */
@media (max-width: 767px) {
	.header-inner {
		gap: var(--space-3);
	}
	/* Mobile: nav no longer flex-grows, sits naturally between logo and WA */
	.site-nav {
		flex-grow: 0;
		justify-content: flex-end;
	}
	.nav-menu {
		gap: var(--space-4);
	}
	.site-logo img {
		max-height: 40px;
	}
	.logo-fallback svg {
		width: 32px;
		height: 32px;
	}
	.logo-text-main {
		font-size: var(--text-base);
	}
	.logo-text-sub {
		display: none;
	}
	/* WA button becomes icon-only circle on mobile */
	.btn-wa-header {
		width: 46px;
		height: 46px;
		padding: 0;
		border-radius: 50%;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}
	.btn-wa-header .wa-text {
		display: none;
	}
	.btn-wa-header .gicon {
		font-size: 1.6em;
	}
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
	background: linear-gradient(180deg, var(--navy-50) 0%, var(--navy-100) 100%);
	padding: var(--space-8) 0 var(--space-12);
	position: relative;
	overflow: hidden;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-areas:
		"badge  badge"
		"title  image"
		"trust  trust"
		"cta    cta"
		"social social";
	gap: var(--space-4) var(--space-3);
	align-items: start;
}
.hero-grid > .hero-badge {
	grid-area: badge;
	justify-self: start;
}
.hero-grid > .hero-title-block {
	grid-area: title;
	align-self: center;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}
.hero-grid > .hero-image {
	grid-area: image;
	align-self: center;
	min-width: 0;
}
.hero-grid > .hero-badges {
	grid-area: trust;
}
.hero-grid > .btn-hero {
	grid-area: cta;
}
.hero-grid > .social-proof {
	grid-area: social;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	background: var(--white);
	padding: var(--space-2) var(--space-4);
	border-radius: var(--radius-full);
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--gray-800);
	box-shadow: var(--shadow-sm);
	align-self: flex-start;
}
.status-dot {
	width: 10px;
	height: 10px;
	background: var(--green-500);
	border-radius: 50%;
	animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.7; transform: scale(1.1); }
}

.hero-title {
	font-size: 1.5rem;
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--gray-900);
	margin: 0;
	overflow-wrap: break-word;
}
.hero-title-line {
	display: block;
}
.hero-title-line.highlight {
	color: var(--navy-600);
}

.hero-subtitle {
	font-size: var(--text-sm);
	color: var(--gray-700);
	max-width: 480px;
	margin: 0;
}

.hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-4);
}
.trust-badge {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	color: var(--navy-700);
	font-size: var(--text-sm);
	font-weight: 600;
}
.trust-badge .gicon {
	font-size: 1.25em;
	color: var(--navy-600);
}

/* Mobile: keep all 3 trust badges on a single row */
@media (max-width: 767px) {
	.hero-badges {
		flex-wrap: nowrap;
		justify-content: space-between;
		gap: var(--space-2);
		width: 100%;
	}
	.trust-badge {
		font-size: var(--text-xs);
		gap: var(--space-1);
		white-space: nowrap;
		min-width: 0;
	}
	.trust-badge .gicon {
		font-size: 1.1em;
	}
	.trust-badge span {
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

.hero-image {
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero-image img {
	max-width: 100%;
	width: auto;
	max-height: 400px;
	height: auto;
}
.hero-image .placeholder {
	width: 100%;
	max-width: 540px;
	max-height: 400px;
}

.social-proof {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	background: var(--white);
	padding: var(--space-3);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	flex-wrap: wrap;
	max-width: 100%;
}
.social-proof-avatars {
	display: flex;
	flex-shrink: 0;
}
.social-proof-avatars img,
.social-proof-avatars .placeholder {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid var(--white);
	margin-left: -10px;
	object-fit: cover;
}
.social-proof-avatars > *:first-child {
	margin-left: 0;
}
.social-proof-text {
	flex: 1;
	min-width: 0;
}
.social-proof-text p {
	font-size: var(--text-sm);
	color: var(--gray-700);
	font-weight: 500;
	margin: 0 0 var(--space-1);
	overflow-wrap: anywhere;
}
.stars {
	display: inline-flex;
	gap: 2px;
	color: var(--yellow-500);
	font-size: var(--text-sm);
}

/* ============================================
   PROBLEM / SOLUTION
============================================ */
.problem-solution {
	padding: var(--space-12) 0;
	background: var(--white);
}

.ps-grid {
	display: grid;
	gap: var(--space-5);
}

.ps-card {
	padding: var(--space-6);
	border-radius: var(--radius-lg);
	background: var(--gray-50);
	border: 1px solid var(--border);
}

.ps-problem {
	background: var(--white);
	border: 1px solid var(--gray-200);
}
.ps-solution {
	background: var(--navy-50);
	border: 1px solid var(--navy-100);
}

.ps-heading {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	font-size: var(--text-lg);
	margin-bottom: var(--space-5);
}
.ps-problem .ps-heading .gicon {
	color: var(--yellow-500);
	font-size: 1.5em;
}
.ps-solution .ps-heading {
	color: var(--navy-700);
}
.ps-solution .ps-heading .gicon {
	color: var(--navy-700);
	font-size: 1.5em;
}

.ps-list li {
	display: flex;
	align-items: flex-start;
	gap: var(--space-3);
	padding: var(--space-2) 0;
	color: var(--gray-700);
	font-size: var(--text-sm);
}
.ps-list .x-icon {
	color: var(--red-500);
	font-size: 1.25em;
	margin-top: 2px;
	flex-shrink: 0;
}

.ps-text {
	color: var(--gray-700);
	font-size: var(--text-sm);
	margin-bottom: var(--space-4);
	line-height: 1.7;
}
.ps-tagline {
	color: var(--navy-700);
	font-weight: 700;
	font-size: var(--text-sm);
	margin: 0;
}

/* ============================================
   SECTION TITLE
============================================ */
.section-title {
	text-align: center;
	font-size: var(--text-2xl);
	font-weight: 700;
	color: var(--navy-700);
	margin-bottom: var(--space-10);
	position: relative;
	padding-bottom: var(--space-3);
}
.title-underline {
	display: block;
	width: 60px;
	height: 3px;
	background: var(--yellow-500);
	margin: var(--space-3) auto 0;
	border-radius: 2px;
}

/* ============================================
   KEUNGGULAN
============================================ */
.keunggulan {
	padding: var(--space-12) 0;
	background: var(--gray-50);
}

.keunggulan-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-4);
}
.keunggulan-card {
	background: var(--white);
	padding: var(--space-5);
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	transition: all var(--transition);
}
.keunggulan-card:hover {
	box-shadow: var(--shadow-md);
	border-color: var(--navy-100);
	transform: translateY(-2px);
}
.keunggulan-icon {
	font-size: 2rem;
	color: var(--navy-600);
	margin-bottom: var(--space-3);
}
.keunggulan-card h3 {
	font-size: var(--text-base);
	margin-bottom: var(--space-2);
	font-weight: 700;
}
.keunggulan-card p {
	font-size: var(--text-sm);
	color: var(--gray-500);
	margin: 0;
	line-height: 1.5;
}

/* ============================================
   CARA KERJA
============================================ */
.cara-kerja {
	padding: var(--space-12) 0;
	background: var(--white);
}

.steps-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-4);
	align-items: stretch;
}
.step-arrow {
	display: none;
}
.step-card {
	background: var(--gray-50);
	border: 1px solid var(--border);
	padding: var(--space-5);
	border-radius: var(--radius-lg);
	position: relative;
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
}
.step-number {
	width: 32px;
	height: 32px;
	background: var(--navy-600);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: var(--text-sm);
	margin-bottom: var(--space-2);
}
.step-icon {
	font-size: 2rem;
	color: var(--navy-600);
}
.step-card h3 {
	font-size: var(--text-base);
	margin-bottom: 0;
	font-weight: 700;
}
.step-card p {
	font-size: var(--text-sm);
	color: var(--gray-500);
	margin: 0;
	line-height: 1.5;
}

/* ============================================
   TESTIMONI
============================================ */
.testimoni {
	padding: var(--space-12) 0;
	background: var(--gray-50);
}

.testimoni-grid {
	display: grid;
	gap: var(--space-5);
	margin-bottom: var(--space-6);
}

.testimoni-card {
	background: var(--white);
	padding: var(--space-5);
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}
.testimoni-chat {
	width: 100%;
	border-radius: var(--radius);
	margin-bottom: var(--space-2);
}
.testimoni-amount {
	font-size: var(--text-xl);
	font-weight: 700;
	color: var(--navy-700);
}
.testimoni-comment {
	color: var(--gray-600);
	font-size: var(--text-sm);
	font-style: italic;
	margin: 0;
}
.testimoni-card .stars {
	justify-content: center;
	font-size: var(--text-base);
}

.testimoni-note {
	text-align: center;
	color: var(--gray-500);
	font-size: var(--text-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-2);
	margin: 0;
}
.testimoni-note .gicon {
	color: var(--navy-600);
}

/* ============================================
   URGENCY BANNER
============================================ */
.urgency-banner {
	padding: var(--space-6) 0;
	background: var(--yellow-100);
}
.urgency-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-4);
	text-align: center;
}
.urgency-icon {
	color: var(--yellow-500);
	font-size: 2.5rem;
	flex-shrink: 0;
}
.urgency-content h3 {
	font-size: var(--text-base);
	margin-bottom: var(--space-1);
	color: var(--gray-900);
}
.urgency-content p {
	font-size: var(--text-sm);
	color: var(--red-600);
	font-weight: 600;
	margin: 0;
}

/* ============================================
   FINAL CTA
============================================ */
.final-cta {
	padding: var(--space-12) 0;
	background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-800) 100%);
	color: var(--white);
}

.final-cta-grid {
	display: flex;
	flex-direction: column;
	gap: var(--space-6);
	align-items: stretch;
	margin-bottom: var(--space-8);
}
.final-cta-content h2 {
	font-size: var(--text-2xl);
	color: var(--white);
	margin-bottom: var(--space-3);
	font-weight: 700;
}
.final-cta-content p {
	color: rgba(255, 255, 255, 0.85);
	font-size: var(--text-base);
	margin: 0;
}

.final-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-3);
	padding-top: var(--space-6);
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.final-feature {
	display: flex;
	align-items: center;
	gap: var(--space-2);
	color: rgba(255, 255, 255, 0.95);
	font-size: var(--text-sm);
	font-weight: 500;
}
.final-feature .gicon {
	color: var(--navy-100);
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
	background: var(--navy-900);
	color: rgba(255, 255, 255, 0.8);
	padding: var(--space-12) 0 var(--space-6);
}

.footer-grid {
	display: grid;
	gap: var(--space-8);
	margin-bottom: var(--space-8);
}

.footer-brand .footer-logo,
.footer-brand .footer-logo-img {
	display: flex;
	align-items: center;
	gap: var(--space-2);
	margin-bottom: var(--space-4);
	max-height: 56px;
}
.footer-logo-text {
	display: flex;
	flex-direction: column;
	line-height: 1;
}
.footer-logo-main {
	font-weight: 800;
	font-size: var(--text-lg);
	color: var(--white);
}
.footer-logo-accent {
	color: var(--yellow-500);
}
.footer-logo-sub {
	font-size: 0.65rem;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 2px;
}
.footer-desc {
	color: rgba(255, 255, 255, 0.7);
	font-size: var(--text-sm);
	margin-bottom: var(--space-4);
}

.footer-socials {
	display: flex;
	gap: var(--space-2);
}
.footer-social {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
	transition: all var(--transition);
	font-size: var(--text-sm);
}
.footer-social:hover {
	background: var(--green-wa);
	color: var(--white);
	transform: translateY(-2px);
}
.social-whatsapp { background: var(--green-wa); }
.social-instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-facebook { background: #1877F2; }
.social-tiktok { background: #000000; }
.social-twitter { background: #000000; }
.social-youtube { background: #FF0000; }

.footer-col h4 {
	color: var(--white);
	font-size: var(--text-base);
	margin-bottom: var(--space-3);
	font-weight: 700;
}
.footer-col ul li {
	margin-bottom: var(--space-2);
}
.footer-col a {
	color: rgba(255, 255, 255, 0.7);
	font-size: var(--text-sm);
	transition: color var(--transition);
}
.footer-col a:hover {
	color: var(--yellow-500);
}

.footer-hours .hours-box {
	display: flex;
	align-items: center;
	gap: var(--space-2);
	color: rgba(255, 255, 255, 0.8);
	font-size: var(--text-sm);
	margin-bottom: var(--space-4);
}
.footer-hours .gicon {
	color: var(--yellow-500);
}

.footer-bottom {
	padding-top: var(--space-6);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
	font-size: var(--text-xs);
	color: rgba(255, 255, 255, 0.6);
	text-align: center;
}
.footer-bottom p {
	margin: 0;
}
.footer-privacy {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	justify-content: center;
}

/* ============================================
   FLOATING WA
============================================ */
.floating-wa {
	position: fixed;
	bottom: var(--space-5);
	right: var(--space-5);
	z-index: 99;
	background: var(--green-wa);
	color: var(--white);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-xl);
	transition: all var(--transition);
	font-size: 1.75rem;
	overflow: hidden;
}
.floating-wa::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: var(--green-wa);
	animation: wa-pulse 2s ease-out infinite;
	z-index: -1;
}
@keyframes wa-pulse {
	0% { transform: scale(1); opacity: 0.6; }
	100% { transform: scale(1.5); opacity: 0; }
}
.floating-wa:hover {
	background: var(--green-wa-dark);
	color: var(--white);
	transform: scale(1.05);
}
.floating-wa-text {
	display: none;
}

/* ============================================
   FAQ HERO
============================================ */
.faq-hero {
	background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
	color: var(--white);
	padding: var(--space-10) 0;
	position: relative;
	overflow: hidden;
}
.faq-hero::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 60%;
	height: 100%;
	background: radial-gradient(circle at top right, rgba(244, 184, 63, 0.15), transparent 60%);
	pointer-events: none;
}
/* Hide gradient overlay on mobile (creates visible seam when image column is narrow) */
@media (max-width: 767px) {
	.faq-hero::before {
		display: none;
	}
}

.faq-hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-areas:
		"badge  badge"
		"title  image"
		"trust  trust";
	gap: var(--space-4) var(--space-3);
	position: relative;
	align-items: start;
}
.faq-hero-grid > .faq-hero-badge {
	grid-area: badge;
	justify-self: start;
}
.faq-hero-grid > .faq-hero-title-block {
	grid-area: title;
	align-self: center;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}
.faq-hero-grid > .faq-hero-image {
	grid-area: image;
	align-self: center;
	min-width: 0;
}
.faq-hero-grid > .faq-hero-badges {
	grid-area: trust;
}

.faq-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	background: rgba(37, 99, 235, 0.2);
	color: var(--navy-500);
	padding: var(--space-2) var(--space-4);
	border-radius: var(--radius-full);
	font-size: var(--text-sm);
	font-weight: 600;
}

.faq-hero-title {
	font-size: 1.5rem;
	color: var(--white);
	margin: 0;
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: -0.02em;
	overflow-wrap: break-word;
}
.faq-hero-title .highlight {
	color: var(--navy-500);
	display: block;
}
.faq-hero-desc {
	color: rgba(255, 255, 255, 0.8);
	font-size: var(--text-sm);
	margin: 0;
}

.faq-hero-badges {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-3);
}
.faq-hero-badge-item {
	display: flex;
	align-items: flex-start;
	gap: var(--space-3);
	background: rgba(255, 255, 255, 0.05);
	padding: var(--space-3);
	border-radius: var(--radius);
	border: 1px solid rgba(255, 255, 255, 0.08);
}
.faq-hero-badge-item .gicon {
	color: var(--navy-500);
	background: rgba(37, 99, 235, 0.15);
	padding: var(--space-2);
	border-radius: var(--radius);
	width: 36px;
	height: 36px;
	font-size: 1.25rem;
	flex-shrink: 0;
}
.badge-content {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.badge-content strong {
	color: var(--white);
	font-size: var(--text-sm);
	font-weight: 700;
}
.badge-content span {
	color: rgba(255, 255, 255, 0.65);
	font-size: var(--text-xs);
}

.faq-hero-image {
	display: flex;
	align-items: center;
	justify-content: center;
}
.faq-hero-image img {
	max-width: 100%;
	max-height: 350px;
	margin: 0 auto;
	height: auto;
}
.faq-hero-image .placeholder {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
}

/* ============================================
   FAQ MAIN (Layout 2 kolom)
============================================ */
.faq-main {
	padding: var(--space-12) 0;
	background: var(--gray-50);
}

.faq-layout {
	display: grid;
	gap: var(--space-6);
	margin-bottom: var(--space-10);
}

/* Sidebar */
.faq-sidebar {
	display: flex;
	flex-direction: column;
	gap: var(--space-5);
}

.faq-section-title h2 {
	font-size: var(--text-2xl);
	margin-bottom: var(--space-2);
	font-weight: 700;
	color: var(--gray-900);
}
.faq-section-title .highlight {
	color: var(--navy-600);
}
.faq-section-title .title-underline {
	margin: var(--space-2) 0 var(--space-3);
}
.faq-section-title p {
	color: var(--gray-600);
	font-size: var(--text-sm);
	margin: 0;
}

.help-box {
	background: var(--navy-50);
	border: 1px solid var(--navy-100);
	padding: var(--space-5);
	border-radius: var(--radius-lg);
	text-align: center;
}
.help-title {
	color: var(--navy-700);
	font-size: var(--text-lg);
	margin-bottom: var(--space-1);
	font-weight: 700;
}
.help-subtitle {
	color: var(--navy-600);
	font-size: var(--text-base);
	margin-bottom: var(--space-3);
	font-weight: 700;
}
.help-box p {
	color: var(--gray-600);
	font-size: var(--text-sm);
	margin-bottom: var(--space-4);
}
.help-image {
	width: 120px;
	height: 120px;
	margin: 0 auto var(--space-4);
	border-radius: 50%;
	overflow: hidden;
	background: var(--white);
}
.help-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.help-cta-sub {
	font-size: var(--text-xs);
	color: var(--gray-500);
	margin: var(--space-2) 0 0;
}

.faq-stats {
	display: grid;
	gap: var(--space-3);
}
.stat-item {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	background: var(--white);
	padding: var(--space-3) var(--space-4);
	border-radius: var(--radius-md);
	border: 1px solid var(--border);
}
.stat-icon {
	color: var(--yellow-500);
	font-size: 1.5rem;
}
.stat-item div {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.stat-item strong {
	color: var(--gray-900);
	font-size: var(--text-sm);
	font-weight: 700;
}
.stat-item span {
	color: var(--gray-500);
	font-size: var(--text-xs);
}

/* Accordion */
.faq-accordion {
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}

.faq-item {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: all var(--transition);
}
.faq-item.is-open {
	border-color: var(--navy-200, var(--navy-100));
	box-shadow: var(--shadow-sm);
}

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	gap: var(--space-3);
	padding: var(--space-4) var(--space-5);
	text-align: left;
	color: var(--gray-900);
	font-weight: 600;
	font-size: var(--text-base);
}
.faq-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: var(--navy-100);
	color: var(--navy-700);
	border-radius: var(--radius);
	font-size: var(--text-sm);
	font-weight: 700;
	flex-shrink: 0;
}
.faq-item.is-open .faq-number {
	background: var(--navy-600);
	color: var(--white);
}
.faq-question-text {
	flex: 1;
}
.faq-chevron {
	color: var(--gray-400);
	transition: transform var(--transition);
	font-size: 1.25rem;
}
.faq-item.is-open .faq-chevron {
	transform: rotate(180deg);
	color: var(--navy-600);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 300ms var(--ease);
}
.faq-item.is-open .faq-answer {
	max-height: 1000px;
}
.faq-answer-inner {
	padding: 0 var(--space-5) var(--space-4) calc(var(--space-5) + 32px + var(--space-3));
	color: var(--gray-600);
	font-size: var(--text-sm);
	line-height: 1.7;
}
.faq-answer-inner p:last-child { margin-bottom: 0; }

.faq-empty {
	background: var(--white);
	padding: var(--space-8);
	border-radius: var(--radius-md);
	text-align: center;
	color: var(--gray-500);
	border: 1px dashed var(--border);
}

/* FAQ Bottom CTA */
.faq-bottom-cta {
	background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-800) 100%);
	color: var(--white);
	padding: var(--space-6);
	border-radius: var(--radius-lg);
	display: flex;
	flex-direction: column;
	gap: var(--space-5);
	position: relative;
	overflow: hidden;
	isolation: isolate;
}
.faq-bottom-cta::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 70%;
	height: 140%;
	transform: translateY(-50%);
	background: radial-gradient(ellipse at center right, rgba(244, 184, 63, 0.18), rgba(244, 184, 63, 0.06) 40%, transparent 70%);
	pointer-events: none;
	z-index: -1;
}
.faq-bottom-content {
	position: relative;
}
.faq-bottom-content h3 {
	font-size: var(--text-xl);
	color: var(--white);
	margin-bottom: var(--space-4);
	font-weight: 700;
}
.highlight-yellow {
	color: var(--yellow-500);
}

.bottom-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-3);
}
.bottom-feature {
	display: flex;
	align-items: center;
	gap: var(--space-2);
	color: rgba(255, 255, 255, 0.95);
	font-size: var(--text-xs);
}
.bottom-feature .gicon {
	color: var(--yellow-500);
	font-size: 1.25rem;
	flex-shrink: 0;
}
.bottom-feature div {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.bottom-feature strong {
	font-size: var(--text-sm);
	font-weight: 700;
}
.bottom-feature span {
	font-size: var(--text-xs);
	opacity: 0.85;
}

.faq-bottom-action {
	position: relative;
	text-align: center;
}
.faq-bottom-action p {
	margin: var(--space-2) 0 0;
	font-size: var(--text-xs);
	color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   FALLBACK / 404
============================================ */
.fallback-page,
.error-404 {
	padding: var(--space-16) 0;
	text-align: center;
}
.error-404 h1 {
	font-size: 6rem;
	color: var(--navy-700);
	margin-bottom: 0;
	font-weight: 800;
	letter-spacing: -0.05em;
}
.error-404 h2 {
	font-size: var(--text-2xl);
	margin-bottom: var(--space-3);
}
.error-actions {
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
	max-width: 320px;
	margin: var(--space-6) auto 0;
}

/* ============================================
   RESPONSIVE - TABLET (≥768px)
============================================ */
@media (min-width: 768px) {
	.container {
		padding: 0 var(--space-6);
	}

	.hero {
		padding: var(--space-16) 0;
	}

	.hero-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-areas:
			"badge  image"
			"title  image"
			"trust  image"
			"cta    image"
			"social image";
		align-items: start;
		gap: var(--space-5) var(--space-12);
	}
	.hero-grid > .hero-image {
		align-self: center;
	}

	.hero-title {
		font-size: var(--text-5xl);
	}

	.hero-subtitle {
		font-size: var(--text-base);
	}

	.hero-grid > .hero-title-block {
		gap: var(--space-5);
	}

	.hero-badges {
		gap: var(--space-6);
	}

	.btn-hero {
		max-width: 460px;
	}

	.ps-grid {
		grid-template-columns: 1fr 1fr;
		gap: var(--space-6);
	}

	.keunggulan-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: var(--space-5);
	}

	.section-title {
		font-size: var(--text-3xl);
	}

	.steps-grid {
		grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
		gap: var(--space-3);
		align-items: stretch;
	}
	.step-arrow {
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--navy-300, var(--gray-300));
		font-size: 1.5rem;
	}

	.testimoni-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	/* 4+ testimoni wrap cleanly into rows of 3 */
	.testimoni-grid.has-many {
		grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	}

	.urgency-inner {
		flex-direction: row;
		text-align: left;
		justify-content: space-between;
	}
	.urgency-inner > div:nth-child(2) {
		flex: 1;
	}

	.final-cta-grid {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
	.final-cta-content {
		flex: 1;
	}
	.btn-final {
		flex-shrink: 0;
	}

	.final-features {
		grid-template-columns: repeat(4, 1fr);
	}

	.footer-grid {
		grid-template-columns: 2fr 1fr 1fr 1.5fr;
		gap: var(--space-6);
	}

	.footer-bottom {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}

	.faq-hero {
		padding: var(--space-16) 0;
	}
	.faq-hero-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-areas:
			"badge  image"
			"title  image"
			"trust  image";
		align-items: start;
		gap: var(--space-5) var(--space-12);
	}
	.faq-hero-grid > .faq-hero-image {
		align-self: center;
	}
	.faq-hero-grid > .faq-hero-title-block {
		gap: var(--space-4);
	}
	.faq-hero-title {
		font-size: var(--text-4xl);
	}
	.faq-hero-desc {
		font-size: var(--text-base);
	}
	.faq-hero-badges {
		grid-template-columns: 1fr 1fr;
	}

	.faq-layout {
		grid-template-columns: 320px 1fr;
		gap: var(--space-8);
		align-items: start;
	}

	.faq-bottom-cta {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		padding: var(--space-8);
	}
	.faq-bottom-content {
		flex: 1;
	}
	.bottom-features {
		grid-template-columns: repeat(4, 1fr);
	}

	.floating-wa {
		width: auto;
		min-width: 60px;
		height: 60px;
		border-radius: var(--radius-full);
		padding: 0 var(--space-5) 0 var(--space-4);
		gap: var(--space-2);
	}
	.floating-wa-text {
		display: inline;
		font-size: var(--text-sm);
		font-weight: 600;
	}
	.floating-wa .gicon {
		font-size: 1.5rem;
	}
}

/* ============================================
   RESPONSIVE - DESKTOP (≥1024px)
============================================ */
@media (min-width: 1024px) {
	.hero-title {
		font-size: 3.5rem;
	}

	.keunggulan-grid {
		grid-template-columns: repeat(6, 1fr);
	}

	.section-title {
		font-size: var(--text-4xl);
		margin-bottom: var(--space-12);
	}
}

/* ============================================
   GLOBAL RESPONSIVE GUARDS
   Prevent any element from forcing horizontal overflow
============================================ */

/* Top-level sections never exceed viewport width */
.site-header,
.site-main,
.site-footer,
.hero,
.problem-solution,
.keunggulan,
.cara-kerja,
.testimoni,
.urgency-banner,
.final-cta,
.faq-hero,
.faq-main {
	max-width: 100vw;
	overflow-x: clip;
}

/* Containers and content blocks */
.container,
.hero-grid,
.hero-grid > *,
.hero-title-block,
.hero-image,
.hero-badges,
.faq-bottom-content,
.faq-hero-grid,
.faq-hero-grid > *,
.faq-hero-title-block,
.faq-hero-image,
.faq-hero-badges,
.faq-layout,
.urgency-content,
.urgency-inner,
.final-cta-grid,
.final-cta-content,
.footer-grid {
	min-width: 0;
	max-width: 100%;
}

/* Headings break long words */
.hero-title,
.hero-title-line,
.faq-hero-title,
.section-title,
.final-cta-content h2,
.faq-bottom-content h3,
.ps-heading,
h1, h2, h3, h4 {
	overflow-wrap: break-word;
	word-break: break-word;
	max-width: 100%;
}

/* Body text wraps anywhere if needed */
.hero-subtitle,
.faq-hero-desc,
.ps-text,
.keunggulan-card p,
.step-card p,
.testimoni-comment,
.footer-desc,
p {
	overflow-wrap: anywhere;
	max-width: 100%;
}

/* Flex children must shrink */
.hero-badges {
	flex-wrap: wrap;
}
.trust-badge {
	white-space: nowrap;
}
.btn-final {
	flex-wrap: wrap;
}
.final-cta-grid {
	flex-wrap: wrap;
}

/* ============================================
   VERY SMALL PHONES (≤ 380px - iPhone SE etc.)
============================================ */
@media (max-width: 380px) {
	.container {
		padding: 0 var(--space-3);
	}

	.hero {
		padding: var(--space-6) 0 var(--space-10);
	}

	.hero-title {
		font-size: 1.25rem;
		letter-spacing: -0.01em;
	}

	.hero-subtitle {
		font-size: var(--text-xs);
	}

	.hero-badge {
		font-size: var(--text-xs);
		padding: var(--space-2) var(--space-3);
	}

	.hero-badges {
		gap: var(--space-1);
	}

	.trust-badge {
		font-size: 0.7rem;
	}
	.trust-badge .gicon {
		font-size: 1em;
	}

	.btn-hero {
		grid-template-columns: 40px 1fr;
		padding: var(--space-3);
	}
	.btn-hero .gicon {
		width: 40px;
		height: 40px;
		font-size: 1.25em;
	}
	.btn-hero .btn-main {
		font-size: var(--text-xs);
		letter-spacing: 0;
	}

	.btn-final {
		padding: var(--space-3) var(--space-4);
		gap: var(--space-2);
	}
	.btn-final .gicon {
		width: 38px;
		height: 38px;
		font-size: 1.25em;
	}

	.section-title {
		font-size: var(--text-xl);
		margin-bottom: var(--space-8);
	}

	.faq-hero-title {
		font-size: 1.25rem;
	}
	.faq-hero-desc {
		font-size: var(--text-xs);
	}

	.faq-hero-badges {
		grid-template-columns: 1fr;
	}

	.bottom-features {
		grid-template-columns: 1fr;
	}

	.ps-card {
		padding: var(--space-4);
	}

	.keunggulan-card,
	.step-card,
	.testimoni-card {
		padding: var(--space-4);
	}

	.final-features {
		grid-template-columns: 1fr 1fr;
		gap: var(--space-2);
	}

	.urgency-banner .container {
		padding: 0 var(--space-3);
	}

	.faq-bottom-cta {
		padding: var(--space-4);
	}

	.help-box {
		padding: var(--space-4);
	}
}

/* ============================================
   PRINT
============================================ */
@media print {
	.site-header,
	.site-footer,
	.floating-wa,
	.btn,
	.hero-badges {
		display: none !important;
	}
}
