:root {
	--color-text-50: #f9fafb;
	--color-text-700: #334155;
	--color-text-950: #1e293b;

	--color-primary-500: #00b9c5;

	--color-secondary-50: #edfaff;
	--color-secondary-700: #0279ff;

	--color-tertiary--300: #ffcd6d;
}

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

body {
	font-family: 'Inter', sans-serif;
	background-color: black;
	margin: 0;
	padding: 0;
}

.font-dm-sans {
	font-family: 'DM Sans', sans-serif;
}

.container {
	max-width: 440px;
	margin: 0px auto;
	background-color: #ffffff;
}

.blueish {
	color: #0279ff !important;
}

.goldish {
	color: var(--color-tertiary--300) !important;
}

.heading {
	font-family: 'DM Sans', sans-serif;
	font-weight: 600;
	font-size: 26px;
	line-height: 125%;
}

.paragraph {
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
}

.check-img {
	width: 34px;
	height: 34px;
	flex-shrink: 0;
}

/* Hero Section */
.hero-section {
	position: relative;
	width: 100%;
	height: auto;
	aspect-ratio: 440/800;
	padding-top: 24px;
	background-color: #ffffff;

	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.hero-banner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	max-height: 800px;
	object-fit: cover;
	object-position: top;
}

.hero-text-container {
	position: relative;
	z-index: 1;

	min-height: 0;
	width: 100%;
	background-image: linear-gradient(
		0,
		white 60%,
		rgba(255, 255, 255, 0.5) 90%,
		rgba(255, 255, 255, 0)
	);
}

.hero-section h1 {
	position: relative;
	z-index: 1;

	text-align: center;

	color: var(--color-text-950);
	margin: 0px 8px;
}

.hero-section p {
	position: relative;
	z-index: 1;

	text-align: center;
	color: var(--color-text-700);

	max-width: 400px;
	margin: 16px auto 0px auto;
}

.logo-container {
	position: relative;
	z-index: 1;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-img {
	width: 100%;
	height: auto;
	max-width: 138px;
	aspect-ratio: 138/35;
}

/*  Mungkin anda berpikir */
.thinking-section {
	position: relative;

	border-radius: 16px 16px 0 0;
	padding: 32px 12px 0px 12px;
	margin-top: 48px;

	background-image: linear-gradient(180deg, #0279ff 45%, #ffffff);
}

.thinking-section .emot-top {
	position: absolute;
	top: -12px;
	right: 28px;
	z-index: 1;

	width: 45px;
	height: 45px;
}

.thinking-section h2 {
	text-align: center;
	color: #ffffff;
}

.thinking-section .p-first {
	margin-top: 16px;
	text-align: center;
	color: #ffffff;
}

.thinking-section .p-second {
	margin-top: 16px;
	text-align: center;
	color: #ffffff;
	font-weight: 600;
	font-size: 15px;
	line-height: 130%;
}

.thinking-dot-container {
	margin: 32px 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.dot-separator {
	width: 8px;
	height: 8px;
	flex-shrink: 0;
	background-color: #b4d7ff;
	border-radius: 100%;
}

.thinking-bubles-container {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 16px;
	padding-bottom: 8px;
}

.thinking-bubles-container .buble {
	position: relative;
	margin: 0px 11px;
	border-radius: 16px;
	box-shadow: 0 4px 4px 0 rgba(3, 122, 254, 0.3);
	background: var(--color-secondary-50);
	padding: 24px;
}

.thinking-bubles-container .buble p {
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
	color: var(--color-text-700);
}

.buble .emot-buble {
	position: absolute;
	bottom: -18px;
	left: -18px;
	z-index: 1;
	transform: scaleX(-1) rotate(20deg);

	width: 45px;
	height: 45px;
}

.thinking-bubles-container .buble:nth-child(odd)::after {
	content: ''; /* WAJIB ada */
	width: 22px;
	height: 32px;
	display: block;
	position: absolute;
	bottom: 0;
	left: -9px; /* kasih posisi biar kelihatan */
	flex-shrink: 0;
	background-image: url('../../assets/buble-tail.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.thinking-bubles-container .buble:nth-child(even)::after {
	content: '';
	width: 22px;
	height: 32px;
	display: block;
	position: absolute;
	bottom: 0;
	right: -9px;
	background-image: url('../../assets/buble-tail.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transform: scaleX(-1);
}

/* Kabar Baiknya */
.good-news-section {
	padding: 48px 16px 0 16px;
}

.good-news-paragraph {
	margin-top: 16px;
	color: var(--color-text-700);
}

.good-news-list {
	margin-top: 32px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.good-news-list-item {
	display: flex;
	gap: 8px;
	align-items: center;
}

.good-news-list-item p {
	color: var(--color-text-700);
}
.good-news-list-item strong {
	color: var(--color-text-950);
}

.good-news-gallery {
	margin-top: 32px;
	position: relative;
	display: flex;
	gap: 8px;
	border-radius: 16px;
	box-shadow: 0 4px 4px 0 rgba(3, 122, 254, 0.3);
	background: var(--color-secondary-secondary-50);
}

.good-news-gallery .top-orange-dot {
	width: 18px;
	height: 18px;
	border-radius: 100%;
	background-color: #ffac32;

	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);

	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.good-news-gallery .bottom-orange-dot {
	width: 18px;
	height: 18px;
	border-radius: 100%;
	background-color: #ffac32;

	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%) translateY(50%);

	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.good-news-gallery .before-container {
	border-radius: 16px 0 0 16px;
	overflow: hidden;
	width: 100%;
	height: auto;
}

.after-text span,
.before-text span {
	font-weight: 600;
	font-size: 16px;
	line-height: 150%;
	color: var(--color-text-50);
	font-family: 'DM Sans', sans-serif;

	padding: 0px 16px;
}

.before-container .before-text {
	position: absolute;
	top: 8px;
	left: 0;

	width: 108px;
	height: 32px;
	background: linear-gradient(90deg, #0279ff 0%, rgba(2, 121, 255, 0) 100%);

	display: flex;
	align-items: center;
	justify-content: left;
}

.good-news-gallery .after-container {
	border-radius: 0 16px 16px 0;
	overflow: hidden;
	width: 100%;
	height: auto;
}

.after-container .after-text {
	position: absolute;
	top: 8px;
	right: 0;

	width: 108px;
	height: 32px;
	background: linear-gradient(90deg, rgba(2, 121, 255, 0) 0%, #0279ff 100%);

	display: flex;
	align-items: center;
	justify-content: right;
}

.good-news-gallery .before-container img,
.good-news-gallery .after-container img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: center;
}

.good-news-card {
	margin-top: 48px;
	border-radius: 16px;
	padding: 32px 12px;
	background-image: linear-gradient(135deg, #0279ff, #005dc5);
}

.good-news-card p {
	text-align: center;
	color: var(--color-text-50);
}

/* Website Bukan sekedar Etalase */
.not-etalase-section {
	margin-top: 48px;
	padding: 0px 16px;
}

.not-etalase-list {
	margin-top: 32px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.not-etalase-list-item {
	display: flex;
	gap: 8px;
	align-items: center;
}

.not-etalase-list-item p {
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	color: var(--color-text-950);
}

.not-etalase-list-item strong {
	font-weight: 600;
}

.not-etalase-section .desc {
	margin-top: 32px;
	color: var(--color-text-700);
}

/* Mengapa pilih gerai */
.why-choose-us-section {
	margin-top: 48px;
	padding: 32px 16px;
	background-color: var(--color-secondary-700);
}

.why-choose-us-section .heading,
.why-choose-us-section p {
	color: #ffffff;
}

.why-choose-us-list {
	margin-top: 32px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.why-choose-us-list-item {
	display: flex;
	gap: 8px;
	align-items: center;
}

.why-choose-us-list-item p {
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	color: var(--color-text-50);
}

.why-choose-us-list-item strong {
	font-weight: 600;
}

/* Brand besar sudah percaya */
.brands-section {
	padding: 48px 16px;
}

.brands-list {
	margin-top: 32px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.brands-list .brands-list-item {
	display: flex;
	gap: 8px;
	align-items: center;
}

.brands-list-item .number-container {
	width: 34px;
	height: 34px;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--color-secondary-700);
	border-radius: 100%;
}

.brands-list-item .number {
	font-weight: 600;
	font-size: 16px;
	line-height: 130%;
	color: #ffffff;
}

.brands-list-item p {
	color: var(--color-text-950);
}

.brands-grid {
	margin-top: 32px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.brands-grid img {
	width: 122px;
	height: 56px;
	object-fit: contain;
	object-position: center;
}

/* CTA */
.cta-section {
	margin: 0px 16px;
	padding: 32px 12px;
	display: flex;
	flex-direction: column;
	gap: 32px;
	border-radius: 16px;

	background-image: linear-gradient(135deg, #0279ff, #005dc5);
}

.cta-section .heading {
	text-align: center;
	text-transform: uppercase;
	color: #ffffff;
}

.cta-section p {
	text-align: center;
	color: var(--color-text-50);
}

.cta-section a {
	padding: 14px 16px;
	background-color: var(--color-primary-500);
	border-radius: 1000px;
	width: fit-content;
	margin: 0px auto;

	font-weight: 400;
	font-size: 18px;
	line-height: 130%;
	color: #ffffff;
	text-decoration: none;
	text-align: center;
}

/* FAQ */
.faq-section {
	margin-top: 48px;
	padding: 0px 16px;
}

.faq-accordion-container {
	margin-top: 24px;
}

.faq-item {
	border-bottom: 1px solid #888;
}

.faq-header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8px;

	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 120%;
	color: #1f2933;

	cursor: pointer;
	background: none;
	border: none;
	text-align: left;

	padding: 16px 0;
}

.faq-icon {
	width: 14px;
	height: 14px;
	transition: transform 0.3s ease;
}

.faq-panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	padding: 0 0;
}

.faq-panel p {
	margin: 0 0 16px;

	font-weight: 400;
	font-size: 16px;
	line-height: 120%;
	color: #3e4c59;
}

.faq-item[aria-expanded='true'] .faq-panel {
	max-height: 200px; /* sesuaikan biar cukup */
}

.faq-item[aria-expanded='true'] .faq-icon {
	transform: rotate(180deg);
}

/* Footer */
.footer {
	margin-top: 48px;
	background-color: #050c27;
	padding: 24px;
}

.footer-socials {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.footer-socials a {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}

.footer-socials a img {
	width: 100%;
	height: auto;
	aspect-ratio: 1/1;
	object-fit: contain;
	object-position: center;
}

.footer p {
	margin-top: 16px;
	text-align: center;
	color: #566084;
}
