:root {
	--primary: #0A3D91;        /* Primary Blue */
	--primary-dark: #082f70;
	--accent: #00AEEF;         /* Accent Blue */
	--light: #6ED6FF;          /* Light Blue */
	--green: #7ED957;          /* Fresh Green */
	--primary-light: #E4F3FC;  /* tint derived from Accent Blue for soft backgrounds */
	--bg: #ffffff;
	--bg-soft: #F0F9FF;        /* Background */
	--text: #10223f;
	--text-muted: #5b6b84;
	--border: #d9ecf9;
	--radius: 14px;
	--max-width: 1120px;
	--font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font);
	color: var(--text);
	background: var(--bg);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

.container {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 20px;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

/* ---------- Header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 500;
	background: rgba(255,255,255,0.95);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--border);
}

.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
}

.logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: var(--primary);
}
.logo-img {
	height: 40px;
	width: auto;
	display: block;
}

.nav-links {
	display: none;
	gap: 28px;
	list-style: none;
	margin: 0; padding: 0;
	font-size: 15px;
	font-weight: 600;
}

.nav-links a { text-decoration: none; }

.header-actions { display: flex; align-items: center; gap: 10px; }

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn:active { transform: scale(0.97); }

.btn-primary { background: var(--primary); color: #fff; }
.btn-secondary { background: var(--primary-light); color: var(--primary); }
.btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 14px; }

/* ---------- Hero ---------- */
.hero {
	padding: 48px 0 48px;
	background: var(--bg-soft);
	text-align: center;
}

.hero-logo {
	max-width: 320px;
	width: 70%;
	height: auto;
	margin: 0 auto 20px;
}

.hero h1 {
	font-size: clamp(32px, 6vw, 52px);
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0 0 16px;
	color: var(--primary);
}

.hero p {
	font-size: 18px;
	color: var(--text-muted);
	max-width: 560px;
	margin: 0 auto 28px;
}

.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Sections ---------- */
section { padding: 56px 0; }
section.tight { padding: 40px 0; }

.section-title {
	font-size: clamp(26px, 4vw, 36px);
	letter-spacing: -0.02em;
	margin: 0 0 8px;
	text-align: center;
}

.section-sub {
	text-align: center;
	color: var(--text-muted);
	max-width: 520px;
	margin: 0 auto 40px;
	font-size: 16px;
}

/* ---------- Trust strip ---------- */
.trust-strip {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	padding: 40px 0;
}

.trust-item { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; }
.trust-icon {
	width: 40px; height: 40px; border-radius: 50%;
	background: var(--primary-light); color: var(--primary);
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0; font-size: 18px;
}
.trust-icon.is-green { background: #eaf9e2; color: #4d9c2e; }

/* ---------- How it works ---------- */
.steps {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.step { text-align: center; }
.step-number {
	width: 44px; height: 44px; border-radius: 50%;
	background: var(--primary); color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-weight: 700; margin: 0 auto 14px;
}
.step h3 { margin: 0 0 6px; font-size: 18px; }
.step p { margin: 0; color: var(--text-muted); font-size: 14px; }

/* ---------- Service cards ---------- */
.service-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.service-card {
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	background: #fff;
	text-decoration: none;
	color: inherit;
	display: block;
}

.service-card-img {
	height: 96px;
	background: linear-gradient(180deg, var(--bg-soft), #ffffff);
	display: flex; align-items: center; justify-content: center;
}

.service-card-icon {
	width: 64px; height: 64px; border-radius: 50%;
	background: var(--primary-light);
	display: flex; align-items: center; justify-content: center;
	font-size: 28px;
}

.service-card-body { padding: 18px; }
.service-card-body h3 { margin: 0 0 6px; font-size: 18px; }
.service-card-body p { margin: 0 0 12px; font-size: 14px; color: var(--text-muted); }
.service-card-price { font-weight: 700; color: var(--accent); font-size: 14px; }

/* ---------- Why choose us ---------- */
.benefits {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}
.benefit { display: flex; gap: 14px; align-items: flex-start; }
.benefit-icon {
	width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0;
	background: var(--primary-light); color: var(--primary);
	display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.benefit h4 { margin: 0 0 4px; font-size: 15px; }
.benefit p { margin: 0; font-size: 14px; color: var(--text-muted); }

/* ---------- Service areas ---------- */
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.area-chip {
	padding: 8px 16px; border-radius: 999px; background: var(--bg-soft);
	border: 1px solid var(--border); font-size: 14px; font-weight: 600;
}

/* ---------- Reviews (placeholder) ---------- */
.review-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.review-card {
	border: 1px solid var(--border); border-radius: var(--radius);
	padding: 20px; background: var(--bg-soft);
}
.review-stars { color: #f5a623; margin-bottom: 10px; font-size: 14px; }
.review-card p { font-size: 14px; color: var(--text-muted); margin: 0 0 12px; }
.review-name { font-weight: 700; font-size: 14px; }
.review-placeholder-note {
	text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 20px;
}

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
	width: 100%; text-align: left; background: none; border: none;
	padding: 18px 0; font-size: 16px; font-weight: 600; cursor: pointer;
	display: flex; justify-content: space-between; align-items: center;
	color: var(--text);
}
.faq-answer {
	max-height: 0; overflow: hidden; transition: max-height 0.25s ease;
	font-size: 14px; color: var(--text-muted);
}
.faq-answer-inner { padding-bottom: 18px; }
.faq-item.is-open .faq-answer { max-height: 300px; }
.faq-icon { transition: transform 0.2s ease; font-size: 20px; }
.faq-item.is-open .faq-icon { transform: rotate(45deg); }

/* ---------- Final CTA ---------- */
.final-cta { background: var(--primary); color: #fff; text-align: center; padding: 64px 0; }
.final-cta h2 { font-size: clamp(26px, 4vw, 36px); margin: 0 0 10px; }
.final-cta p { color: rgba(255,255,255,0.8); margin: 0 0 28px; }
.final-cta .btn-primary { background: #fff; color: var(--primary); }
.final-cta .btn-outline { border-color: rgba(255,255,255,0.5); color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-soft); padding: 48px 0 100px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 28px; margin-bottom: 28px; }
.footer-col h4 { font-size: 14px; margin: 0 0 12px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { text-decoration: none; color: var(--text-muted); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; color: var(--text-muted); font-size: 13px; }

/* ---------- Policy modal ---------- */
.policy-overlay {
	display: none;
	position: fixed; inset: 0; z-index: 2000;
	background: rgba(16, 34, 63, 0.55);
	align-items: center; justify-content: center;
	padding: 16px;
}
.policy-overlay.is-open { display: flex; }
.policy-modal {
	background: #fff; border-radius: var(--radius);
	max-width: 640px; width: 100%; max-height: 85vh;
	display: flex; flex-direction: column; overflow: hidden;
}
.policy-modal-header {
	display: flex; align-items: center; justify-content: space-between;
	border-bottom: 1px solid var(--border); padding: 10px 16px;
	flex-wrap: wrap; gap: 8px;
}
.policy-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.policy-tab {
	background: var(--bg-soft); border: 1px solid var(--border); border-radius: 999px;
	padding: 7px 14px; font-size: 13px; font-weight: 600; cursor: pointer; color: var(--text);
}
.policy-tab.is-active { background: var(--primary); color: #fff; border-color: var(--primary); }
.policy-close {
	background: none; border: none; font-size: 26px; line-height: 1; cursor: pointer;
	color: var(--text-muted); padding: 0 4px;
}
.policy-modal-body { padding: 20px 24px; overflow-y: auto; }
.policy-panel { display: none; font-size: 14px; color: var(--text); line-height: 1.7; }
.policy-panel.is-active { display: block; }
.policy-panel h3 { margin-top: 0; }
.policy-panel p { margin: 0 0 12px; }

/* ---------- Forms (checkout) ---------- */
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.form-row input,
.form-row select,
.form-row textarea {
	width: 100%; padding: 12px 14px; border-radius: 8px;
	border: 1.5px solid var(--border); font-size: 15px; font-family: inherit;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
	outline: none; border-color: var(--primary);
}
.form-grid-2 { display: grid; grid-template-columns: 1fr; gap: 0 16px; }
.payment-option {
	display: flex; align-items: center; gap: 12px; padding: 14px;
	border: 1.5px solid var(--border); border-radius: 10px; margin-bottom: 10px; cursor: pointer;
}
.payment-option input { width: auto; }
.payment-note { font-size: 13px; color: var(--text-muted); margin-top: 8px; }

.order-summary-box {
	background: var(--bg-soft); border-radius: var(--radius); padding: 20px; margin-bottom: 24px;
}
.order-summary-row { display: flex; justify-content: space-between; font-size: 14px; padding: 6px 0; }
.order-summary-row.total { font-weight: 700; font-size: 16px; border-top: 1px solid var(--border); margin-top: 8px; padding-top: 12px; }

/* ---------- Desktop breakpoints ---------- */
@media (min-width: 768px) {
	.nav-links { display: flex; }
	.trust-strip { grid-template-columns: repeat(3, 1fr); }
	.steps { grid-template-columns: repeat(4, 1fr); }
	.service-grid { grid-template-columns: repeat(3, 1fr); }
	.benefits { grid-template-columns: repeat(2, 1fr); }
	.review-grid { grid-template-columns: repeat(3, 1fr); }
	.footer-grid { grid-template-columns: repeat(4, 1fr); }
	.form-grid-2 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
	.trust-strip { grid-template-columns: repeat(6, 1fr); }
}
