/* ===== Reset & Base ===== */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	margin: 0;
	background: #f4f6f8;
	color: #111;
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

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

/* ===== Container ===== */
.Container {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ===== Header ===== */
.Header {
	background: #2a7ab5;
	color: white;
	padding: 16px 0;
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.Header_Inner {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.Header_Logo {
	height: 42px;
	width: auto;
}

.Header_Title {
	font-size: 26px;
	font-weight: 700;
	letter-spacing: -0.5px;
}

.Header_Tagline {
	font-size: 13px;
	opacity: 0.75;
	margin-left: auto;
}

/* ===== Hero ===== */
.Hero {
	background: linear-gradient(135deg, #ffffff 0%, #edf2f7 100%);
	padding: 60px 0 50px;
	border-bottom: 1px solid #e5e5e5;
}

.Hero > .Container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.Hero_CTA {
	display: inline-block;
	background: #2a7ab5;
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	padding: 6px 18px;
	border-radius: 20px;
	margin-bottom: 16px;
	transition: background 0.2s;
}

.Hero_CTA:hover {
	background: #1e5f8e;
}

.Hero_Content h1 {
	font-size: 36px;
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 12px;
	color: #0a3d62;
}

.Hero_Sub {
	font-size: 18px;
	color: #555;
	margin: 0 0 24px;
}

.Hero_Features {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.Feature_Chip {
	color: #555;
	font-size: 14px;
	font-weight: 400;
	cursor: default;
	user-select: none;
}

.Feature_Chip::before {
	content: "•";
	margin-right: 4px;
}

.Hero_Image img {
	border-radius: 16px;
	border: 1px solid #e0e0e0;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* ===== Sections ===== */
.Section {
	padding: 56px 0;
}

.Section--alt {
	background: #ffffff;
}

.Section_Header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 40px;
}

.Section_Header h2 {
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 8px;
	color: #0a3d62;
}

.Section_Header p {
	font-size: 16px;
	color: #555;
	margin: 0;
}

/* ===== Typography ===== */
h2 {
	font-size: 26px;
	font-weight: 700;
	margin: 0 0 12px;
	color: #0a3d62;
}

h3 {
	font-size: 18px;
	font-weight: 600;
	margin: 20px 0 6px;
	color: #222;
}

p {
	margin: 10px 0;
	color: #333;
}

/* ===== Cards Grid ===== */
.Card_Grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.Card {
	background: white;
	border: 1px solid #e5e5e5;
	border-radius: 16px;
	padding: 28px 24px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.Card:hover {
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}

.Card--wide {
	max-width: 800px;
	margin: 0 auto;
}

.Card_Icon {
	font-size: 32px;
	margin-bottom: 12px;
}

.Card h3 {
	margin-top: 0;
}

/* ===== Content Block (text + image side by side) ===== */
.Content_Block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.Content_Block--reverse .Content_Text {
	order: 1;
}

.Content_Block--reverse .Content_Media {
	order: 2;
}

.Img_Border {
	width: 100%;
	border-radius: 16px;
	border: 1px solid #e0e0e0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	display: block;
}

/* ===== CTA Grid ===== */
.CTA_Grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.CTA_Card {
	background: white;
	border: 1px solid #e5e5e5;
	border-radius: 16px;
	padding: 32px 28px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.CTA_Card:hover {
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}

.CTA_Icon {
	font-size: 40px;
	margin-bottom: 12px;
}

.CTA_Card h3 {
	color: #0a3d62;
	font-size: 20px;
	margin: 0 0 8px;
}

.CTA_Card p {
	margin: 0 0 20px;
}

.Btn {
	display: inline-block;
	background: #0a3d62;
	color: white;
	text-decoration: none;
	padding: 12px 28px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 15px;
	transition: background 0.2s ease, transform 0.15s ease;
}

.Btn:hover {
	background: #0c4e7a;
	transform: translateY(-1px);
}

/* ===== Contact ===== */
.Contact_Card {
	background: white;
	border: 1px solid #e5e5e5;
	border-radius: 16px;
	padding: 40px;
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.Contact_Card h2 {
	margin-bottom: 24px;
}

.Contact_Items {
	display: inline-flex;
	flex-direction: column;
	gap: 20px;
}

.Contact_Item {
	display: flex;
	align-items: center;
	gap: 14px;
	text-align: left;
}

.Contact_Icon {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	color: #0a3d62;
}

.Contact_Icon--whatsapp {
	color: #25d366;
}

.Contact_Label {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #888;
	font-weight: 600;
}

.Contact_Value {
	display: block;
	font-size: 18px;
	font-weight: 700;
	color: #0a3d62;
}

.Contact_Link {
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.Contact_Link:hover {
	opacity: 0.7;
	text-decoration: underline;
}

/* ===== Footer ===== */
.Footer {
	background: #0a3d62;
	color: white;
	padding: 24px 0;
	margin-top: 0;
}

.Footer_Inner {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	opacity: 0.85;
}

/* ========================================
   Responsive
   ======================================== */

/* Tablet */
@media (max-width: 900px) {
	.Hero > .Container {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.Hero_Features {
		justify-content: center;
	}

	.Hero_Image {
		max-width: 500px;
		margin: 0 auto;
	}

	.Card_Grid {
		grid-template-columns: 1fr 1fr;
	}

	.Content_Block {
		grid-template-columns: 1fr;
	}

	.Content_Block--reverse .Content_Text {
		order: 0;
	}

	.Content_Block--reverse .Content_Media {
		order: 0;
	}

	.Content_Media {
		max-width: 500px;
		margin: 0 auto;
	}

	.CTA_Grid {
		grid-template-columns: 1fr;
		max-width: 480px;
		margin: 0 auto;
	}
}

/* Mobile */
@media (max-width: 600px) {
	.Header_Tagline {
		display: none;
	}

	.Hero {
		padding: 40px 0 32px;
	}

	.Hero_Content h1 {
		font-size: 26px;
	}

	.Hero_Sub {
		font-size: 16px;
	}

	.Section {
		padding: 36px 0;
	}

	.Section_Header {
		margin-bottom: 28px;
	}

	.Section_Header h2 {
		font-size: 24px;
	}

	h2 {
		font-size: 22px;
	}

	.Card_Grid {
		grid-template-columns: 1fr;
	}

	.Card {
		padding: 22px 18px;
	}

	.CTA_Card {
		padding: 24px 20px;
	}

	.Contact_Card {
		padding: 28px 20px;
	}

	.Contact_Value {
		font-size: 16px;
	}
}