:root {
	--brand: #1e73be;
	--brand-dark: #14548c;
	--text: #2b2b2b;
	--muted: #6b6b6b;
	--bg-light: #f5f7fa;
	--white: #ffffff;
	--border: #e3e7ec;
	--radius: 10px;
	--shadow: 0 4px 18px rgba(20, 40, 70, 0.08);
	--font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font);
	color: var(--text);
	line-height: 1.65;
	background: var(--white);
}

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

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }

.container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 20px;
}

h1, h2, h3, h4 {
	line-height: 1.25;
	margin: 0 0 16px;
}

h2 {
	font-size: clamp(1.5rem, 2.4vw, 2.1rem);
}

.section {
	padding: 64px 0;
}

.section--muted {
	background: var(--bg-light);
}

.section-head {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 40px;
}

.section-head p {
	color: var(--muted);
}

.eyebrow {
	display: inline-block;
	color: var(--brand);
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 0.8rem;
	margin-bottom: 10px;
}

/* Skip link */
.skip-link {
	position: absolute;
	left: -999px;
	top: auto;
}
.skip-link:focus {
	left: 12px;
	top: 12px;
	background: var(--white);
	padding: 10px 16px;
	border-radius: 6px;
	z-index: 999;
}

/* Top bar */
.topbar {
	background: var(--brand-dark);
	color: #eaf2fb;
	font-size: 0.85rem;
}
.topbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 8px;
	padding-bottom: 8px;
	flex-wrap: wrap;
	gap: 6px;
}
.topbar a { color: #eaf2fb; }
.topbar a:hover { color: #ffffff; }
.topbar-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* Header */
.site-header {
	background: var(--white);
	box-shadow: 0 1px 0 var(--border);
	position: sticky;
	top: 0;
	z-index: 100;
}
.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 14px;
	padding-bottom: 14px;
}
.brand {
	display: flex;
	align-items: center;
	gap: 10px;
}
.brand img { height: 48px; width: auto; }
.brand-text {
	font-weight: 800;
	font-size: 1.05rem;
	color: var(--text);
	line-height: 1.2;
}
.brand-text span {
	display: block;
	font-weight: 500;
	font-size: 0.78rem;
	color: var(--muted);
}

.main-nav ul {
	list-style: none;
	display: flex;
	gap: 28px;
	margin: 0;
	padding: 0;
}
.main-nav a {
	color: var(--text);
	font-weight: 600;
	font-size: 0.95rem;
	padding: 6px 0;
	border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
	color: var(--brand);
	border-bottom-color: var(--brand);
}

.header-cta {
	display: flex;
	align-items: center;
	gap: 12px;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--brand);
	color: #fff;
	font-weight: 700;
	padding: 12px 22px;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	font-size: 0.95rem;
	white-space: nowrap;
}
.btn:hover { background: var(--brand-dark); color: #fff; }
.btn--outline {
	background: transparent;
	border: 2px solid var(--white);
	color: var(--white);
}
.btn--outline:hover { background: rgba(255,255,255,.15); color: #fff; }
.btn--ghost {
	background: transparent;
	border: 2px solid var(--brand);
	color: var(--brand);
}
.btn--ghost:hover { background: var(--brand); color: #fff; }

.nav-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.6rem;
	cursor: pointer;
	color: var(--text);
}

/* Hero */
.hero {
	background: linear-gradient(180deg, rgba(20,84,140,.92), rgba(30,115,190,.88)), var(--bg-light);
	background-size: cover;
	color: #fff;
	padding: 84px 0;
}
.hero .container {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 40px;
	align-items: center;
}
.hero h1 {
	font-size: clamp(1.9rem, 3.6vw, 2.8rem);
	margin-bottom: 18px;
}
.hero p {
	font-size: 1.08rem;
	color: #eaf2fb;
	margin-bottom: 28px;
	max-width: 55ch;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-figure img {
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}
.hero-badges {
	display: flex;
	gap: 24px;
	margin-top: 36px;
	flex-wrap: wrap;
}
.hero-badge {
	font-weight: 700;
	font-size: 0.9rem;
	color: #eaf2fb;
	display: flex;
	align-items: center;
	gap: 8px;
}
.hero-badge::before {
	content: "\2713";
	background: rgba(255,255,255,.18);
	border-radius: 50%;
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* Feature / service grid */
.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 24px;
}
.card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px 24px;
	text-align: center;
	box-shadow: var(--shadow);
}
.card-icon {
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background: rgba(30,115,190,.1);
	color: var(--brand);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	margin: 0 auto 16px;
}
.card h3 {
	font-size: 1.05rem;
	margin-bottom: 8px;
}
.card p {
	color: var(--muted);
	font-size: 0.92rem;
	margin: 0;
}

/* Stats */
.stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	text-align: center;
}
.stat-num {
	font-size: clamp(2rem, 4vw, 2.6rem);
	font-weight: 800;
	color: var(--brand);
}
.stat-label {
	color: var(--muted);
	font-weight: 600;
}

/* Testimonials */
.testimonial {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px;
	box-shadow: var(--shadow);
}
.testimonial p { color: var(--text); }
.testimonial cite {
	display: block;
	margin-top: 14px;
	font-style: normal;
	font-weight: 700;
	color: var(--brand-dark);
}
.testimonial cite span {
	display: block;
	font-weight: 500;
	color: var(--muted);
	font-size: 0.85rem;
}

/* CTA band */
.cta-band {
	background: var(--brand);
	color: #fff;
	border-radius: var(--radius);
	padding: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.cta-band h2 { margin: 0 0 6px; }
.cta-band p { margin: 0; color: #eaf2fb; }

/* Gallery */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 16px;
}
.gallery-grid figure {
	margin: 0;
	overflow: hidden;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}
.gallery-grid img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform .3s ease;
}
.gallery-grid a:hover img { transform: scale(1.06); }

/* Contact */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}
.contact-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 18px;
}
.contact-list li {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 18px;
	box-shadow: var(--shadow);
}
.contact-list .ico {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(30,115,190,.1);
	color: var(--brand);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 1.1rem;
}
.contact-list strong { display: block; font-size: 0.85rem; color: var(--muted); font-weight: 600; }
.contact-list a, .contact-list span.value { font-weight: 700; color: var(--text); font-size: 1.02rem; }
.contact-list a:hover { color: var(--brand); }

.map-frame {
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	height: 100%;
	min-height: 320px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* Breadcrumb / page header */
.page-header {
	background: var(--bg-light);
	padding: 40px 0;
	border-bottom: 1px solid var(--border);
}
.page-header h1 { margin-bottom: 6px; }
.breadcrumb {
	color: var(--muted);
	font-size: 0.9rem;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--brand); }

/* Floating action buttons */
.fab-stack {
	position: fixed;
	right: 18px;
	bottom: 18px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	z-index: 200;
}
.fab {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.4rem;
	box-shadow: 0 6px 16px rgba(0,0,0,.22);
}
.fab--call { background: #1e73be; }
.fab--whatsapp { background: #25d366; }

/* Footer */
.site-footer {
	background: #12233a;
	color: #b9c8db;
	padding: 48px 0 20px;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 32px;
	margin-bottom: 32px;
}
.site-footer h4 { color: #fff; font-size: 1rem; }
.site-footer a { color: #b9c8db; }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,.1);
	padding-top: 18px;
	font-size: 0.85rem;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
}

/* Responsive */
@media (max-width: 900px) {
	.hero .container { grid-template-columns: 1fr; }
	.hero-figure { order: -1; }
	.contact-grid { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
	.topbar { display: none; }
	.main-nav {
		position: fixed;
		inset: 0 0 0 30%;
		background: var(--white);
		transform: translateX(100%);
		transition: transform .25s ease;
		box-shadow: -8px 0 24px rgba(0,0,0,.15);
		padding: 90px 24px 24px;
		z-index: 150;
	}
	.main-nav.is-open { transform: translateX(0); }
	.main-nav ul { flex-direction: column; gap: 6px; }
	.main-nav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); }
	.nav-toggle { display: block; }
	.header-cta .btn span { display: none; }
	.stats { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; }
	.cta-band { flex-direction: column; text-align: center; }
}
