/* TrustyCare — Asuransi Kendaraan
   Brand Colors: Trusty Blue
   Primary: #0066cc, Secondary: #004499, Accent: #00cc99
*/

:root {
	--primary: #0066cc;
	--primary-dark: #004499;
	--accent: #00cc99;
	--accent-light: #e8f0f7;
	--text-dark: #1a1a1a;
	--text-light: #666666;
	--border: #cccccc;
	--bg-light: #f5f7fa;
	--shadow: rgba(0, 102, 204, 0.1);
	--white: #ffffff;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
	background: var(--white);
}

/* ===== DEMO BAR ===== */
.demo-bar {
	background: var(--primary);
	color: var(--white);
	padding: 12px 16px;
	font-size: 13px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	border-bottom: 1px solid var(--primary-dark);
}

.demo-bar-links {
	display: flex;
	gap: 16px;
}

.demo-bar a {
	color: var(--white);
	text-decoration: none;
	font-weight: 500;
	transition: opacity 0.3s;
}

.demo-bar a:hover {
	opacity: 0.8;
}

/* ===== HEADER & NAVIGATION ===== */
header {
	background: var(--white);
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 4px var(--shadow);
}

.navbar {
	max-width: 1200px;
	margin: 0 auto;
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 20px;
	position: relative;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 20px;
	font-weight: 700;
	color: var(--primary);
	text-decoration: none;
	cursor: pointer;
}

.logo svg {
	width: 32px;
	height: 32px;
}

.nav-toggle {
	display: none;
}

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

.nav-hamburger span {
	width: 24px;
	height: 2px;
	background: var(--primary);
	transition: all 0.3s;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 32px;
}

.nav-menu a {
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 500;
	transition: color 0.3s;
}

.nav-menu a:hover {
	color: var(--primary);
}

/* Mobile Navigation */
@media (max-width: 768px) {
	.nav-hamburger {
		display: flex;
	}

	.nav-toggle:checked ~ .nav-hamburger span:nth-child(1) {
		transform: rotate(45deg) translate(8px, 8px);
	}

	.nav-toggle:checked ~ .nav-hamburger span:nth-child(2) {
		opacity: 0;
	}

	.nav-toggle:checked ~ .nav-hamburger span:nth-child(3) {
		transform: rotate(-45deg) translate(8px, -8px);
	}

	.nav-toggle:checked ~ .nav-menu {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--white);
		border-top: 1px solid var(--border);
		padding: 16px;
		gap: 16px;
		box-shadow: 0 4px 8px var(--shadow);
	}

	.nav-menu a {
		padding: 8px 0;
	}

	.nav-toggle:not(:checked) ~ .nav-menu {
		display: none;
	}
}

/* ===== MAIN CONTENT ===== */
main {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ===== HERO SECTION ===== */
.hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	padding: 80px 0;
}

.hero-content h1 {
	font-size: 48px;
	line-height: 1.2;
	margin-bottom: 20px;
	color: var(--primary);
}

.hero-content p {
	font-size: 18px;
	color: var(--text-light);
	margin-bottom: 32px;
}

.hero-cta {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.hero-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-visual svg {
	max-width: 100%;
	height: auto;
	filter: drop-shadow(0 10px 20px var(--shadow));
}

@media (max-width: 768px) {
	.hero {
		grid-template-columns: 1fr;
		padding: 40px 0;
	}

	.hero-content h1 {
		font-size: 32px;
	}

	.hero-content p {
		font-size: 16px;
	}

	.hero-cta {
		flex-direction: column;
	}
}

/* ===== BUTTONS ===== */
.btn {
	display: inline-block;
	padding: 14px 28px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	border: none;
	transition: all 0.3s;
	font-size: 16px;
}

.btn-primary {
	background: var(--primary);
	color: var(--white);
}

.btn-primary:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px var(--shadow);
}

.btn-secondary {
	background: var(--accent);
	color: var(--white);
}

.btn-secondary:hover {
	background: #00aa88;
}

.btn-outline {
	background: transparent;
	color: var(--primary);
	border: 2px solid var(--primary);
}

.btn-outline:hover {
	background: var(--accent-light);
}

/* ===== FEATURES SECTION ===== */
.features {
	padding: 60px 0;
	background: var(--bg-light);
	margin: 40px -20px;
	padding: 60px 20px;
}

.features h2 {
	font-size: 36px;
	text-align: center;
	margin-bottom: 48px;
	color: var(--primary);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 32px;
}

.feature-card {
	background: var(--white);
	padding: 32px;
	border-radius: 12px;
	text-align: center;
	border: 1px solid var(--border);
	transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 16px var(--shadow);
}

.feature-icon {
	margin-bottom: 16px;
}

.feature-icon svg {
	margin: 0 auto;
}

.feature-card h3 {
	font-size: 20px;
	margin-bottom: 12px;
	color: var(--primary);
}

.feature-card p {
	color: var(--text-light);
	font-size: 14px;
}

/* ===== PAKET SECTION ===== */
.paket {
	padding: 60px 0;
}

.paket h2 {
	font-size: 36px;
	text-align: center;
	margin-bottom: 48px;
	color: var(--primary);
}

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

.paket-card {
	background: var(--white);
	border: 2px solid var(--border);
	border-radius: 12px;
	padding: 32px;
	position: relative;
	transition: all 0.3s;
}

.paket-card:hover {
	border-color: var(--primary);
	box-shadow: 0 8px 24px var(--shadow);
}

.paket-card.featured {
	border-color: var(--primary);
	box-shadow: 0 8px 24px var(--shadow);
	transform: scale(1.03);
}

.badge {
	position: absolute;
	top: -12px;
	left: 20px;
	background: var(--accent);
	color: var(--white);
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
}

.paket-card h3 {
	font-size: 24px;
	color: var(--primary);
	margin-bottom: 16px;
}

.paket-price {
	font-size: 18px;
	color: var(--text-light);
	margin-bottom: 24px;
}

.paket-price span {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary);
}

.paket-features {
	list-style: none;
	margin-bottom: 24px;
}

.paket-features li {
	padding: 8px 0;
	color: var(--text-light);
	font-size: 14px;
	border-bottom: 1px solid var(--bg-light);
}

.paket-features li:last-child {
	border-bottom: none;
}

/* ===== TESTIMONI SECTION ===== */
.testimoni {
	padding: 60px 0;
	background: var(--bg-light);
	margin: 40px -20px;
	padding: 60px 20px;
}

.testimoni h2 {
	font-size: 36px;
	text-align: center;
	margin-bottom: 48px;
	color: var(--primary);
}

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

.testimoni-card {
	background: var(--white);
	padding: 28px;
	border-radius: 8px;
	border-left: 4px solid var(--accent);
}

.testimoni-stars {
	color: #ffc107;
	font-size: 14px;
	margin-bottom: 12px;
	letter-spacing: 2px;
}

.testimoni-card p {
	color: var(--text-light);
	font-size: 15px;
	margin-bottom: 16px;
	font-style: italic;
}

.testimoni-author {
	display: flex;
	flex-direction: column;
	font-size: 13px;
}

.testimoni-author strong {
	color: var(--text-dark);
	font-weight: 600;
}

.testimoni-author span {
	color: var(--text-light);
	font-size: 12px;
}

/* ===== CTA SECTION ===== */
.cta-section {
	padding: 60px 20px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: var(--white);
	text-align: center;
	border-radius: 12px;
	margin: 60px 0;
}

.cta-section h2 {
	font-size: 36px;
	margin-bottom: 16px;
}

.cta-section p {
	font-size: 18px;
	margin-bottom: 32px;
	opacity: 0.95;
}

.cta-section .btn {
	background: var(--white);
	color: var(--primary);
}

.cta-section .btn:hover {
	background: var(--bg-light);
}

/* ===== PAGE HERO ===== */
.page-hero {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: var(--white);
	padding: 60px 20px;
	text-align: center;
	margin: 0 -20px 40px -20px;
	border-radius: 0 0 12px 12px;
}

.page-hero h1 {
	font-size: 42px;
	margin-bottom: 12px;
}

.page-hero p {
	font-size: 18px;
	opacity: 0.9;
}

/* ===== SERVICES SECTION ===== */
.services {
	padding: 60px 0;
}

.services h2 {
	font-size: 36px;
	text-align: center;
	margin-bottom: 48px;
	color: var(--primary);
}

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

.service-item {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 32px;
	transition: all 0.3s;
}

.service-item:hover {
	border-color: var(--primary);
	box-shadow: 0 8px 16px var(--shadow);
	transform: translateY(-4px);
}

.service-icon {
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
}

.service-item h3 {
	font-size: 22px;
	color: var(--primary);
	margin-bottom: 12px;
}

.service-item > p {
	color: var(--text-light);
	font-size: 15px;
	margin-bottom: 20px;
}

.service-features {
	list-style: none;
	font-size: 14px;
	color: var(--text-light);
}

.service-features li {
	padding: 8px 0;
	border-bottom: 1px solid var(--bg-light);
}

.service-features li:last-child {
	border-bottom: none;
}

/* ===== BENEFITS SECTION ===== */
.benefits {
	padding: 60px 0;
	background: var(--bg-light);
	margin: 40px -20px;
	padding: 60px 20px;
}

.benefits h2 {
	font-size: 36px;
	text-align: center;
	margin-bottom: 48px;
	color: var(--primary);
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.benefit {
	background: var(--white);
	padding: 24px;
	border-radius: 8px;
	border-left: 4px solid var(--accent);
}

.benefit h4 {
	font-size: 18px;
	color: var(--primary);
	margin-bottom: 8px;
}

.benefit p {
	color: var(--text-light);
	font-size: 14px;
}

/* ===== CALCULATOR ===== */
.calculator {
	padding: 60px 0;
}

.calculator h2 {
	font-size: 36px;
	text-align: center;
	margin-bottom: 48px;
	color: var(--primary);
}

.calculator-container {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 40px;
	box-shadow: 0 4px 12px var(--shadow);
}

.calc-form {
	margin-bottom: 40px;
}

.form-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 24px;
	margin-bottom: 24px;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group label {
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 8px;
	font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 12px;
	border: 1px solid var(--border);
	border-radius: 6px;
	font-family: inherit;
	font-size: 14px;
	color: var(--text-dark);
	transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px var(--accent-light);
}

.calc-result {
	background: var(--bg-light);
	padding: 32px;
	border-radius: 8px;
	border-left: 4px solid var(--accent);
}

.calc-result h3 {
	font-size: 20px;
	color: var(--primary);
	margin-bottom: 24px;
}

.result-item {
	display: flex;
	justify-content: space-between;
	padding: 12px 0;
	border-bottom: 1px solid var(--border);
	font-size: 15px;
}

.result-item.highlight {
	background: var(--white);
	padding: 16px;
	border-radius: 6px;
	border-bottom: none;
	margin: 16px 0;
	border: 2px solid var(--primary);
}

.result-note {
	font-size: 12px;
	color: var(--text-light);
	margin: 16px 0;
	font-style: italic;
}

/* ===== PRICE TABLE ===== */
.price-table {
	padding: 60px 0;
	background: var(--bg-light);
	margin: 40px -20px;
	padding: 60px 20px;
}

.price-table h2 {
	font-size: 36px;
	text-align: center;
	margin-bottom: 48px;
	color: var(--primary);
}

.table-container {
	overflow-x: auto;
	background: var(--white);
	border-radius: 8px;
	border: 1px solid var(--border);
}

table {
	width: 100%;
	border-collapse: collapse;
}

table thead {
	background: var(--primary);
	color: var(--white);
}

table th,
table td {
	padding: 16px;
	text-align: left;
	border-bottom: 1px solid var(--border);
	font-size: 14px;
}

table th {
	font-weight: 600;
}

table tbody tr:hover {
	background: var(--bg-light);
}

.table-note {
	font-size: 13px;
	color: var(--text-light);
	margin-top: 16px;
	font-style: italic;
}

/* ===== FAQ ===== */
.faq {
	padding: 60px 0;
}

.faq h2 {
	font-size: 36px;
	text-align: center;
	margin-bottom: 48px;
	color: var(--primary);
}

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

.faq-item {
	background: var(--bg-light);
	padding: 24px;
	border-radius: 8px;
	border-left: 4px solid var(--accent);
}

.faq-item h3 {
	font-size: 16px;
	color: var(--primary);
	margin-bottom: 12px;
	font-weight: 600;
}

.faq-item p {
	color: var(--text-light);
	font-size: 14px;
	line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about-section {
	padding: 60px 0;
}

.about-content h2 {
	font-size: 36px;
	color: var(--primary);
	margin-bottom: 24px;
}

.about-content p {
	font-size: 16px;
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 20px;
}

/* ===== MISSION VISION ===== */
.mission-vision {
	padding: 60px 0;
	background: var(--bg-light);
	margin: 40px -20px;
	padding: 60px 20px;
}

.mv-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px;
}

.mv-item {
	background: var(--white);
	padding: 32px;
	border-radius: 8px;
	border-top: 4px solid var(--primary);
}

.mv-item h3 {
	font-size: 22px;
	color: var(--primary);
	margin-bottom: 16px;
}

.mv-item p,
.mv-item ul {
	color: var(--text-light);
	font-size: 15px;
	line-height: 1.8;
}

.mv-item ul {
	list-style: none;
}

.mv-item li {
	padding: 8px 0;
}

.mv-item strong {
	color: var(--text-dark);
}

/* ===== STATISTICS ===== */
.statistics {
	padding: 60px 0;
}

.statistics h2 {
	font-size: 36px;
	text-align: center;
	margin-bottom: 48px;
	color: var(--primary);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px;
}

.stat-card {
	background: linear-gradient(135deg, var(--accent-light) 0%, var(--white) 100%);
	border: 1px solid var(--border);
	padding: 32px;
	border-radius: 8px;
	text-align: center;
	border-top: 4px solid var(--primary);
}

.stat-number {
	font-size: 42px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 8px;
}

.stat-label {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 12px;
}

.stat-card p {
	color: var(--text-light);
	font-size: 13px;
}

/* ===== TEAM ===== */
.team {
	padding: 60px 0;
	background: var(--bg-light);
	margin: 40px -20px;
	padding: 60px 20px;
}

.team h2 {
	font-size: 36px;
	text-align: center;
	margin-bottom: 16px;
	color: var(--primary);
}

.section-intro {
	text-align: center;
	color: var(--text-light);
	margin-bottom: 48px;
	font-size: 16px;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 32px;
}

.team-member {
	background: var(--white);
	padding: 32px;
	border-radius: 8px;
	text-align: center;
	border: 1px solid var(--border);
}

.member-avatar {
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
}

.member-avatar svg {
	width: 120px;
	height: 120px;
}

.team-member h4 {
	font-size: 20px;
	color: var(--text-dark);
	margin-bottom: 4px;
	font-weight: 600;
}

.member-title {
	color: var(--primary);
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 12px;
}

.member-bio {
	color: var(--text-light);
	font-size: 14px;
}

/* ===== SERTIFIKASI ===== */
.sertifikasi {
	padding: 60px 0;
}

.sertifikasi h2 {
	font-size: 36px;
	text-align: center;
	margin-bottom: 48px;
	color: var(--primary);
}

.sertifikasi-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px;
}

.sertifikasi-item {
	background: var(--white);
	border: 2px solid var(--border);
	border-radius: 8px;
	padding: 28px;
	text-align: center;
	transition: all 0.3s;
}

.sertifikasi-item:hover {
	border-color: var(--primary);
	box-shadow: 0 4px 12px var(--shadow);
}

.sertifikasi-item h4 {
	font-size: 18px;
	color: var(--primary);
	margin-bottom: 12px;
	font-weight: 600;
}

.sertifikasi-item p {
	color: var(--text-light);
	font-size: 14px;
}

/* ===== PARTNERSHIP ===== */
.partnership {
	padding: 60px 0;
	background: var(--bg-light);
	margin: 40px -20px;
	padding: 60px 20px;
}

.partnership h2 {
	font-size: 36px;
	text-align: center;
	margin-bottom: 16px;
	color: var(--primary);
}

.partnership > p {
	text-align: center;
	color: var(--text-light);
	margin-bottom: 48px;
	font-size: 16px;
}

.partnership-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px;
}

.partner {
	background: var(--white);
	padding: 28px;
	border-radius: 8px;
	text-align: center;
	border: 1px solid var(--border);
}

.partner-logo {
	margin-bottom: 16px;
	display: flex;
	justify-content: center;
}

.partner-logo svg {
	width: 100px;
	height: 60px;
}

.partner h4 {
	font-size: 18px;
	color: var(--primary);
	margin-bottom: 8px;
	font-weight: 600;
}

.partner p {
	color: var(--text-light);
	font-size: 14px;
}

/* ===== CONTACT SECTION ===== */
.kontak {
	padding: 60px 0;
}

.kontak h2 {
	font-size: 36px;
	text-align: center;
	margin-bottom: 48px;
	color: var(--primary);
}

.kontak-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
}

.kontak-info {
	display: grid;
	gap: 32px;
}

.info-item h3 {
	font-size: 18px;
	color: var(--primary);
	margin-bottom: 8px;
	font-weight: 600;
}

.info-item p {
	color: var(--text-light);
	font-size: 15px;
}

.info-item a {
	color: var(--primary);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s;
}

.info-item a:hover {
	color: var(--accent);
}

.kontak-form {
	background: var(--bg-light);
	padding: 32px;
	border-radius: 8px;
}

.kontak-form button {
	width: 100%;
}

@media (max-width: 768px) {
	.kontak-container {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

/* ===== FOOTER ===== */
footer {
	background: var(--text-dark);
	color: var(--white);
	padding: 48px 20px 24px;
	margin-top: 80px;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 32px;
	margin-bottom: 32px;
}

.footer-section h4 {
	font-size: 18px;
	margin-bottom: 16px;
	color: var(--accent);
}

.footer-section p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.8;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 10px;
}

.footer-section a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s;
}

.footer-section a:hover {
	color: var(--accent);
}

.footer-bottom {
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
	main {
		padding: 0 16px;
	}

	.demo-bar {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
		font-size: 12px;
	}

	.demo-bar-links {
		width: 100%;
		justify-content: flex-start;
	}

	.page-hero h1 {
		font-size: 28px;
	}

	.page-hero p {
		font-size: 14px;
	}

	.cta-section h2 {
		font-size: 24px;
	}

	.cta-section p {
		font-size: 16px;
	}

	.services-grid,
	.benefits-grid,
	.stats-grid,
	.team-grid,
	.sertifikasi-grid,
	.partnership-grid {
		grid-template-columns: 1fr;
	}

	.paket-card.featured {
		transform: scale(1);
	}

	.calculator-container {
		padding: 20px;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	table {
		font-size: 12px;
	}

	table th,
	table td {
		padding: 10px;
	}
}

@media (max-width: 480px) {
	.nav-menu {
		gap: 16px;
	}

	.logo {
		font-size: 16px;
	}

	.hero-content h1 {
		font-size: 24px;
	}

	.hero-cta {
		flex-direction: column;
	}

	.btn {
		padding: 12px 20px;
		font-size: 14px;
		width: 100%;
	}

	h2 {
		font-size: 24px;
	}

	.features h2,
	.paket h2,
	.testimoni h2,
	.services h2,
	.benefits h2,
	.calculator h2,
	.price-table h2,
	.faq h2,
	.about-section h2,
	.mission-vision h2,
	.statistics h2,
	.team h2,
	.sertifikasi h2,
	.partnership h2,
	.kontak h2 {
		font-size: 28px;
	}

	.feature-card,
	.service-item,
	.paket-card,
	.team-member,
	.stat-card,
	.sertifikasi-item {
		padding: 20px;
	}

	.calculator-container {
		padding: 16px;
	}

	.kontak-form {
		padding: 20px;
	}

	.feature-card p,
	.service-item > p,
	.benefit p {
		font-size: 13px;
	}
}
