/* ==========================================================================
   The Capital Tenders — Design System
   ========================================================================== */

:root {
	--navy-900: #0a1538;
	--navy-800: #0d1b4c;
	--navy-700: #142868;
	--navy-600: #2a3a72;
	--navy-100: #eaedf7;
	--orange-600: #e8590c;
	--orange-500: #f7941d;
	--orange-100: #fff1de;
	--gold: #ffc72c;
	--logo-navy: #0b3254;
	--logo-gold: #f7b517;
	--green: #22a55a;
	--gray-900: #131b2e;
	--gray-700: #3f475c;
	--gray-500: #6b7386;
	--gray-300: #d8dce6;
	--gray-100: #f4f6fb;
	--white: #ffffff;

	--font-head: 'Poppins', 'Segoe UI', sans-serif;
	--font-body: 'Inter', 'Segoe UI', sans-serif;

	--container: 1240px;
	--radius-sm: 10px;
	--radius-md: 16px;
	--radius-lg: 24px;
	--shadow-sm: 0 2px 10px rgba(13, 27, 76, 0.06);
	--shadow-md: 0 12px 32px rgba(13, 27, 76, 0.12);
	--shadow-lg: 0 24px 60px rgba(13, 27, 76, 0.18);

	--header-h: 88px;
}

/* ---- Material Symbols icons ----
   Self-hosted (not loaded from Google Fonts CDN) so icons never fall back
   to showing their raw ligature name as text if an external font request
   is blocked or slow — subsetted to just the icons this theme uses, with
   weight/optical-size/grade pinned to shrink it from ~4MB to ~280KB. */
@font-face {
	font-family: 'Material Symbols Outlined';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('../fonts/material-symbols-outlined.woff2') format('woff2');
}
.material-symbols-outlined {
	font-family: 'Material Symbols Outlined';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-feature-settings: 'liga';
	-webkit-font-smoothing: antialiased;
	font-variation-settings: 'FILL' 1;
	vertical-align: middle;
}
.ct-icon { flex-shrink: 0; }
.material-symbols-outlined.star-icon { color: var(--gold); font-size: 20px; }
.material-symbols-outlined.icon-green { color: var(--green); }
.material-symbols-outlined.icon-orange { color: var(--orange-500); }
.material-symbols-outlined.icon-white { color: #fff; }

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body, h1, h2, h3, h4, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font: inherit; background: none; border: 0; cursor: pointer; }

body {
	font-family: var(--font-body);
	color: var(--gray-900);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

h1, h2, h3 {
	font-family: var(--font-head);
	color: var(--navy-800);
	line-height: 1.15;
	font-weight: 700;
}

.screen-reader-text {
	position: absolute; left: -9999px;
}
.skip-link:focus {
	left: 12px; top: 12px; position: fixed; z-index: 9999;
	background: var(--navy-800); color: #fff; padding: 10px 16px; border-radius: 8px;
}

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

.text-orange { color: var(--orange-500); }

/* ---- Buttons ---- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.95rem;
	white-space: nowrap;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
	border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--orange-500); color: #fff; box-shadow: 0 8px 20px rgba(247,148,29,.35); }
.btn--primary:hover { background: var(--orange-600); }
.btn--outline { border-color: var(--navy-800); color: var(--navy-800); }
.btn--outline:hover { background: var(--navy-800); color: #fff; }
.btn--white { background: #fff; color: var(--navy-800); }
.btn--outline-white { border-color: rgba(255,255,255,.6); color: #fff; }
.btn--outline-white:hover { background: rgba(255,255,255,.15); }
.btn--whatsapp { background: #25D366; color: #fff; }
.btn--whatsapp:hover { background: #1ebc59; }
.btn--lg { padding: 15px 30px; font-size: 1.02rem; }
.btn--sm { padding: 8px 16px; font-size: 0.85rem; }

/* ==========================================================================
   Top bar
   ========================================================================== */
.topbar {
	background: var(--navy-900);
	color: rgba(255,255,255,.85);
	font-size: 0.8rem;
	display: none;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 38px; }
.topbar__left { display: flex; align-items: center; gap: 22px; }
.topbar__item { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.85); }
.topbar__item:hover { color: var(--orange-500); }
.topbar__rating { display: inline-flex; align-items: center; gap: 6px; }
.topbar__icon { font-size: 15px; }
.star-icon.topbar__icon { color: var(--gold); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255,255,255,.98);
	box-shadow: 0 1px 0 rgba(13,27,76,.08);
	height: var(--header-h);
	display: flex;
	align-items: center;
	transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.brand { display: flex; align-items: center; gap: 10px; min-width: 0; flex-shrink: 1; }
.brand__mark { flex-shrink: 0; line-height: 0; }
.brand__mark img { display: block; width: 44px; height: 44px; object-fit: contain; }
.brand--footer .brand__mark img { width: 40px; height: 40px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.brand__title {
	font-family: var(--font-head);
	font-weight: 800;
	font-size: clamp(.8rem, 3.6vw, 1.05rem);
	color: var(--navy-800);
	letter-spacing: .2px;
	white-space: nowrap;
}
.brand__title--light { color: #fff; }
.brand__title--accent { color: var(--logo-gold); }
.brand__tagline { font-size: .68rem; color: var(--gray-500); font-weight: 500; letter-spacing: .3px; }
.brand--footer .brand__tagline { display: none; }

.main-nav > ul { display: flex; align-items: center; gap: 30px; }
.main-nav a {
	font-weight: 600;
	font-size: .93rem;
	color: var(--gray-700);
	position: relative;
	padding: 6px 0;
}
.main-nav a::after {
	content: '';
	position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
	background: var(--orange-500);
	transform: scaleX(0);
	transition: transform .2s ease;
}
.main-nav a:hover { color: var(--navy-800); }
.main-nav a:hover::after { transform: scaleX(1); }

.site-header__cta { display: flex; align-items: center; gap: 10px; }

/* Services dropdown */
.has-dropdown { position: relative; }
.nav-item-row { display: inline-flex; align-items: center; gap: 4px; }
.dropdown-toggle {
	display: inline-flex; align-items: center; justify-content: center;
	width: 20px; height: 20px; color: inherit; flex-shrink: 0;
}
.dropdown-toggle .material-symbols-outlined { font-size: 20px; transition: transform .2s ease; }
.dropdown-menu {
	position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
	background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
	padding: 10px; width: 480px;
	display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
	opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(6px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s;
	z-index: 50;
}
.dropdown-menu li { grid-column: span 1; }
.dropdown-menu a {
	display: block; padding: 9px 12px; border-radius: 8px;
	font-size: .84rem; font-weight: 600; color: var(--gray-700); white-space: normal; line-height: 1.3;
}
.dropdown-menu a:hover { background: var(--gray-100); color: var(--orange-600); }
.dropdown-menu__all { grid-column: 1 / -1; border-top: 1px solid var(--gray-300); margin-top: 6px; padding-top: 6px; }
.dropdown-menu__all a { color: var(--orange-600); text-align: center; }

@media (min-width: 900px) {
	.has-dropdown:hover .dropdown-menu,
	.has-dropdown:focus-within .dropdown-menu {
		opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
	}
	.has-dropdown:hover .dropdown-toggle .material-symbols-outlined { transform: rotate(180deg); }
	.dropdown-toggle { pointer-events: none; }
}

.nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	color: var(--navy-800);
	border-radius: 50%;
	transition: background .15s ease;
}
.nav-toggle:hover { background: var(--gray-100); }
.nav-toggle__icon { font-size: 26px; }
.nav-toggle__icon--close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon--open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon--close { display: inline-block; }

/* ==========================================================================
   Section heads (shared)
   ========================================================================== */
.section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.section-head--light .section-eyebrow { color: var(--orange-500); }
.section-head--light h2 { color: #fff; }
.section-head--light .section-desc { color: rgba(255,255,255,.72); }
.section-eyebrow {
	display: inline-block;
	font-weight: 700;
	font-size: .78rem;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--orange-600);
	margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 12px; }
.section-desc { color: var(--gray-500); font-size: 1rem; line-height: 1.6; }

/* ==========================================================================
   Breadcrumb (service pages)
   ========================================================================== */
.breadcrumb { background: var(--gray-100); border-bottom: 1px solid var(--gray-300); }
.breadcrumb__inner { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; padding-block: 14px; font-size: .82rem; color: var(--gray-500); }
.breadcrumb__inner a { color: var(--gray-500); font-weight: 600; }
.breadcrumb__inner a:hover { color: var(--orange-600); }
.breadcrumb__inner span[aria-current] { color: var(--navy-800); font-weight: 600; }

/* ==========================================================================
   Service hero (single service pages)
   ========================================================================== */
.service-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-700) 100%);
	padding-block: 56px 70px;
	text-align: center;
}
.service-hero__bg {
	position: absolute; inset: 0;
	background-image:
		radial-gradient(circle at 85% 15%, rgba(247,148,29,.22), transparent 45%),
		radial-gradient(circle at 10% 90%, rgba(42,58,114,.6), transparent 50%),
		radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
	background-size: auto, auto, 26px 26px;
}
.service-hero__inner { position: relative; max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.service-hero__icon {
	width: 64px; height: 64px; border-radius: 18px;
	display: flex; align-items: center; justify-content: center;
	color: #fff; margin-bottom: 22px;
	box-shadow: var(--shadow-md);
}
.service-hero__icon .material-symbols-outlined { font-size: 32px; }
.service-hero__icon--navy { background: var(--navy-600); }
.service-hero__icon--orange { background: var(--orange-500); }
.service-hero h1 { color: #fff; font-size: clamp(1.8rem, 4.5vw, 2.6rem); font-weight: 800; margin-bottom: 18px; }
.service-hero__intro { color: rgba(255,255,255,.78); font-size: 1.05rem; line-height: 1.7; margin-bottom: 30px; }
.service-hero .hero__actions { justify-content: center; margin-bottom: 34px; }
.service-hero .hero__stats { justify-content: center; }

/* ==========================================================================
   Included (what's included) section
   ========================================================================== */
.included { padding-block: 80px; background: var(--white); }
.included__inner { display: grid; grid-template-columns: 1fr; gap: 46px; align-items: center; }
.included__list { display: flex; flex-direction: column; gap: 16px; margin: 22px 0 30px; }
.included__list li { display: flex; align-items: flex-start; gap: 12px; font-size: .98rem; color: var(--gray-900); line-height: 1.5; }
.included__list li .material-symbols-outlined { flex-shrink: 0; margin-top: 1px; color: var(--green); font-size: 22px; }
.included__visual { display: flex; justify-content: center; }
.included__card-img-wrap {
	width: 100%;
	max-width: 480px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 18px 40px rgba(13,27,76,.16);
	border: 1px solid var(--gray-300);
	background: #fff;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.included__card-img-wrap:hover { transform: translateY(-5px); box-shadow: 0 24px 50px rgba(13,27,76,.24); }
.included__img { width: 100%; height: auto; display: block; object-fit: cover; }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq { padding-block: 80px; background: var(--gray-100); }
.faq__inner { max-width: 780px; }
.faq__list { display: flex; flex-direction: column; gap: 14px; }
.faq__item {
	background: #fff; border-radius: var(--radius-md); border: 1px solid var(--gray-300);
	padding: 4px 24px;
}
.faq__item summary {
	list-style: none; cursor: pointer;
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	padding-block: 20px; font-weight: 700; color: var(--navy-800); font-size: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__chevron { flex-shrink: 0; color: var(--orange-500); transition: transform .2s ease; }
.faq__item[open] .faq__chevron { transform: rotate(180deg); }
.faq__item p { color: var(--gray-500); line-height: 1.65; padding-bottom: 22px; font-size: .94rem; }

/* ==========================================================================
   Related services
   ========================================================================== */
.related-services { padding-block: 80px; background: var(--white); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-700) 100%);
	padding-block: 64px 90px;
}
.hero__bg {
	position: absolute; inset: 0;
	background-image:
		radial-gradient(circle at 85% 15%, rgba(247,148,29,.25), transparent 45%),
		radial-gradient(circle at 10% 90%, rgba(42,58,114,.6), transparent 50%),
		radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
	background-size: auto, auto, 26px 26px;
	opacity: .9;
}
.hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	align-items: center;
}
.hero__content { min-width: 0; }
.eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	color: var(--orange-500);
	background: rgba(247,148,29,.12);
	border: 1px solid rgba(247,148,29,.35);
	padding: 7px 16px;
	border-radius: 999px;
	font-weight: 600;
	font-size: .82rem;
	margin-bottom: 22px;
}
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange-500); box-shadow: 0 0 0 4px rgba(247,148,29,.25); }

.hero__title {
	color: #fff;
	font-size: clamp(2rem, 5.5vw, 3.4rem);
	font-weight: 800;
	letter-spacing: -.5px;
	margin-bottom: 20px;
}
.hero__subtitle {
	color: rgba(255,255,255,.78);
	font-size: clamp(1rem, 2vw, 1.15rem);
	line-height: 1.65;
	max-width: 560px;
	margin-bottom: 32px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.hero__stats { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero__stat { display: flex; flex-direction: column; }
.hero__stat strong { color: #fff; font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.hero__stat span { color: rgba(255,255,255,.65); font-size: .8rem; }
.hero__stat-divider { width: 1px; height: 34px; background: rgba(255,255,255,.2); }

.hero__visual { position: relative; min-height: 360px; display: none; margin-top: 10px; }
.hero__img-frame {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 20px 45px rgba(13,27,76,.45), 0 0 0 1px rgba(255,255,255,.18);
	aspect-ratio: 4 / 3;
	background: var(--navy-900);
}
.hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero__visual:hover .hero__img { transform: scale(1.04); }
.hero__img-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(13,27,76,0.05) 0%, rgba(13,27,76,0.35) 100%);
	pointer-events: none;
}
.hero__card {
	position: absolute;
	background: rgba(255,255,255,.94);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,.6);
	border-radius: var(--radius-md);
	box-shadow: 0 12px 28px rgba(0,0,0,.2);
	padding: 14px 18px;
	transition: transform .3s ease, box-shadow .3s ease;
}
.hero__card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,.28); }
.hero__card--float-1 {
	display: flex; align-items: center; gap: 10px;
	bottom: -15px; left: -15px; z-index: 3; width: auto;
}
.hero__card--float-1 > .material-symbols-outlined { font-size: 24px; }
.hero__card--float-1 strong { display: block; font-size: .85rem; color: var(--navy-800); }
.hero__card--float-1 span { font-size: .74rem; color: var(--gray-500); }
.hero__card--float-2 {
	top: -15px; right: -15px; z-index: 3;
	display: flex; flex-direction: column; gap: 4px;
	background: rgba(13,27,76,.94); border-color: rgba(247,148,29,.4);
}
.hero__card--float-2 strong { color: #fff; font-family: var(--font-head); font-size: 1.3rem; }
.hero__card--float-2 strong span { font-size: .7rem; color: rgba(255,255,255,.6); font-weight: 400; }
.hero__card--float-2 span:last-child { color: rgba(255,255,255,.8); font-size: .74rem; }
.hero__card--float-3 {
	display: flex; align-items: center; gap: 10px;
	bottom: 35%; right: -25px; z-index: 3; width: auto;
}
.hero__card--float-3 > .material-symbols-outlined { font-size: 24px; }
.hero__card--float-3 strong { display: block; font-size: .85rem; color: var(--navy-800); }
.hero__card--float-3 span { font-size: .74rem; color: var(--gray-500); }
.hero__ring { position: absolute; border-radius: 50%; border: 1px dashed rgba(255,255,255,.18); pointer-events: none; }
.hero__ring--1 { width: 320px; height: 320px; top: -30px; right: -20px; }
.hero__ring--2 { width: 200px; height: 200px; bottom: -40px; left: -20px; }

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust-strip { background: var(--navy-900); padding-block: 20px; }
.trust-strip__inner {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: start;
	gap: 16px 12px;
}
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.85); font-size: .8rem; font-weight: 600; justify-content: center; text-align: center; }
.trust-item .material-symbols-outlined { color: var(--orange-500); font-size: 24px; }
.trust-item .star-icon.trust-item__star { color: var(--orange-500); }

/* ==========================================================================
   Services
   ========================================================================== */
.services { padding-block: 88px; background: var(--white); }
.services__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 22px;
}
.service-card {
	background: var(--gray-100);
	border-radius: var(--radius-md);
	padding: 30px 26px;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
	border: 1px solid transparent;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: #fff; border-color: var(--gray-300); }
.service-card__icon {
	width: 54px; height: 54px;
	border-radius: 14px;
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 18px;
	color: #fff;
}
.service-card--navy .service-card__icon { background: var(--navy-800); }
.service-card--orange .service-card__icon { background: var(--orange-500); }
.service-card__icon .material-symbols-outlined { font-size: 28px; }
.service-card { display: block; }
.service-card h3 { font-size: 1.04rem; margin-bottom: 10px; }
.service-card p { color: var(--gray-500); font-size: .9rem; line-height: 1.6; margin-bottom: 14px; }
.service-card__link {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: .84rem; font-weight: 700; color: var(--orange-600);
	opacity: 0; transform: translateX(-4px);
	transition: opacity .2s ease, transform .2s ease;
}
.service-card:hover .service-card__link { opacity: 1; transform: translateX(0); }
.service-card__link .material-symbols-outlined { font-size: 16px; }

/* ==========================================================================
   Why us
   ========================================================================== */
.why-us {
	background: var(--navy-800);
	padding-block: 88px;
	position: relative;
	overflow: hidden;
}
.why-us::before {
	content: '';
	position: absolute; inset: 0;
	background-image: radial-gradient(circle at 90% 10%, rgba(247,148,29,.18), transparent 40%);
}
.why-us__grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 20px; }
.why-card {
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.1);
	border-radius: var(--radius-md);
	padding: 28px;
}
.why-card__stat {
	display: inline-flex; align-items: center; gap: 3px;
	font-family: var(--font-head); font-weight: 800; font-size: 1.8rem;
	color: var(--orange-500); margin-bottom: 10px;
}
.why-card__plus { font-size: 1.1rem; font-weight: 700; }
.why-card__star.star-icon { font-size: 22px; margin-left: 1px; }
.why-card h3 { color: #fff; font-size: 1.05rem; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,.65); font-size: .88rem; line-height: 1.6; margin-bottom: 14px; }
.why-card__label { font-size: .74rem; color: rgba(255,255,255,.4); font-style: italic; }

/* ==========================================================================
   About
   ========================================================================== */
.about { padding-block: 88px; background: var(--white); }
.about__inner { display: grid; grid-template-columns: 1fr; gap: 50px; align-items: center; }
.about__visual { position: relative; }
.about__frame {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 16px 36px rgba(13,27,76,.15);
	aspect-ratio: 4 / 3;
	background: var(--navy-900);
}
.about__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.about__visual:hover .about__img { transform: scale(1.04); }
.about__img-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 60%, rgba(13,27,76,.25) 100%);
	pointer-events: none;
}
.about__badge {
	position: absolute; bottom: -20px; right: 20px;
	background: rgba(255,255,255,.95); backdrop-filter: blur(8px);
	border-radius: var(--radius-md); box-shadow: 0 12px 28px rgba(0,0,0,.15);
	padding: 16px 20px; display: flex; flex-direction: column;
	border-left: 4px solid var(--orange-500); z-index: 2;
}
.about__badge strong { font-family: var(--font-head); font-size: 1.5rem; color: var(--navy-800); }
.about__badge span { font-size: .76rem; color: var(--gray-500); max-width: 140px; }
.about__content p { color: var(--gray-500); line-height: 1.75; margin: 18px 0 22px; font-size: 1rem; }
.about__points { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.about__points li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: .92rem; color: var(--gray-900); }
.about__points .material-symbols-outlined { font-size: 20px; }

/* ==========================================================================
   Process
   ========================================================================== */
.process { padding-block: 88px; background: var(--gray-100); }
.process__grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.process-card {
	background: #fff; border-radius: var(--radius-md); padding: 30px 26px;
	box-shadow: var(--shadow-sm); position: relative;
}
.process-card__num {
	display: inline-block; font-family: var(--font-head); font-weight: 800;
	font-size: 1rem; color: #fff; background: var(--orange-500);
	width: 40px; height: 40px; line-height: 40px; text-align: center; border-radius: 50%;
	margin-bottom: 18px;
}
.process-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.process-card p { color: var(--gray-500); font-size: .9rem; line-height: 1.6; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials { background: var(--navy-800); padding-block: 88px; position: relative; overflow: hidden; }
.testimonials::before { content:''; position:absolute; inset:0; background-image: radial-gradient(circle at 10% 80%, rgba(247,148,29,.15), transparent 40%); }
.testimonials__summary { position: relative; display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
.testimonials__score {
	background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
	border-radius: var(--radius-md); padding: 30px; text-align: center;
	display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.testimonials__score strong { font-family: var(--font-head); font-size: 3rem; color: #fff; font-weight: 800; }
.testimonials__stars { display: flex; gap: 4px; }
.testimonials__score span { color: rgba(255,255,255,.6); font-size: .85rem; margin-bottom: 10px; }
.testimonial-card {
	background: #fff; border-radius: var(--radius-md); padding: 30px;
	box-shadow: var(--shadow-lg);
}
.testimonials__live-reviews {
	position: relative;
	background: #fff; border-radius: var(--radius-md); padding: 20px;
	box-shadow: var(--shadow-lg); overflow: hidden; display: flex; align-items: center;
	margin-bottom: 40px;
}
.testimonials__live-reviews > div { width: 100%; }
.testimonial-card__quote { margin-bottom: 12px; color: var(--orange-500); font-size: 32px; }
.testimonial-card__text { font-size: 1.15rem; font-weight: 500; color: var(--gray-900); line-height: 1.6; margin-bottom: 16px; }
.testimonial-card__stars { display: flex; gap: 3px; margin-bottom: 18px; }
.testimonial-card__stars .star-icon { font-size: 16px; }
.testimonial-card footer { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
	width: 42px; height: 42px; border-radius: 50%; background: var(--orange-500); color: #fff;
	display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-head);
	flex-shrink: 0;
}
.testimonial-card footer strong { display: block; font-size: .9rem; color: var(--navy-800); }
.testimonial-card footer span { font-size: .78rem; color: var(--gray-500); }

.testimonials__tags { position: relative; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.tag {
	background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
	color: rgba(255,255,255,.8); font-size: .8rem; font-weight: 600;
	padding: 8px 16px; border-radius: 999px;
}

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing { padding-block: 88px; background: var(--white); }
.pricing__card {
	max-width: 920px; margin: 0 auto;
	background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
	border-radius: var(--radius-lg);
	display: grid; grid-template-columns: 1fr;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}
.pricing__card-left { padding: 44px 36px; }
.pricing__card-left h3 { color: #fff; font-size: 1.4rem; margin-bottom: 12px; }
.pricing__card-left > p { color: rgba(255,255,255,.7); line-height: 1.6; margin-bottom: 22px; }
.pricing__card-left ul { display: flex; flex-direction: column; gap: 12px; }
.pricing__card-left li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.9); font-size: .9rem; font-weight: 500; }
.pricing__card-left .material-symbols-outlined { font-size: 18px; }
.pricing__card-right {
	background: rgba(255,255,255,.06);
	padding: 44px 36px;
	display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 16px;
	border-top: 1px solid rgba(255,255,255,.1);
}
.pricing__price { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--orange-500); }
.pricing__price span { font-size: 1rem; color: rgba(255,255,255,.6); font-weight: 500; }
.pricing__note { color: rgba(255,255,255,.55); font-size: .8rem; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact { padding-block: 88px; background: var(--gray-100); }
.contact__inner { display: grid; grid-template-columns: 1fr; gap: 40px; }
.contact__list { display: flex; flex-direction: column; gap: 22px; margin-top: 30px; }
.contact__list li { display: flex; gap: 16px; align-items: flex-start; }
.contact__icon {
	width: 44px; height: 44px; border-radius: 12px; background: var(--navy-800);
	display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact__list strong { display: block; font-size: .95rem; color: var(--navy-800); margin-bottom: 4px; }
.contact__list span, .contact__list a { color: var(--gray-500); font-size: .9rem; line-height: 1.5; }
.contact__list a:hover { color: var(--orange-600); }
.contact__map {
	border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
	min-height: 320px;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta {
	background: linear-gradient(120deg, var(--orange-600), var(--orange-500));
	padding-block: 60px;
}
.final-cta__inner { text-align: center; }
.final-cta h2 { color: #fff; font-size: clamp(1.5rem, 4vw, 2.1rem); margin-bottom: 10px; }
.final-cta p { color: rgba(255,255,255,.9); margin-bottom: 28px; font-size: 1rem; }
.final-cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.7); padding-top: 70px; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 40px; padding-bottom: 50px; }
.footer__col--brand { max-width: 420px; }
.footer__col h3 { color: #fff; font-size: .95rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: .5px; }
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a { font-size: .88rem; color: rgba(255,255,255,.6); }
.footer__col a:hover { color: var(--orange-500); }
.footer__about { font-size: .88rem; line-height: 1.7; margin: 18px 0 20px; color: rgba(255,255,255,.55); }
.footer__gst { font-size: .8rem; letter-spacing: .02em; margin: -12px 0 20px; color: rgba(255,255,255,.45); }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
	width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08);
	display: flex; align-items: center; justify-content: center; color: #fff;
}
.footer__social a:hover { background: var(--orange-500); color: #fff; }
.footer__social a .material-symbols-outlined { font-size: 18px; }
.footer__contact li { display: flex; align-items: flex-start; gap: 10px; }
.footer__contact .material-symbols-outlined { flex-shrink: 0; margin-top: 1px; color: var(--orange-500); font-size: 20px; }
.footer__contact li span { font-size: .88rem; line-height: 1.5; color: rgba(255,255,255,.6); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding-block: 22px; margin-top: 10px; }
.footer__bottom-inner { display: flex; flex-direction: column; gap: 6px; text-align: center; font-size: .8rem; color: rgba(255,255,255,.45); }

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.float-whatsapp {
	position: fixed; bottom: 22px; right: 22px; z-index: 90;
	width: 56px; height: 56px; border-radius: 50%;
	background: #25D366; color: #fff;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 10px 24px rgba(37,211,102,.45);
	animation: ct-pulse 2.4s ease-in-out infinite;
}
@keyframes ct-pulse {
	0%, 100% { box-shadow: 0 10px 24px rgba(37,211,102,.45); }
	50% { box-shadow: 0 10px 30px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.12); }
}

/* ==========================================================================
   Responsive — Mobile nav
   ========================================================================== */
@media (max-width: 899px) {
	.nav-toggle { display: flex; flex-shrink: 0; }
	.site-header .brand__text { display: none; }
	.site-header .brand__mark img { width: 55px; height: 55px; }

	/* Three-zone mobile header: Call button left, logo truly centered
	   (via grid, not flex space-between — stays centered regardless of
	   how wide the left/right zones end up), hamburger right. */
	.site-header__inner {
		display: grid;
		grid-template-columns: 1fr auto 1fr;
		align-items: center;
	}
	.brand { grid-column: 2; grid-row: 1; justify-self: center; }
	.site-header__cta { grid-column: 1; grid-row: 1; justify-self: start; }
	.nav-toggle { grid-column: 3; grid-row: 1; justify-self: end; }
	.main-nav { grid-column: 1; grid-row: 1; }
	.main-nav {
		position: fixed; inset: var(--header-h) 0 0 0;
		background: var(--navy-800);
		transform: translateX(100%);
		transition: transform .3s ease;
		overflow-y: auto;
		padding: 30px 0;
	}
	.main-nav.is-open { transform: translateX(0); }
	.main-nav > ul { flex-direction: column; align-items: center; gap: 6px; width: 100%; padding-inline: 24px; }
	.main-nav a { color: #fff; font-size: 1.1rem; padding: 14px 0; display: block; }
	.main-nav a::after { display: none; }
	.main-nav .has-dropdown { width: 100%; text-align: center; }
	.main-nav .nav-item-row { justify-content: center; width: 100%; }
	.main-nav .dropdown-toggle { color: #fff; width: 32px; height: 32px; }
	.main-nav .dropdown-toggle .material-symbols-outlined { font-size: 26px; }
	.main-nav .dropdown-menu {
		position: static; transform: none; opacity: 1; visibility: visible;
		display: none; grid-template-columns: 1fr; background: rgba(255,255,255,.06);
		box-shadow: none; min-width: 0; width: 100%; margin-bottom: 8px;
	}
	.main-nav .has-dropdown.is-open .dropdown-menu { display: grid; }
	.main-nav .has-dropdown.is-open .dropdown-toggle .material-symbols-outlined { transform: rotate(180deg); }
	.main-nav .dropdown-menu a { color: rgba(255,255,255,.8); font-size: .95rem; padding: 10px 12px; text-align: center; }
	.main-nav .dropdown-menu a:hover { background: rgba(255,255,255,.08); color: #fff; }
	.main-nav .dropdown-menu__all { border-top-color: rgba(255,255,255,.15); }
	.site-header__cta .btn--whatsapp span { display: none; }
	.site-header__cta { gap: 8px; flex-shrink: 0; }
	.site-header__cta .btn { padding: 10px 16px; font-size: .85rem; min-height: 42px; }
	.site-header__cta .btn--whatsapp { padding: 10px; min-height: 42px; min-width: 42px; }
	.site-header__inner { gap: 10px; }
}

/* Deliberate mobile vertical rhythm — a tighter, purpose-set scale rather
   than the desktop's 88px carried straight down. Keeps the page feeling
   like a considered mobile flow instead of a shrunk desktop layout. */
@media (max-width: 767px) {
	.hero { padding-block: 40px 48px; }
	.hero__title { margin-bottom: 14px; }
	.hero__subtitle { margin-bottom: 24px; }
	.hero__actions { margin-bottom: 28px; }
	.trust-strip { padding-block: 28px; }
	.services,
	.why-us,
	.about,
	.process,
	.testimonials,
	.pricing,
	.contact,
	.included,
	.faq,
	.related-services { padding-block: 56px; }
	.service-hero { padding-block: 40px 48px; }
	.final-cta { padding-block: 44px; }
	.section-head { margin-bottom: 32px; }
	.section-head h2 { margin-bottom: 8px; }
	.services__grid,
	.why-us__grid,
	.process__grid { gap: 16px; }

	/* Buttons: real touch targets (44px+), and primary CTA rows go
	   full-width/stacked instead of shrink-wrapping to their label —
	   the pattern people actually expect to tap on a phone. */
	.btn { min-height: 46px; }
	.btn--lg { min-height: 52px; padding-inline: 24px; }
	.hero__actions,
	.final-cta__actions,
	.service-hero .hero__actions {
		flex-direction: column;
		align-items: stretch;
	}
	.hero__actions .btn,
	.final-cta__actions .btn,
	.service-hero .hero__actions .btn {
		width: 100%;
		white-space: normal;
		text-align: center;
	}
}

@media (max-width: 520px) {
	.brand__tagline { display: none; }
	.site-header__cta .btn--whatsapp { display: none; }
	.container { padding-inline: 16px; }
}

@media (max-width: 400px) {
	.site-header__inner { gap: 8px; }
	.brand { gap: 6px; }
	.brand__title { font-size: .68rem; }
	.site-header__cta .btn--primary { padding: 8px 12px; font-size: .78rem; }
	.nav-toggle { width: 38px; height: 38px; }
	.nav-toggle__icon { font-size: 22px; }
}

/* ==========================================================================
   Responsive — breakpoints up
   ========================================================================== */
@media (min-width: 560px) {
	.services__grid { grid-template-columns: repeat(2, 1fr); }
	.why-us__grid { grid-template-columns: repeat(2, 1fr); }
	.process__grid { grid-template-columns: repeat(2, 1fr); }
	.trust-strip__inner { grid-template-columns: repeat(2, 1fr); }
	.final-cta__actions .btn { flex: 0 1 auto; }
	.footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 700px) {
	.topbar { display: block; }
	.testimonials__summary { grid-template-columns: 260px 1fr; align-items: stretch; }
	.pricing__card { grid-template-columns: 1.3fr 1fr; }
	.pricing__card-right { border-top: 0; border-left: 1px solid rgba(255,255,255,.1); }
}

@media (min-width: 900px) {
	.hero__inner { grid-template-columns: 1.05fr .95fr; }
	.hero__visual { display: block; }
	.trust-strip__inner { grid-template-columns: repeat(4, 1fr); }
	.trust-item { justify-content: flex-start; text-align: left; font-size: .85rem; gap: 10px; }
	.services__grid { grid-template-columns: repeat(4, 1fr); }
	.why-us__grid { grid-template-columns: repeat(4, 1fr); }
	.about__inner { grid-template-columns: .85fr 1.15fr; }
	.included__inner { grid-template-columns: 1.15fr .85fr; }
	.process__grid { grid-template-columns: repeat(4, 1fr); }
	.contact__inner { grid-template-columns: 1fr 1fr; }
	.footer__grid { grid-template-columns: 1.4fr .8fr 1fr 1.2fr; gap: 30px; }
	.footer__col--brand { max-width: none; }
}

