/* =============================================
	.about-hero h1/* =============================================
	WINNGUR - Main Stylesheet
	Author: Winngur Dev Team
============================================= */

/* ----- CSS Custom Properties (Design Tokens) ----- */
:root {
	--brand-primary: #1b67de;
	--brand-secondary: #f6800f;
	--brand-accent: #00b4d8;
	--brand-light: #e8f4fd;
	--brand-dark: #0d2444;
	--bg-black: #000000;
	--text-primary: #1a1a2e;
	--text-secondary: #4a5568;
	--text-muted: #718096;
	--text-white: #ffffff;
	--text-black: #000000;
	
	--bg-white: #ffffff;
	--bg-light: #f7f9fc;
	--bg-section: #eef3fa;
	
	--border-color: #e2e8f0;
	--border-radius: 12px;
	--border-radius-xs: 5px;
	--border-radius-sm: 8px;
	--border-radius-lg: 20px;
	
	--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
	--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.14);
	--shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.18);
	
	--header-height: 72px;
	--topbar-height: 44px;
	--transition: 0.25s ease;
	--font-sans: "Inter", system-ui, -apple-system, sans-serif;
	--font-display: "Poppins", "Inter", system-ui, sans-serif;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding: 5rem;
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--font-sans);
	color: var(--text-primary);
	background: var(--bg-white);
	line-height: 1.6;
	overflow-x: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
}

button {
	cursor: pointer;
	border: none;
	background: none;
	font: inherit;
}

input,
select,
textarea {
	font: inherit;
}

ul {
	list-style: none;
}

/* ----- Container ----- */
.container {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px;
}

section {
	padding: 60px 0;
}

/* ----- Section Header ----- */
.section-header {
	text-align: center;
	margin-bottom: 30px;
}

.section-header h2 {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 700;
	color: var(--text-black);
	margin-bottom: 0px;
}

.section-header p {
	font-size: 1.05rem;
	color: var(--text-secondary);
}

.section-header.light h2 {
	color: #fff;
}

.section-header.light p {
	color: rgba(255, 255, 255, 0.75);
}

/* =============================================
	BUTTONS
============================================= */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: var(--border-radius-sm);
	font-weight: 600;
	font-size: 0.95rem;
	transition: all var(--transition);
	white-space: nowrap;
}

.nav-blue-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 20px;
	border-radius: var(--border-radius-sm);
	font-weight: 600;
	font-size: 0.8rem;
	transition: all var(--transition);
	white-space: nowrap;
}

.btn::after {
	content: "";
	display: inline-block;
	width: 15px;
	height: 15px;
	flex-shrink: 0;
	background-color: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E") no-repeat center / contain;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E") no-repeat center / contain;
	transition: transform 0.3s ease-out;
}

.btn:hover::after {
	transform: translateX(4px);
}

/* Back buttons go left — no right arrow */
.btn-back::after {
	display: none;
}

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

.btn-primary:hover {
	background: var(--brand-secondary);
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(245, 166, 35, 0.35);
}

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

.btn-secondary:hover {
	background: var(--brand-primary);
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(27, 103, 222, 0.35);
}

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

.btn-outline:hover {
	background: var(--brand-primary);
	color: #fff;
}

.btn-outline-large {
	padding: 14px 40px;
	border: 2px solid var(--brand-primary);
	color: var(--brand-primary);
	border-radius: var(--border-radius);
	font-weight: 600;
	font-size: 1rem;
	transition: all var(--transition);
}

.btn-outline-large:hover {
	background: var(--brand-primary);
	color: #fff;
}

.btn-large {
	padding: 16px 40px;
	font-size: 1.05rem;
}

.full-width {
	width: 100%;
}

/* =============================================
	TOP BAR
============================================= */
.top-bar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1001;
	height: var(--topbar-height);
	background: var(--brand-secondary);
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.top-bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--topbar-height);
	gap: 16px;
}

/* Location side */
/* Language Popup — kept for plugin compatibility */
.lang-option {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 12px 16px;
	background: none;
	border: none;
	cursor: pointer;
	transition: background var(--transition);
	text-align: left;
	border-bottom: 1px solid var(--border-color);
}

.lang-option:last-child {
	border-bottom: none;
}

.lang-option:hover {
	background: var(--bg-light);
}

.lang-option.active {
	background: var(--brand-light);
}

.lang-flag {
	font-size: 1.2rem;
	flex-shrink: 0;
}

.lang-info {
	flex: 1;
}

.lang-info strong {
	display: block;
	font-size: 0.88rem;
	color: var(--text-primary);
}

.lang-info span {
	font-size: 0.75rem;
	color: var(--text-muted);
}

.lang-check {
	font-size: 0.85rem;
	color: var(--brand-primary);
	font-weight: 700;
	width: 16px;
	text-align: center;
	flex-shrink: 0;
}

/* =============================================
	HEADER
============================================= */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--header-height);
	background: var(--bg-white);
	border-bottom: 1px solid transparent;
	transition: all var(--transition);
}

.site-header.scrolled {
	border-bottom-color: var(--border-color);
	box-shadow: var(--shadow-md);
}

.header-inner {
	display: flex;
	align-items: center;
	gap: 20px;
	height: var(--header-height);
}

.header-logo img,
.custom-logo-link .custom-logo {
	height: 50px;
	width: auto;
	object-fit: contain;
}
.custom-logo-link {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.location-btn {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: var(--border-radius-sm);
	border: 1px solid var(--border-color);
	color: var(--text-primary);
	font-weight: 500;
	font-size: 0.9rem;
	transition: all var(--transition);
	white-space: nowrap;
}

.location-btn:hover {
	border-color: var(--brand-primary);
	color: var(--brand-primary);
}

.location-btn .icon {
	width: 16px;
	height: 16px;
	color: var(--brand-secondary);
}

.location-btn .chevron {
	width: 14px;
	height: 14px;
}

.search-bar {
	flex: 1;
	position: relative;
	max-width: 420px;
}

.search-bar input {
	width: 100%;
	padding: 10px 16px 10px 40px;
	border: 1.5px solid var(--border-color);
	border-radius: 50px;
	font-size: 0.9rem;
	transition: all var(--transition);
	background: var(--bg-light);
	outline: none;
}

.search-bar input:focus {
	border-color: var(--brand-primary);
	background: #fff;
	box-shadow: 0 0 0 3px rgba(26, 60, 110, 0.1);
}

.search-icon {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	color: var(--text-muted);
	pointer-events: none;
}

.search-suggestions {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-lg);
	display: none;
	z-index: 100;
	overflow: hidden;
}

.search-suggestions.show {
	display: block;
}

.suggestion-item {
	padding: 10px 16px;
	cursor: pointer;
	transition: background var(--transition);
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.9rem;
}

.suggestion-item:hover {
	background: var(--bg-light);
}

.suggestion-item svg {
	width: 14px;
	height: 14px;
	color: var(--text-muted);
	flex-shrink: 0;
}

.header-nav {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-left: auto;
}

.header-nav .btn.btn-secondary {
	border-radius: var(--border-radius-xs);
}

/* Primary nav menu */
.header-nav-links {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.header-nav-links > li { position: relative; }
.header-nav-links > li > a {
	display: block;
	padding: 6px 12px;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-secondary);
	white-space: nowrap;
	transition: color var(--transition);
	border-radius: var(--border-radius-xs);
}
.header-nav-links > li > a:hover,
.header-nav-links > li.current-menu-item > a,
.header-nav-links > li.current-menu-ancestor > a {
	color: var(--brand-primary);
}
/* Dropdown sub-menu */
.header-nav-links .sub-menu {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	min-width: 180px;
	background: #fff;
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-md);
	list-style: none;
	margin: 0;
	padding: 6px 0;
	opacity: 0;
	pointer-events: none;
	transform: translateY(4px);
	transition: opacity .18s, transform .18s;
	z-index: 200;
}
.header-nav-links > li:hover > .sub-menu,
.header-nav-links > li:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}
.header-nav-links .sub-menu a {
	display: block;
	padding: 8px 16px;
	font-size: 0.875rem;
	color: var(--text-secondary);
	white-space: nowrap;
	transition: background .15s, color .15s;
}
.header-nav-links .sub-menu a:hover { background: var(--bg-section); color: var(--brand-primary); }

.nav-link {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-secondary);
	transition: color var(--transition);
	white-space: nowrap;
}

.nav-link:hover {
	color: var(--brand-primary);
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 6px;
	margin-left: auto;
}

.hamburger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--text-primary);
	border-radius: 2px;
	transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
	opacity: 0;
}

.hamburger.open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
}

.mobile-nav.open {
	opacity: 1;
	pointer-events: all;
}

.mobile-nav-inner {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 300px;
	background: var(--bg-white);
	padding: 24px;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	overflow-y: auto;
}

.mobile-nav.open .mobile-nav-inner {
	transform: translateX(0);
}

.mobile-nav-close {
	display: flex;
	margin-left: auto;
	margin-bottom: 24px;
	font-size: 1.2rem;
	color: var(--text-muted);
	margin-top: 24px;
}

.mobile-nav ul {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.mobile-nav a {
	display: block;
	padding: 12px 16px;
	border-radius: var(--border-radius-sm);
	font-weight: 500;
	transition: background var(--transition);
}

.mobile-nav a:hover {
	background: var(--bg-light);
	color: var(--brand-primary);
}

.mobile-nav-cta {
	background: var(--brand-primary) !important;
	color: #fff !important;
	font-weight: 600;
	text-align: center;
	margin-top: 8px;
	border-radius: var(--border-radius-sm);
}

.mobile-nav-cta:hover {
	opacity: 0.88;
	background: var(--brand-primary) !important;
	color: #fff !important;
}


/* =============================================
	HERO
============================================= */
.hero {
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: center;
	padding-top: calc(var(--header-height) + var(--topbar-height));
	overflow: hidden;
	/* Fallback shown while Vanta loads; Vanta canvas covers this once ready */
	background: var(--brand-dark);
}

/* Vanta canvas — always behind everything */
#hero canvas {
	position: absolute !important;
	inset: 0 !important;
	z-index: 0 !important;
	pointer-events: none !important;
}

.hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
}

/* Hero content above canvas and overlay */
#hero>.container {
	position: relative;
	z-index: 2;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-shapes .shape {
	position: absolute;
	border-radius: 50%;
	opacity: 0.06;
}

.shape-1 {
	width: 500px;
	height: 500px;
	background: var(--brand-accent);
	top: -100px;
	right: -100px;
}

.shape-2 {
	width: 300px;
	height: 300px;
	background: var(--brand-secondary);
	bottom: 100px;
	left: -80px;
}

.shape-3 {
	width: 200px;
	height: 200px;
	background: #fff;
	top: 40%;
	right: 20%;
}

.hero-content {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 60px;
	align-items: center;
	padding-top: 60px;
	padding-bottom: 0;
}

.hero-text h1 {
	max-width: 620px;
	font-family: var(--font-display);
	font-size: clamp(2rem, 4.5vw, 3.5rem);
	font-weight: 800;
	color: #fff;
	line-height: 1.15;
	margin-bottom: 20px;
}

.hero-text h1 .highlight {
	color: var(--brand-secondary);
}

.hero-sub {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 36px;
	max-width: 520px;
	line-height: 1.6;
}

.hero-search {
	display: flex;
	gap: 12px;
	margin-bottom: 24px;
	max-width: 560px;
}

.hero-search-input {
	flex: 1;
	position: relative;
}

.hero-search-input svg {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	color: var(--text-muted);
}

.hero-search-input input {
	width: 100%;
	padding: 14px 16px 14px 44px;
	border-radius: var(--border-radius-sm);
	border: 2px solid transparent;
	font-size: 0.95rem;
	outline: none;
	transition: border-color var(--transition);
}

.hero-search-input input:focus {
	border-color: var(--brand-secondary);
}

.hero-search .btn-primary {
	padding: 14px 28px;
	border-radius: var(--border-radius-sm);
}

.hero-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.tag-label {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.85rem;
}

.tag {
	padding: 6px 14px;
	border-radius: 50px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.82rem;
	font-weight: 500;
	transition: all var(--transition);
}

.tag:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.6);
}

.hero-images {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	max-width: 500px;
	/* control overall size like stats */
	padding-top: 50px;
}

.hero-images.about-img-bnr {
	padding-top: 20px;
}

.hero-images.about-img-bnr img {
	border-radius: var(--border-radius-lg);
}

.img-box {
	flex: 1 1 calc(50% - 10px);
	/* 2 per row */
	aspect-ratio: 1 / 1;
	/* perfect square */
	border-radius: 12px;
	overflow: hidden;
	background: #f5f5f5;
	display: flex;
	align-items: center;
	justify-content: center;
}

.img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* each side */
.img-col {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

/* LEFT */
.left-col .img-box {
	transform: translateY(-50px);
	/* ✅ initial state */
	animation: floatLeft 4s ease-in-out infinite;
	will-change: transform;
}

/* RIGHT */
.right-col .img-box {
	transform: translateY(0);
	/* ✅ initial state */
	animation: floatRight 4s ease-in-out infinite;
	will-change: transform;
}

.left-col .img-box:nth-child(1) {
	animation-delay: 0s;
}

.left-col .img-box:nth-child(2) {
	animation-delay: 0.5s;
}

.right-col .img-box:nth-child(1) {
	animation-delay: 1.2s;
}

.right-col .img-box:nth-child(2) {
	animation-delay: 1.7s;
}

@keyframes floatLeft {
	0% {
		transform: translateY(-50px);
	}
	
	50% {
		transform: translateY(-60px);
	}
	
	/* reduced movement */
	100% {
		transform: translateY(-50px);
	}
}

@keyframes floatRight {
	0% {
		transform: translateY(0);
	}
	
	50% {
		transform: translateY(-10px);
	}
	
	/* reduced movement */
	100% {
		transform: translateY(0);
	}
}

/* =============================================
	TRUST BAR
============================================= */
.trust-bar {
	background: var(--brand-primary);
	padding: 0;
	border-bottom: 1px solid var(--border-color);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.trust-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	flex-wrap: wrap;
	gap: 16px;
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--text-white);
}

.trust-item svg {
	width: 20px;
	height: 20px;
	color: var(--brand-light);
	flex-shrink: 0;
}

/* =============================================
	SERVICES
============================================= */
.services {
	background: var(--bg-light);
}

.category-tabs {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 40px;
}

.cat-tab {
	padding: 8px 20px;
	border-radius: 50px;
	border: 1.5px solid var(--border-color);
	color: var(--text-secondary);
	font-size: 0.9rem;
	font-weight: 500;
	transition: all var(--transition);
	background: #fff;
}

.cat-tab:hover {
	border-color: var(--brand-primary);
	color: var(--brand-primary);
}

.cat-tab.active {
	background: var(--brand-primary);
	border-color: var(--brand-primary);
	color: #fff;
}

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

.service-card {
	background: #fff;
	border-radius: var(--border-radius);
	overflow: hidden;
	transition: all var(--transition);
	display: flex;
	flex-direction: column;
}

.service-card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-4px);
}

.service-card.hidden {
	display: none;
}

.service-card-img {
	position: relative;
	overflow: hidden;
	height: 200px;
}

.service-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.service-card:hover .service-card-img img {
	transform: scale(1.05);
}

.service-card-img-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #0b1f3a 0%, #1a3a6b 100%);
	color: rgba(255,255,255,.35);
	font-size: 2.4rem;
	font-weight: 800;
	letter-spacing: .05em;
}

.card-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 4px 10px;
	border-radius: 50px;
	font-size: 0.75rem;
	font-weight: 700;
	background: var(--brand-secondary);
	color: var(--brand-dark);
}

.new-badge {
	background: #10b981;
	color: #fff;
}

.service-card-body {
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.service-card-body h3 {
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--text-black);
}

.service-card-body h2 {
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--text-black);
}

.service-card-body p {
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.6;
	flex: 1;
}

.service-card .card-btn {
	display: block;
	width: max-content;
	padding: 8px 16px;
	font-size: 12px;
}

.service-card-body button.btn.btn-primary.card-btn {
	background: var(--brand-primary);
	display: flex;
	margin-top: 20px;
}

.svc-card-btn {
	position: relative;
	font-size: 12px;
	padding-right: 25px !important;
}

#mini-section-padding {
	padding-top: 0px;
}

.svc-card-btn::after {
	content: "";
	display: inline-block;
	position: absolute;
	width: 15px;
	height: 15px;
	right: 5px;
	flex-shrink: 0;
	background-color: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E") no-repeat center / contain;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E") no-repeat center / contain;
	transition: transform 0.3s ease-out;
}

.svc-card-btn:hover {
	background: var(--brand-primary);
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(27, 103, 222, 0.35);
}

.svc-card-btn:hover::after {
	transform: translateX(4px);
}

.service-card a.card-btn {
	display: flex;
	margin-top: 20px;
}

.card-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 16px;
	margin-bottom: 16px;
}

.card-meta .price {
	display: none;
}

.rating {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--brand-secondary);
}

.price {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--brand-primary);
}

.card-btn {
	width: 100%;
	margin-top: auto;
}

.services-footer {
	text-align: center;
	margin-top: 48px;
}

/* =============================================
	HOW IT WORKS
============================================= */
.how-it-works {
	background: var(--bg-white);
}

.steps-grid {
	display: flex;
	align-items: flex-start;
	gap: 0;
	justify-content: center;
}

.step-card {
	flex: 1;
	max-width: 300px;
	text-align: center;
	padding: 40px 24px;
	border-radius: var(--border-radius);
	background: var(--bg-light);
	transition: all var(--transition);
	position: relative;
	min-height: 333px;
}

.step-card:hover {
	background: var(--brand-light);
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.step-number {
	font-family: var(--font-display);
	font-size: 3.5rem;
	font-weight: 800;
	color: rgba(26, 60, 110, 0.08);
	position: absolute;
	top: 16px;
	left: 50%;
	transform: translateX(-50%);
	line-height: 1;
}

.step-icon {
	width: 64px;
	height: 64px;
	background: var(--brand-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	position: relative;
	z-index: 1;
}

.step-icon svg {
	width: 28px;
	height: 28px;
	color: #fff;
}

.step-card h3 {
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--text-primary);
}

.step-card p {
	font-size: 0.9rem;
	color: var(--text-secondary);
	line-height: 1.7;
}

.step-connector {
	font-size: 2rem;
	color: var(--brand-secondary);
	padding: 0 8px;
	align-self: center;
	font-weight: 700;
	flex-shrink: 0;
}

/* =============================================
	PROFESSIONALS
============================================= */
.professionals {
	background: var(--bg-section);
}

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

.pro-card {
	background: #fff;
	border-radius: var(--border-radius);
	padding: 28px 20px;
	text-align: center;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-color);
	transition: all var(--transition);
}

.pro-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-3px);
}

.pro-avatar {
	position: relative;
	width: 96px;
	height: 96px;
	margin: 0 auto 16px;
}

.pro-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
	border: 3px solid var(--brand-light);
}

.pro-badge {
	position: absolute;
	bottom: -4px;
	right: -4px;
	background: var(--brand-secondary);
	color: var(--brand-dark);
	font-size: 0.7rem;
	font-weight: 700;
	padding: 3px 7px;
	border-radius: 50px;
	border: 2px solid #fff;
}

.pro-info h4 {
	font-weight: 700;
	font-size: 1.05rem;
	margin-bottom: 4px;
}

.pro-role {
	display: block;
	font-size: 0.82rem;
	color: var(--brand-primary);
	font-weight: 500;
	margin-bottom: 6px;
}

.pro-jobs {
	font-size: 0.8rem;
	color: var(--text-muted);
	margin-bottom: 12px;
}

.pro-tags {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	justify-content: center;
}

.pro-tags span {
	background: var(--bg-light);
	padding: 3px 10px;
	border-radius: 50px;
	font-size: 0.75rem;
	color: var(--text-secondary);
	border: 1px solid var(--border-color);
}

/* =============================================
	TESTIMONIALS
============================================= */
.testimonials {
	background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-primary) 100%);
}

.testimonials .container {
	position: relative;
}

.testimonials-slider {
	position: relative;
	overflow: hidden;
	padding-left: 4px;
}

.testimonials-track {
	display: flex;
	gap: 24px;
	transition: transform 0.85s cubic-bezier(0.45, 0.05, 0.35, 0.95);
	padding-left: 4px;
	/* so first card border isn't clipped */
	margin-left: -4px;
	/* cancel out any layout shift */
}

.testimonial-card {
	flex: 0 0 calc(40% - 16px);
	/* 2.5 cards */
	max-width: calc(40% - 16px);
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--border-radius-lg);
	padding: 32px;
	transition: transform var(--transition);
}

.testimonial-card:hover {
	background: rgba(255, 255, 255, 0.12);
}

.stars {
	font-size: 1.1rem;
	color: var(--brand-secondary);
	margin-bottom: 16px;
	letter-spacing: 2px;
}

.review-text {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.7;
	margin-bottom: 24px;
	font-style: italic;
}

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

.reviewer img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.3);
	object-fit: cover;
}

.reviewer strong {
	display: block;
	color: #fff;
	font-weight: 600;
	font-size: 0.9rem;
}

.reviewer span {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.6);
}

.slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	font-size: 1.3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--transition);
	z-index: 10;
	backdrop-filter: blur(4px);
}

.slider-btn:hover {
	background: rgba(255, 255, 255, 0.3);
}

.slider-btn.prev {
	left: -40px;
	top: 260px;
}

.slider-btn.next {
	right: -40px;
	top: 260px;
}

.slider-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 32px;
}

.slider-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	border: none;
	transition: all var(--transition);
	cursor: pointer;
}

.slider-dot.active {
	background: var(--brand-secondary);
	width: 24px;
	border-radius: 4px;
}

/* =============================================
	CITIES
============================================= */
.cities {
	background: var(--bg-white);
}

.cities-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 16px;
}

.city-card {
	border-radius: var(--border-radius);
	overflow: hidden;
	border: 2px solid transparent;
	background: var(--bg-light);
	transition: all var(--transition);
	cursor: pointer;
	text-align: center;
}

.city-card:hover,
.city-card.active {
	border-color: var(--brand-primary);
	box-shadow: var(--shadow-md);
}

.city-img {
	height: 120px;
	overflow: hidden;
	position: relative;
}

.city-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s;
}

.city-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	color: white;
	font-weight: 600;
	font-size: 0.85rem;
	text-align: center;
	padding: 10px;
	pointer-events: none;
}

.city-card:hover .city-overlay {
	opacity: 1;
}

.city-card:hover .city-img img {
	transform: scale(1.08);
}

.city-card span {
	display: block;
	padding: 10px;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--text-primary);
}

.city-card.active span {
	color: var(--brand-primary);
}

/* =============================================
	APP SECTION
============================================= */
.app-section {
	background: linear-gradient(135deg, var(--bg-section) 0%, var(--brand-light) 100%);
}

.app-inner {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 80px;
	align-items: center;
}

.app-content h2 {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 700;
	margin-bottom: 0px;
	color: var(--text-black);
}

.app-content>p {
	max-width: 508px;
	width: 100%;
	font-size: 1rem;
	color: var(--text-secondary);
	margin-bottom: 28px;
	line-height: 1.6;
}

.app-features {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 36px;
}

.app-features li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.95rem;
	color: var(--text-secondary);
}

.app-features li::before {
	content: "✓";
	width: 20px;
	height: 20px;
	background: var(--brand-primary);
	color: var(--brand-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.65rem;
	font-weight: 800;
	flex-shrink: 0;
}

.app-features svg {
	width: 18px;
	height: 18px;
	color: #10b981;
	flex-shrink: 0;
}

.app-buttons {
	display: flex;
	gap: 16px;
	margin-bottom: 28px;
	max-width: 468px;
}

.app-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1;
	/* both buttons equal width */
	padding: 14px 16px;
	background: var(--bg-black);
	color: #fff;
	border-radius: var(--border-radius-sm);
}

.app-btn:hover {
	background: var(--brand-primary);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.app-btn svg {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
}

.app-btn small {
	display: block;
	font-size: 0.7rem;
	opacity: 0.75;
}

.app-btn strong {
	display: block;
	font-size: 0.95rem;
}

.app-qr {
	display: flex;
	align-items: center;
	gap: 12px;
}

.qr-placeholder {
	width: 72px;
	height: 72px;
	padding: 6px;
	background: #fff;
	border-radius: 8px;
	border: 1px solid var(--border-color);
	color: var(--brand-primary);
}

/* Phone Mockup */
.phone-mockup {
	width: 280px;
	background: var(--brand-dark);
	border-radius: 36px;
	padding: 16px;
	box-shadow: var(--shadow-xl);
	position: relative;
}

.phone-mockup::before {
	content: "";
	position: absolute;
	top: 16px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 6px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 3px;
	z-index: 2;
}

.phone-screen {
	background: var(--bg-light);
	border-radius: 24px;
	overflow: hidden;
	min-height: 420px;
}

.phone-header {
	background: var(--brand-primary);
	padding: 28px 16px 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.phone-header img {
	height: 24px;
	filter: brightness(0) invert(1);
}

.phone-content {
	padding: 16px;
}

.phone-service-row {
	display: flex;
	gap: 12px;
	align-items: center;
	padding: 12px;
	background: #fff;
	border-radius: 10px;
	margin-bottom: 10px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.phone-service-icon {
	width: 40px;
	height: 40px;
	background: var(--brand-light);
	border-radius: 8px;
	flex-shrink: 0;
}

.phone-service-icon.accent {
	background: #fff3d6;
}

.phone-service-icon.green {
	background: #d1fae5;
}

.phone-service-text {
	flex: 1;
}

.phone-bar {
	height: 8px;
	background: var(--border-color);
	border-radius: 4px;
	margin-bottom: 6px;
}

.w-30 {
	width: 30%;
}

.w-40 {
	width: 40%;
}

.w-50 {
	width: 50%;
}

.w-60 {
	width: 60%;
}

.w-70 {
	width: 70%;
}

.w-80 {
	width: 80%;
}

.phone-cta {
	background: var(--brand-secondary);
	color: var(--brand-dark);
	border-radius: 8px;
	padding: 10px;
	text-align: center;
	font-size: 0.8rem;
	font-weight: 700;
	margin: 12px 0;
}

.phone-map {
	height: 80px;
	background: linear-gradient(135deg, #e2e8f0, #c3d4e8);
	border-radius: 10px;
}

/* =============================================
	JOIN AS PRO
============================================= */
.join-pros {
	background: var(--bg-white);
}

.join-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.join-text h2 {
	color: var(--text-black);
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 6px;
}

.join-text>p {
	color: var(--text-secondary);
	margin-bottom: 24px;
	line-height: 1.6;
}

.join-text .btn-primary {
	background: var(--brand-primary);
	color: var(--brand-light);
}

.join-benefits {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 36px;
}

.join-benefits li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.95rem;
	color: var(--text-secondary);
}

.join-benefits li::before {
	content: "✓";
	width: 20px;
	height: 20px;
	background: var(--brand-primary);
	color: var(--brand-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.65rem;
	font-weight: 800;
	flex-shrink: 0;
}

.join-image {
	position: relative;
}

.join-image img {
	/* border-radius: var(--border-radius-lg); */
	width: 100%;
	object-fit: cover;
	/* max-height: 400px; */
	/* box-shadow: var(--shadow-xl); */
}

.join-stat-card {
	position: absolute;
	bottom: -20px;
	left: -20px;
	background: var(--bg-black);
	color: #fff;
	padding: 20px 24px;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-lg);
}

.join-stat-card strong {
	display: block;
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--brand-secondary);
	font-family: var(--font-display);
	margin-bottom: -6px;
}

.join-stat-card span {
	font-size: 0.8rem;
	opacity: 0.8;
}

/* =============================================
	NEWSLETTER
============================================= */
.newsletter {
	background: var(--brand-primary);
	padding: 30px 0;
}

.newsletter-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}

.newsletter-text h2 {
	font-family: var(--font-display);
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--text-white);
	margin-bottom: 0px;
}

.newsletter-text p {
	color: var(--text-white);
	max-width: 534px;
	line-height: 1.6;
}

.newsletter-form {
	display: flex;
	gap: 12px;
	flex: 1;
	min-width: 280px;
	max-width: 480px;
}

.newsletter-form input {
	flex: 1;
	padding: 13px 18px;
	border-radius: var(--border-radius-sm);
	border: 2px solid transparent;
	font-size: 0.95rem;
	outline: none;
}

.newsletter-form input:focus {
	border-color: var(--brand-dark);
}

.newsletter-form .btn-primary {
	background: var(--brand-secondary);
	color: #fff;
}

.newsletter-form .btn-primary:hover {
	background: var(--brand-primary);
}

.newsletter-success {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #000000;
	font-size: 1rem;
	font-weight: 500;
	animation: fadeInUp 0.4s ease;
}

.newsletter-success svg {
	flex-shrink: 0;
	color: #000000;
}

/* =============================================
	FOOTER
============================================= */
.site-footer {
	background: var(--bg-black);
	padding-top: 80px;
	padding-bottom: 0;
}

.footer-inner {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 80px;
	padding-bottom: 60px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .footer-logo img {
	height: 50px;
	margin-bottom: 16px;
}

.footer-brand>p {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.7;
	margin-bottom: 24px;
}

.social-links {
	display: flex;
	gap: 12px;
}

.social-links a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--transition);
}

.social-links a:hover {
	background: var(--brand-secondary);
}

.social-links svg {
	width: 16px;
	height: 16px;
	color: #fff;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.footer-col h4 {
	font-weight: 600;
	font-size: 0.88rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.45);
	margin-bottom: 20px;
}

.footer-col ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-col a {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.65);
	transition: color var(--transition);
}

.footer-col a:hover {
	color: var(--brand-secondary);
}

.footer-bottom {
	padding: 20px 0;
	background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.footer-bottom p {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.4);
}

.footer-badges {
	display: flex;
	gap: 12px;
}

.badge-cert {
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.08);
	padding: 4px 10px;
	border-radius: 4px;
}

/* =============================================
	MODALS
============================================= */
.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
}

.modal-overlay.open {
	opacity: 1;
	pointer-events: all;
}

.modal {
	background: #fff;
	border-radius: var(--border-radius-lg);
	width: 100%;
	max-width: 480px;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
	transform: translateY(20px);
	transition: transform 0.3s;
}

.modal-overlay.open .modal {
	transform: translateY(0);
}

.modal-sm {
	max-width: 380px;
}

.modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--bg-light);
	color: var(--text-muted);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
	transition: all var(--transition);
	z-index: 1;
}

.modal-close:hover {
	background: var(--border-color);
}

.modal-header {
	padding: 28px 28px 20px;
	border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.25rem;
	margin-bottom: 4px;
}

.modal-header p {
	font-size: 0.88rem;
	color: var(--text-muted);
}

.modal-body {
	padding: 24px 28px;
}

.modal-footer {
	padding: 16px 28px 24px;
	display: flex;
	gap: 12px;
	border-top: 1px solid var(--border-color);
}

.modal-footer .btn {
	flex: 1;
}

.step-indicator {
	display: flex;
	gap: 6px;
	margin-top: 12px;
}

.step-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--border-color);
	transition: all var(--transition);
}

.step-dot.active {
	background: var(--brand-primary);
	width: 20px;
	border-radius: 4px;
}

.step-dot.done {
	background: #10b981;
}

.modal-service-info {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px;
	background: var(--bg-light);
	border-radius: var(--border-radius);
	margin-bottom: 24px;
}

.modal-service-icon {
	font-size: 2rem;
}

.modal-service-info h4 {
	font-weight: 700;
	margin-bottom: 4px;
}

.modal-price {
	color: var(--brand-primary);
	font-weight: 600;
	font-size: 0.9rem;
}

.form-group {
	position: relative;
	margin-bottom: 18px;
}

.form-group label {
	display: flex;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-secondary);
	margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 11px 14px;
	border: 1.5px solid var(--border-color);
	border-radius: var(--border-radius-sm);
	font-size: 0.9rem;
	outline: none;
	transition: border-color var(--transition);
	color: var(--text-primary);
	background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--brand-primary);
	box-shadow: 0 0 0 3px rgba(26, 60, 110, 0.1);
}

.form-group textarea {
	resize: vertical;
}

.form-group .procity {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding-right: 40px;
	/* space for icon */
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23333' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 16px;
}

.form-group .proidtype {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding-right: 40px;
	/* space for icon */
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23333' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 16px;
}

.time-slots {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-bottom: 12px;
}

.time-slot {
	padding: 10px;
	border: 1.5px solid var(--border-color);
	border-radius: var(--border-radius-sm);
	font-size: 0.85rem;
	font-weight: 500;
	transition: all var(--transition);
	background: #fff;
	color: var(--text-primary);
}

.time-slot:hover {
	border-color: var(--brand-primary);
	color: var(--brand-primary);
}

.time-slot.selected {
	background: var(--brand-primary);
	color: #fff;
	border-color: var(--brand-primary);
}

.time-slot.booked {
	background: var(--bg-light);
	color: var(--text-muted);
	cursor: not-allowed;
	opacity: 0.6;
}

.slot-note {
	font-size: 0.78rem;
	color: var(--text-muted);
}

.booking-summary {
	background: var(--bg-light);
	border-radius: var(--border-radius);
	padding: 16px;
	margin-top: 8px;
}

.booking-summary h5 {
	font-weight: 700;
	font-size: 0.9rem;
	margin-bottom: 12px;
}

.summary-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.87rem;
	padding: 6px 0;
	border-bottom: 1px dashed var(--border-color);
}

.summary-row:last-child {
	border-bottom: none;
}

.summary-row span {
	color: var(--text-secondary);
}

.success-body {
	text-align: center;
	padding: 48px 28px;
}

.success-icon {
	width: 72px;
	height: 72px;
	background: #10b981;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: 700;
	margin: 0 auto 24px;
}

.success-body h3 {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 12px;
}

.success-body p {
	color: var(--text-secondary);
	margin-bottom: 12px;
}

.booking-id {
	font-size: 0.85rem;
}

.city-search input {
	width: 100%;
	padding: 10px 14px;
	border: 1.5px solid var(--border-color);
	border-radius: var(--border-radius-sm);
	margin-bottom: 16px;
	outline: none;
}

.city-search input:focus {
	border-color: var(--brand-primary);
}

.city-list {
	display: flex;
	flex-direction: column;
	gap: 4px;
	max-height: 280px;
	overflow-y: auto;
}

.city-list-item {
	padding: 10px 14px;
	border-radius: var(--border-radius-sm);
	cursor: pointer;
	transition: background var(--transition);
	font-size: 0.9rem;
}

.city-list-item:hover {
	background: var(--bg-light);
}

.city-list-item.active {
	color: var(--brand-primary);
	font-weight: 600;
	background: var(--brand-light);
}

.modal-step.hidden {
	display: none;
}

/* =============================================
	TOAST & SCROLL-TOP
============================================= */
.toast {
	position: fixed;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%) translateY(100px);
	background: var(--brand-dark);
	color: #fff;
	padding: 14px 24px;
	border-radius: var(--border-radius);
	font-size: 0.9rem;
	font-weight: 500;
	z-index: 3000;
	transition: transform 0.3s ease;
	pointer-events: none;
	box-shadow: var(--shadow-lg);
}

.toast.show {
	transform: translateX(-50%) translateY(0);
}

.scroll-top {
	position: fixed;
	bottom: 32px;
	right: 24px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--brand-primary);
	color: #fff;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-md);
	z-index: 1000;
	opacity: 0;
	transform: translateY(20px);
	transition: all var(--transition);
}

.scroll-top.visible {
	opacity: 1;
	transform: translateY(0);
}

.scroll-top:hover {
	background: var(--brand-dark);
	transform: translateY(-2px);
}

/* Salauni start css */
.readmore-section {
	margin: 50px auto;
	padding: 0 20px;
}

.content-card {
	background: #fff;
	border-radius: 16px;
	padding: 24px;
}

.content-card h3 {
	margin: 0 0 12px;
	color: #222;
}

.content-card p {
	margin: 0;
	line-height: 1.7;
	color: #666;
}

.hidden-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease;
}

.hidden-content.active {
	max-height: 1000px;
}

.read-btn {
	display: block;
	/* margin: 30px auto 0; */
	margin-left: 20px;
	border: none;
	border-radius: 5px;
	background: #1b67de;
	padding: 10px 20px;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: 0.3s;
}

.read-btn:hover {
	transform: translateY(-2px);
}

.readmore-section h2 {
	margin-bottom: 12px;
	/* text-align: center; */
}

.readmore-section p {
	margin-bottom: 5px;
	/* text-align: center; */
}

[data-svc-i18n] strong {
	font-weight: 700 !important;
}

#full-width-container {
	width: 100%;
	margin: 0;
	max-width: 100%;
	text-align: center;
}

#full-width-container p {
	max-width: 100%;
}

#best-wingur-container .careers-intro-inner {
	align-items: flex-start;
}

#best-wingur-container .read-btn {
	margin-top: 24px;
	margin-bottom: 20px;
	margin-left: 0px;
}

#best-wingur-container .content-card {
	padding: 24px 0px;
}

#second-cont-card {
	padding-top: 0px !important;
	padding-bottom: 0px !important;
}

#best-wingur-container .careers-intro-text h2 {
	font-size: 40px;
}

#best-wingur-container .hidden-content.active {
	max-height: 100%;
}

.section-header.reveal.cp-panel1.visible h3 {
	color: #000000;
	font-size: 40px;
}

a.nav-services-link.our-services-btn {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--brand-dark);
}

h2.services-heading {
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--text-black);
}

/* Salauni end css */


.main-services-sec .e-con-inner {
	padding: 60px 20px;
}



/* =============================================
	RESPONSIVE
============================================= */
@media (max-width: 1330px) {
	.slider-btn.prev {
		left: 6px;
		top: 260px;
	}
	
	.slider-btn.next {
		right: -2px;
		top: 260px;
	}
}

@media (max-width: 1024px) {
	.hero-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 30px;
	}
	
	.hero-text h1 {
		font-size: 2.5rem;
		max-width: 100%;
	}
	
	.hero-sub,
	.hero-search,
	.hero-tags {
		max-width: 100%;
	}
	
	.hero-tags,
	.hero-search {
		justify-content: center;
	}
	
	.hero-stats {
		grid-template-columns: repeat(4, 1fr);
		width: 100%;
	}
	
	.app-inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	
	.phone-mockup {
		margin: 0 auto;
	}
	
	.join-inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	
	.join-image {
		max-width: 480px;
		margin: 0 auto;
	}
	
	.footer-inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	
	.footer-links {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.steps-grid {
		gap: 24px;
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.step-connector {
		display: none;
	}
	
	.step-card {
		min-width: 240px;
	}
	
	.newsletter-text {
		flex: 0 0 calc(45% - 20px);
	}
	
	.newsletter-form {
		flex: 0 0 calc(55% - 20px);
	}
	
	.hero-images {
		margin: 0 auto;
	}
}

@media (max-width: 768px) {
	
	/* Top bar mobile: compact selects */
	.header-inner {
		gap: 25px;
	}
	
	.header-logo img {
		height: 42px;
	}
	
	.search-bar {
		display: none;
	}
	
	.header-nav {
		display: contents;
	}
	
	.header-nav .btn {
		display: none;
	}
	
	.header-nav-links {
		display: none;
	}

	.hamburger {
		display: flex;
		order: 3;
		margin-left: 0;
	}
	
	.hero {
		min-height: auto;
		padding-bottom: 60px;
	}
	
	.hero-text h1 {
		font-size: 2rem;
	}
	
	.hero-search {
		flex-direction: column;
	}
	
	.hero-stats {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.trust-inner {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.services-grid {
		grid-template-columns: 1fr 1fr;
	}
	
	.pros-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.testimonial-card {
		min-width: 100%;
	}
	
	.slider-btn {
		display: none;
	}
	
	.cities-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.app-content>p {
		max-width: 426px;
	}
	
	.app-buttons {
		flex-direction: column;
		max-width: 228px;
	}
	
	.newsletter-inner {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.newsletter-form {
		flex-direction: column;
		max-width: 100%;
		width: 100%;
	}
	
	.about-hero h1 {
		max-width: 100%;
	}
	
	.footer-links {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
	
	.footer-bottom-inner {
		flex-direction: column;
		text-align: center;
	}
	
	.modal {
		border-radius: var(--border-radius) var(--border-radius) 0 0;
	}
	
	.modal-overlay {
		align-items: flex-end;
		padding: 0;
	}
	
	.time-slots {
		grid-template-columns: repeat(2, 1fr);
	}
	
	a.nav-services-link.our-services-btn {
		display: none;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 16px;
	}
	
	/* Top bar: icon-only on very small screens */
	.header-inner {
		gap: 8px;
	}
	
	.header-logo img {
		height: 30px;
	}
	
	.hero-text h1 {
		font-size: 1.65rem;
	}
	
	.hero-stats {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.services-grid {
		grid-template-columns: 1fr;
	}
	
	.step-card {
		min-height: 100%;
	}
	
	.pros-grid {
		grid-template-columns: 1fr;
	}
	
	.footer-links {
		grid-template-columns: 1fr 1fr;
	}
	
	.join-stat-card {
		left: 0;
		bottom: -16px;
	}
	
	.stat-number {
		font-size: 1.4rem;
	}
}

@media (max-width: 360px) {
	.header-inner {
		gap: 6px;
	}
	
	.header-logo img {
		height: 32px;
	}
	
}

/* =============================================
	APPLY AS PRO MODAL
============================================= */
.modal-pro {
	max-width: 860px;
	display: flex;
	flex-direction: row;
	max-height: 92vh;
	overflow: hidden;
	border-radius: var(--border-radius-lg);
}

/* Sidebar rail */
.pro-modal-rail {
	width: 240px;
	flex-shrink: 0;
	background: linear-gradient(160deg, var(--brand-dark) 0%, var(--brand-primary) 100%);
	padding: 32px 20px;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.pro-modal-brand img {
	height: 28px;
	filter: brightness(0) invert(1);
}

.pro-steps-rail {
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}

.rail-step {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 12px;
	border-radius: var(--border-radius-sm);
	opacity: 0.45;
	transition: all 0.3s;
	cursor: default;
}

.rail-step.active {
	opacity: 1;
	background: rgba(255, 255, 255, 0.12);
}

.rail-step.done {
	opacity: 0.75;
}

.rail-icon {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background 0.3s;
}

.rail-step.active .rail-icon {
	background: var(--brand-secondary);
}

.rail-step.done .rail-icon {
	background: #10b981;
}

.rail-icon svg {
	width: 16px;
	height: 16px;
	color: #fff;
}

.rail-label strong {
	display: block;
	font-size: 0.82rem;
	color: #fff;
	font-weight: 600;
}

.rail-label span {
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.55);
}

.rail-tagline {
	display: none;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.4);
	font-style: italic;
	line-height: 1.5;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 16px;
}

/* Body / panels */
.pro-modal-body {
	flex: 1;
	overflow-y: auto;
	position: relative;
	background: #fff;
}

.pro-step-panel {
	display: none;
	flex-direction: column;
	min-height: 100%;
	padding: 36px 32px 24px;
}

.pro-step-panel.active {
	display: flex;
	animation: fadeInUp 0.35s ease;
}

.pro-step-badge {
	display: inline-block;
	background: var(--brand-light);
	color: var(--brand-primary);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 50px;
	margin-bottom: 10px;
}

.pro-panel-header {
	margin-bottom: 24px;
}

.pro-panel-header h3 {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 700;
	margin-bottom: 0px;
}

.pro-panel-header p {
	font-size: 0.88rem;
	color: var(--text-muted);
}

.pro-panel-form {
	flex: 1;
}

.pro-panel-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
	border-top: 1px solid var(--border-color);
	margin-top: 24px;
}

/* Two-column row */
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

#proStep3 .pro-panel-footer .btn::after {
	display: none;
}

.upload-note {
	font-size: 0.75rem;
	color: var(--text-muted);
	font-weight: 400;
}

/* Service checkbox grid */
.service-checkbox-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-bottom: 4px;
}

.svc-check {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 14px 10px;
	border: 1.5px solid var(--border-color);
	border-radius: var(--border-radius);
	cursor: pointer;
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--text-secondary);
	transition: all 0.2s;
	text-align: center;
	user-select: none;
}

.svc-check input {
	display: none;
}

.svc-check .svc-icon {
	font-size: 1.5rem;
}

.svc-check:hover {
	border-color: var(--brand-primary);
	color: var(--brand-primary);
	background: var(--brand-light);
}

.svc-check:has(input:checked) {
	border-color: var(--brand-primary);
	background: var(--brand-light);
	color: var(--brand-primary);
	box-shadow: 0 0 0 3px rgba(26, 60, 110, 0.08);
}

/* Range slider */
.range-wrap {
	padding: 4px 0;
}

.range-wrap input[type="range"] {
	width: 100%;
	accent-color: var(--brand-primary);
	height: 4px;
	cursor: pointer;
}

.range-labels {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 8px;
	font-size: 0.8rem;
	color: var(--text-muted);
}

.range-labels strong {
	font-size: 1rem;
	color: var(--brand-primary);
	font-weight: 700;
}

/* Checkbox row */
.checkbox-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.check-opt {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 14px;
	border: 1.5px solid var(--border-color);
	border-radius: var(--border-radius);
	font-size: 0.82rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s;
	user-select: none;
}

.check-opt input[type="checkbox"] {
	flex-shrink: 0;
	margin: 0;
	width: 1em;
	height: 1em;
	accent-color: var(--brand-primary);
	cursor: pointer;
}

.check-opt input {
	accent-color: var(--brand-primary);
}

.check-opt:has(input:checked) {
	border-color: var(--brand-primary);
	background: var(--brand-light);
	color: var(--brand-primary);
}

/* Radio group */
.radio-group {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.radio-opt {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 14px;
	border: 1.5px solid var(--border-color);
	border-radius: var(--border-radius);
	font-size: 0.82rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s;
	user-select: none;
}

.radio-opt input[type="radio"] {
	flex-shrink: 0;
	margin: 0;
	width: 1em;
	height: 1em;
	accent-color: var(--brand-primary);
	cursor: pointer;
}

.radio-opt input {
	accent-color: var(--brand-primary);
}

.radio-opt input:focus,
.check-opt input:focus {
	box-shadow: none;
}

.radio-opt:has(input:checked) {
	border-color: var(--brand-primary);
	background: var(--brand-light);
	color: var(--brand-primary);
}

/* Char count */
.char-count {
	font-size: 0.75rem;
	color: var(--text-muted);
	text-align: right;
	margin-top: 4px;
}

/* File upload */
.file-upload-area {
	border: 2px dashed var(--border-color);
	border-radius: var(--border-radius);
	padding: 28px;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s;
	background: var(--bg-light);
}

.file-upload-area:hover {
	border-color: var(--brand-primary);
	background: var(--brand-light);
}

.file-upload-area.has-file {
	border-color: #10b981;
	background: #f0fdf4;
}

.file-upload-area svg {
	width: 32px;
	height: 32px;
	color: var(--text-muted);
	margin: 0 auto 10px;
}

.file-upload-area p {
	font-size: 0.88rem;
	color: var(--text-secondary);
	margin-bottom: 4px;
}

.file-upload-area span {
	font-size: 0.78rem;
	color: var(--text-muted);
}

/* Consent block */
.consent-block {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 20px 0;
}

.consent-check {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px;
	border: 1.5px solid var(--border-color);
	border-radius: var(--border-radius);
	cursor: pointer;
	transition: border-color 0.2s;
	font-size: 0.85rem;
	line-height: 1.5;
	color: var(--text-secondary);
}

.consent-check input {
	margin-top: 2px;
	flex-shrink: 0;
	accent-color: var(--brand-primary);
}

.consent-check:has(input:checked) {
	border-color: #10b981;
	background: #f0fdf4;
}

.consent-check .link {
	color: var(--brand-primary);
	text-decoration: underline;
}

/* Earnings preview */
.earnings-preview {
	background: linear-gradient(135deg, var(--brand-dark), var(--brand-primary));
	border-radius: var(--border-radius);
	overflow: hidden;
	margin-top: 8px;
}

.ep-header {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	font-size: 0.82rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.75);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ep-header svg {
	width: 16px;
	height: 16px;
	color: var(--brand-secondary);
}

.ep-body {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.ep-stat {
	padding: 14px 16px;
	text-align: center;
}

.ep-stat span {
	display: block;
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 4px;
}

.ep-stat strong {
	display: block;
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
}

.ep-stat.highlight strong {
	color: var(--brand-secondary);
	font-size: 1.1rem;
}

/* Success panel */
.pro-success {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 48px 32px;
	gap: 16px;
}

.pro-success-anim {
	position: relative;
	width: 88px;
	height: 88px;
	margin-bottom: 8px;
}

.pro-success-ring {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 3px solid #10b981;
	animation: ringPop 0.6s ease forwards;
}

.pro-success-check {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.2rem;
	color: #10b981;
	animation: fadeInUp 0.4s 0.3s ease both;
}

@keyframes ringPop {
	0% {
		transform: scale(0.5);
		opacity: 0;
	}
	
	70% {
		transform: scale(1.1);
		opacity: 1;
	}
	
	100% {
		transform: scale(1);
	}
}

.pro-success h3 {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
}

.pro-success p {
	color: var(--text-secondary);
	max-width: 380px;
	font-size: 0.9rem;
	line-height: 1.7;
}

.pro-success-steps {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--bg-light);
	padding: 14px 20px;
	border-radius: var(--border-radius);
	flex-wrap: wrap;
	justify-content: center;
}

.pss-item {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--text-secondary);
}

.pss-num {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--brand-secondary);
	color: var(--brand-dark);
	font-size: 0.7rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pss-arrow {
	color: var(--text-muted);
	font-size: 0.9rem;
}

.pro-ref {
	font-size: 0.82rem;
	color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
	.modal-pro {
		flex-direction: column;
		max-width: 100%;
		border-radius: var(--border-radius) var(--border-radius) 0 0;
	}
	
	.pro-modal-rail {
		width: 100%;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 0;
		padding: 16px;
	}
	
	.pro-modal-brand {
		display: none;
	}
	
	.pro-steps-rail {
		flex-direction: row;
		gap: 4px;
		width: 100%;
	}
	
	.rail-step {
		flex: 1;
		flex-direction: column;
		padding: 8px 4px;
		gap: 4px;
		text-align: center;
	}
	
	.rail-label {
		display: none;
	}
	
	.rail-tagline {
		display: none;
	}
	
	.pro-step-panel {
		padding: 24px 20px 16px;
	}
	
	.service-checkbox-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.form-row {
		grid-template-columns: 1fr;
	}
	
	.ep-body {
		grid-template-columns: 1fr;
	}
}

/* =============================================
	REVEAL ANIMATIONS
============================================= */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition:
	opacity 0.6s ease,
	transform 0.6s ease;
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

/* =============================================
	ABOUT PAGE
============================================= */

/* ── Reveal variants ── */
.reveal-left {
	opacity: 0;
	transform: translateX(-40px);
	transition:
	opacity 0.65s ease,
	transform 0.65s ease;
}

.reveal-left.visible {
	opacity: 1;
	transform: none;
}

.reveal-right {
	opacity: 0;
	transform: translateX(40px);
	transition:
	opacity 0.65s ease,
	transform 0.65s ease;
}

.reveal-right.visible {
	opacity: 1;
	transform: none;
}

.reveal-delay-1 {
	transition-delay: 0.1s;
}

.reveal-delay-2 {
	transition-delay: 0.2s;
}

.reveal-delay-3 {
	transition-delay: 0.3s;
}

.reveal-delay-4 {
	transition-delay: 0.4s;
}

/* ── About Hero ── */
.about-hero {
	position: relative;
	min-height: 50vh;
	display: flex;
	align-items: center;
	padding-top: calc(var(--header-height) + 40px);
	
	background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-primary) 100%);
	overflow: hidden;
}

.about-hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3C/g%3E%3C/svg%3E");
}

.about-hero-content {
	position: relative;
	z-index: 1;
	max-width: 720px;
}

.about-hero .hero-content {
	padding-top: 0;
}

.about-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 6px 16px;
	border-radius: 100px;
	margin-bottom: 24px;
}

.about-hero h1 {
	max-width: 604px;
	font-family: var(--font-display);
	font-size: clamp(2rem, 5vw, 2.2rem);
	font-weight: 800;
	color: #fff;
	line-height: 1.18;
	margin-bottom: 12px;
}

.about-hero h1 .highlight {
	color: var(--brand-secondary);
}

.about-hero p {
	font-size: 1.15rem;
	color: rgba(255, 255, 255, 0.82);
	margin-bottom: 30px;
	max-width: 580px;
	line-height: 1.6;
}

.about-hero-stats {
	display: flex;
	gap: 40px;
	margin-top: 48px;
	padding-top: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	flex-wrap: wrap;
}

.about-hero-stat strong {
	display: block;
	font-size: 1.9rem;
	font-weight: 800;
	color: #fff;
	font-family: var(--font-display);
}

.about-hero-stat span {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.65);
	margin-top: 2px;
}

/* ── Section chrome ── */
.ab-section {
	padding: 60px 0;
}

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

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

.ab-section.bg-dark {
	background: var(--bg-black);
}

.ab-section-label {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--brand-primary);
	margin-bottom: 6px;
}

.ab-section-label.light {
	color: var(--brand-secondary);
}

.ab-section h2 {
	font-family: var(--font-display);
	font-size: clamp(1.7rem, 3.5vw, 2.5rem);
	font-weight: 800;
	color: var(--text-black);
	line-height: 1.25;
	margin-bottom: 2px;
}

.ab-section h2.light {
	color: #fff;
}

.ab-section p.lead {
	font-size: 1.05rem;
	color: var(--text-secondary);
	line-height: 1.75;
}

.ab-section p.lead.light {
	color: rgba(255, 255, 255, 0.75);
	max-width: 100%;
	line-height: 1.6;
}

/* ── Utility helpers (about page) ── */
.ab-section-header {
	text-align: center;
}

.ab-section-header-mb0 {
	text-align: center;
	margin-bottom: 0;
}

.ab-h2-center {
	margin: 0 auto 12px;
}

.ab-h2-center-lg {
	margin: 0 auto 16px;
}

.ab-h2-center-sm {
	margin: 0 auto;
}

.ab-lead-center {
	margin: 0 auto;
	text-align: center;
}

.ab-intro-p {
	color: var(--text-secondary);
	line-height: 1.75;
	margin-bottom: 20px;
}

.ab-intro-p-last {
	color: var(--text-secondary);
	line-height: 1.75;
	margin-bottom: 28px;
}

.ab-secondary-p {
	color: var(--text-secondary);
	line-height: 1.75;
	margin-top: 20px;
	font-size: 0.95rem;
}

.mv-quote {
	margin-top: 16px;
	color: var(--text-muted);
	font-size: 0.875rem;
	font-style: italic;
}

.ab-h2-no-mb {
	margin-bottom: 0;
}

.btn-outline-light {
	border-color: rgba(255, 255, 255, 0.4) !important;
	color: #fff !important;
}

.about-cta-btns--left {
	justify-content: flex-start;
}

.about-cta-btns--left .btn {
	padding: 10px 20px;
	font-size: 0.9rem;
}

.modal-mt {
	margin-top: 16px;
}

.form-group--mt {
	margin-top: 20px;
}

/* ── About Intro ── */
.about-intro-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: start;
}

.about-intro-image {
	position: relative;
}

.about-intro-image img {
	width: 100%;
	border-radius: var(--border-radius-lg);
	/* box-shadow: var(--shadow-xl); */
	object-fit: cover;
	aspect-ratio: 4/3;
}

.about-intro-badge-img {
	display: none !important;
	position: absolute;
	bottom: -20px;
	left: -20px;
	background: #fff;
	border-radius: var(--border-radius);
	padding: 16px 20px;
	box-shadow: var(--shadow-lg);
	display: flex;
	align-items: center;
	gap: 12px;
}

.about-intro-badge-img .badge-icon {
	width: 44px;
	height: 44px;
	background: var(--brand-light);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
}

.about-intro-badge-img strong {
	display: block;
	font-size: 1.1rem;
	color: var(--text-primary);
}

.about-intro-badge-img span {
	font-size: 0.78rem;
	color: var(--text-muted);
}

.about-intro-text h2 {
	margin-bottom: 10px;
}

.about-intro-text p {
	margin-bottom: 6px;
}

.about-intro-text .check-list {
	list-style: none;
	margin-top: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.check-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 0.95rem;
	color: var(--text-secondary);
}

.check-list li::before {
	content: "✓";
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	background: var(--brand-light);
	color: var(--brand-primary);
	font-size: 0.75rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin-top: 1px;
}

.read-more-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease;
}

.read-more-content.open {
	max-height: 500px;
	/* adjust if needed */
}

.read-more-btn {
	color: var(--brand-primary);
	font-weight: 600;
	cursor: pointer;
}

.read-more-btn.inline {
	display: block;
	align-items: center;
	gap: 6px;
	color: var(--brand-primary);
	font-weight: 600;
	cursor: pointer;
	background: none;
	border: none;
	font-size: inherit;
	vertical-align: middle;
	white-space: nowrap;
	/* prevent breaking */
}

.read-more-btn.inline.open {
	margin-top: 10px;
}

.read-more-btn .chev {
	width: 14px;
	height: 14px;
	stroke: currentColor;
	stroke-width: 2.5;
	fill: none;
	transition: transform 0.3s ease;
}

/* rotate when open */
.read-more-btn.open .chev {
	transform: rotate(180deg);
}

.lead {
	line-height: 1.7;
}

/* ── Mission & Vision ── */
.mv-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	margin-top: 56px;
}

.mv-card {
	background: #fff;
	border-radius: var(--border-radius-lg);
	padding: 44px 40px;
	border: 1px solid var(--border-color);
	box-shadow: var(--shadow-md);
	position: relative;
	overflow: hidden;
}

.mv-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
}

.mv-card.mission::before {
	background: var(--brand-primary);
}

.mv-card.vision::before {
	background: var(--brand-secondary);
}

.mv-icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	margin-bottom: 16px;
}

.mv-card.mission .mv-icon {
	background: var(--brand-light);
}

.mv-card.vision .mv-icon {
	background: #fff4e6;
}

.mv-card h3 {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--text-primary);
}

.mv-card p {
	color: var(--text-secondary);
	line-height: 1.7;
	font-size: 0.97rem;
}

/* ── What We Do ── */
.what-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 56px;
}

.what-card {
	background: #fff;
	border-radius: var(--border-radius);
	padding: 32px 28px;
	border: 1px solid var(--border-color);
	transition:
	transform 0.25s ease,
	box-shadow 0.25s ease;
}

.what-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.what-card-icon {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-bottom: 20px;
	background: var(--bg-section);
}

.what-card h4 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.05rem;
	margin-bottom: 10px;
	color: var(--text-primary);
}

.what-card p {
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.65;
}

/* ── How It Works (About) ── */
.about-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 56px;
	position: relative;
}

.about-steps::before {
	content: "";
	position: absolute;
	top: 32px;
	left: 10%;
	width: 80%;
	height: 2px;
	background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
	z-index: 0;
}

.about-step {
	text-align: center;
	position: relative;
	z-index: 1;
}

.about-step-num {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--brand-primary);
	color: #fff;
	font-size: 1.3rem;
	font-weight: 800;
	font-family: var(--font-display);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	box-shadow: 0 4px 16px rgba(27, 103, 222, 0.35);
	border: 4px solid #fff;
}

.about-step h4 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1rem;
	margin-bottom: 8px;
	color: var(--text-black);
}

.about-step p {
	font-size: 0.875rem;
	color: var(--text-muted);
	line-height: 1.6;
}

.about-step-icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: var(--brand-light);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 16px auto 20px;
	color: var(--brand-primary);
}

.about-step-icon svg {
	width: 26px;
	height: 26px;
}

/* ── Customers & Professionals ── */
.cp-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4px;
	margin-top: 48px;
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-xl);
}

.cp-panel {
	padding: 56px 48px;
}

.cp-panel.customers {
	background: var(--brand-primary);
}

.cp-panel.professionals {
	background: var(--bg-black);
}

.cp-panel h3 {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 12px;
}

.cp-sub {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.92rem;
	margin-bottom: 32px;
	line-height: 1.6;
}

.cp-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.cp-list li {
	display: flex;
	align-items: center;
	gap: 14px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.95rem;
}

.cp-list li .cp-dot {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 0.7rem;
}

.cp-cta {
	margin-top: 36px;
}

.cp-cta .btn-primary {
	color: var(--text-white);
}

/* ── Trust & Transparency ── */
.trust-intro {
	text-align: center;
	max-width: 890px;
	margin: 0 auto 56px;
}

.trust-intro h2 {
	margin-bottom: 10px;
}

.trust-boxes-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.trust-box {
	position: relative;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 36px 28px 32px;
	overflow: hidden;
	transition:
	transform 0.3s ease,
	background 0.3s ease;
}

.trust-box::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--box-accent, var(--brand-primary));
	border-radius: 20px 20px 0 0;
}

.trust-box:hover {
	transform: translateY(-6px);
	background: rgba(255, 255, 255, 0.09);
}

/* Color variants */
.trust-box--blue {
	--box-accent: #1b67de;
}

.trust-box--orange {
	--box-accent: #f6800f;
}

.trust-box--green {
	--box-accent: #0c9c6e;
}

.trust-box--purple {
	--box-accent: #8b5cf6;
}

.trust-box-icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: var(--box-accent, var(--brand-primary));
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.trust-box-icon svg {
	width: 26px;
	height: 26px;
	stroke: #fff;
	fill: none;
}

.trust-box h4 {
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 10px;
}

.trust-box p {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.65;
	margin: 0;
}

.trust-footer-note {
	text-align: center;
	margin-top: 48px;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.875rem;
	line-height: 1.75;
}

/* ── Community ── */
.community-inner {
	text-align: center;
	max-width: 1000px;
	margin: 0 auto;
}

.community-icon {
	width: 80px;
	height: 80px;
	background: var(--brand-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.2rem;
	margin: 0 auto 28px;
}

.community-inner h2 {
	text-align: center;
	margin-bottom: 10px;
}

.community-inner p.lead {
	margin: 0 auto;
	text-align: center;
}

.community-pillars {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-top: 40px;
	flex-wrap: wrap;
}

.community-pillar {
	background: #fff;
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	padding: 20px 24px;
	text-align: center;
	min-width: 140px;
	box-shadow: var(--shadow-sm);
}

.community-pillar .pillar-icon {
	font-size: 1.8rem;
	margin-bottom: 8px;
}

.community-pillar strong {
	display: block;
	font-size: 0.9rem;
	color: var(--text-primary);
	font-weight: 600;
}

/* ── Future Vision ── */
.future-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
}

.future-roadmap {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-top: 36px;
}

.roadmap-item {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	position: relative;
}

.roadmap-item:not(:last-child)::after {
	content: "";
	position: absolute;
	left: 18px;
	top: 40px;
	bottom: -12px;
	width: 2px;
	background: var(--border-color);
}

.roadmap-dot {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--brand-primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	font-weight: 700;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
	margin-top: 2px;
}

.roadmap-body {
	padding-bottom: 28px;
}

.roadmap-body h5 {
	font-weight: 700;
	font-size: 0.97rem;
	margin-bottom: 4px;
	color: var(--text-black);
}

.roadmap-body p {
	font-size: 0.875rem;
	color: var(--text-muted);
	line-height: 1.6;
}

.future-image {
	position: relative;
}

.future-image img {
	width: 100%;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow-xl);
	object-fit: cover;
}

.future-image-badge {
	position: absolute;
	bottom: 24px;
	left: -20px;
	background: var(--brand-primary);
	color: #fff;
	padding: 16px 20px;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-lg);
	text-align: center;
}

.future-image-badge strong {
	display: block;
	font-size: 1.4rem;
	font-weight: 800;
	font-family: var(--font-display);
}

.future-image-badge span {
	font-size: 0.75rem;
	opacity: 0.85;
}

/* ── Services Carousel (About) ── */
.ab-carousel-section {
	background: var(--bg-light);
}

.ab-carousel-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 32px;
	gap: 20px;
}

.ab-carousel-arrows {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

.ab-arrow {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 2px solid var(--border-color);
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
	color: var(--text-primary);
	font-size: 1.1rem;
}

.ab-arrow:hover {
	border-color: var(--brand-primary);
	background: var(--brand-primary);
	color: #fff;
}

.ab-carousel-viewport {
	overflow: hidden;
	position: relative;
}

.ab-carousel-track {
	display: flex;
	gap: 24px;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}

.ab-carousel-track .service-card {
	flex: 0 0 280px;
	width: 280px;
}

/* ── Final CTA ── */
.about-cta {
	background: linear-gradient(135deg, var(--brand-dark) 0%, #1a3a6e 100%);
	padding: 100px 0;
	text-align: center;
}

.about-cta h2 {
	font-family: var(--font-display);
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 800;
	color: #fff;
	margin-bottom: 16px;
}

.about-cta p {
	color: rgba(255, 255, 255, 0.72);
	font-size: 1.05rem;
	margin-bottom: 40px;
}

.about-cta-btns {
	display: flex;
	gap: 16px;
	justify-content: start;
	flex-wrap: wrap;
}

.about-cta-btns--center {
	justify-content: center;
}

/* ── About Responsive ── */

@media (max-width: 1024px) {
	.about-cta-btns {
		justify-content: center;
	}
	
	.about-hero-content {
		margin: 0 auto;
	}
}

@media (max-width: 900px) {
	
	.about-intro-grid,
	.future-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	
	.mv-grid,
	.cp-grid {
		grid-template-columns: 1fr;
	}
	
	.trust-boxes-grid {
		grid-template-columns: 1fr 1fr;
	}
	
	.what-grid {
		grid-template-columns: 1fr 1fr;
	}
	
	.about-steps {
		grid-template-columns: 1fr 1fr;
	}
	
	.about-steps::before {
		display: none;
	}
	
	.future-image-badge {
		left: 16px;
		bottom: 16px;
	}
	
	.cp-panel {
		padding: 40px 28px;
	}
}

@media (max-width: 600px) {
	.ab-section {
		padding: 64px 0;
	}
	
	.about-hero {
		padding-bottom: 56px;
	}
	
	.about-hero-stats {
		gap: 24px;
	}
	
	.trust-boxes-grid {
		grid-template-columns: 1fr;
	}
	
	.what-grid {
		grid-template-columns: 1fr;
	}
	
	.about-steps {
		grid-template-columns: 1fr 1fr;
	}
	
	.ab-carousel-track .service-card {
		flex: 0 0 240px;
		width: 240px;
	}
	
	.about-cta-btns {
		flex-direction: column;
		align-items: center;
	}
	
	.community-pillars {
		gap: 10px;
	}
}

/* =============================================
	LEGAL PAGES (Privacy Policy & Terms)
============================================= */

.legal-hero {
	background: linear-gradient(135deg, #0d1b3e 0%, #1b2d5a 60%, #1b67de20 100%);
	padding: 120px 0 60px;
	position: relative;
	overflow: hidden;
}

.legal-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(27, 103, 222, 0.12) 0%, transparent 70%);
	pointer-events: none;
}

.legal-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(27, 103, 222, 0.18);
	border: 1px solid rgba(27, 103, 222, 0.35);
	color: #7eb3ff;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 20px;
	margin-bottom: 20px;
}

.legal-hero h1 {
	font-size: clamp(1.9rem, 4vw, 2.8rem);
	font-weight: 800;
	color: #fff;
	line-height: 1.2;
	margin: 0 0 14px;
}

.legal-hero-meta {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 16px;
}

.legal-hero-meta span {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.6);
	display: flex;
	align-items: center;
	gap: 6px;
}

.legal-hero-meta span strong {
	color: rgba(255, 255, 255, 0.85);
	font-weight: 500;
}

.legal-breadcrumb {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 20px;
	display: none;
}

.legal-breadcrumb a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: color 0.2s;
}

.legal-breadcrumb a:hover {
	color: #7eb3ff;
}

.legal-breadcrumb svg {
	opacity: 0.5;
}

/* Layout */
.legal-page-section {
	padding: 64px 0 80px;
	background: var(--bg-body, #f9fafb);
}

.legal-layout {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 48px;
	align-items: start;
}

/* Sidebar TOC */
.legal-toc {
	position: sticky;
	top: 90px;
	background: #fff;
	border: 1px solid #e8edf5;
	border-radius: 14px;
	padding: 24px 0;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
	max-height: calc(100vh - 110px);
	overflow-y: auto;
}

.legal-toc-title {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #9aa5b8;
	padding: 0 20px 14px;
	border-bottom: 1px solid #f0f2f5;
	margin-bottom: 10px;
}

.legal-toc-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.legal-toc-list li a {
	display: block;
	padding: 8px 20px;
	font-size: 0.84rem;
	color: #546178;
	text-decoration: none;
	line-height: 1.4;
	border-left: 3px solid transparent;
	transition:
	color 0.2s,
	border-color 0.2s,
	background 0.2s;
}

.legal-toc-list li a:hover,
.legal-toc-list li a.active {
	color: var(--brand-primary);
	border-left-color: var(--brand-primary);
	background: rgba(27, 103, 222, 0.05);
}

/* Main content */
.legal-content {
	min-width: 0;
}

.legal-section {
	margin-bottom: 30px;
	scroll-margin-top: 90px;
}

.legal-section:last-child {
	margin-bottom: 0;
}

.legal-section-num {
	/* display: inline-block; */
	background: var(--brand-primary);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 700;
	padding: 2px 9px;
	border-radius: 20px;
	margin-bottom: 10px;
	letter-spacing: 0.05em;
	display: none;
}

.legal-section h2 {
	font-size: 1.35rem;
	font-weight: 700;
	color: #0d1b3e;
	line-height: 1.3;
}

.page-heading-my {
	margin: 0px 0px 10px;
}

.legal-section p {
	font-size: 0.95rem;
	color: #4a5568;
	line-height: 1.8;
	margin-bottom: 14px;
}

.legal-section p:last-child {
	margin-bottom: 0;
}

.legal-section ul,
.legal-section ol {
	padding-left: 20px;
	margin-bottom: 14px;
}

.legal-section ul li,
.legal-section ol li {
	font-size: 0.95rem;
	color: #4a5568;
	line-height: 1.8;
	margin-bottom: 6px;
}

.legal-section ul li {
	position: relative;
}

.legal-section ul li::before {
	content: ">";
	position: absolute;
	left: -24px;
	top: 5px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	color: var(--text-black);
}

.legal-section h3 {
	font-size: 1rem;
	font-weight: 600;
	color: #1a2540;
	margin: 22px 0 8px;
}

.legal-divider {
	border: none;
	border-top: 1px solid #e8edf5;
	margin: 0 0 30px;
}

.legal-highlight-box {
	background: rgba(27, 103, 222, 0.06);
	border-left: 4px solid var(--brand-primary);
	border-radius: 0 10px 10px 0;
	padding: 16px 20px;
	margin: 20px 0;
}

.legal-highlight-box p {
	margin: 0;
	color: #2d3f6e;
	font-size: 0.92rem;
}

.legal-contact-box {
	background: linear-gradient(135deg, #0d1b3e 0%, #1b2d5a 100%);
	border-radius: 16px;
	padding: 32px;
	margin-top: 40px;
}

.legal-contact-box h3 {
	color: #fff;
	font-size: 1.1rem;
	margin: 0 0 10px;
}

.legal-contact-box p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
	margin-bottom: 8px;
}

.legal-contact-box a {
	color: #7eb3ff;
	text-decoration: none;
}

.legal-contact-box a:hover {
	color: #fff;
	text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
	.legal-layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	
	.legal-toc {
		position: static;
		max-height: none;
	}
}

@media (max-width: 600px) {
	.legal-hero {
		padding: 120px 0 44px;
	}
	
	.legal-page-section {
		padding: 40px 0 56px;
	}
	
	.legal-section {
		margin-bottom: 36px;
	}
	
	.legal-contact-box {
		padding: 24px 20px;
	}
}

/* =============================================
	CAREERS / BECOME A SERVICE PROVIDER PAGES
	ver 1.0
============================================= */

/* --- Breadcrumb --- */
.careers-breadcrumb {
	background: var(--bg-light);
	border-bottom: 1px solid var(--border-color);
	padding: 12px 0;
}

.careers-breadcrumb-inner {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.85rem;
	color: var(--text-muted);
}

.careers-breadcrumb a {
	color: var(--brand-primary);
	font-weight: 500;
}

.careers-breadcrumb a:hover {
	text-decoration: underline;
}

.careers-breadcrumb svg {
	width: 12px;
	height: 12px;
	flex-shrink: 0;
}

/* --- Careers Hero (listing page) --- */
.careers-hero {
	background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-primary) 100%);
	padding: 120px 0 60px;
	color: white;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.careers-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	pointer-events: none;
}

.careers-hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
}

.careers-hero-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.15);
	color: white;
	padding: 6px 18px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 22px;
	backdrop-filter: blur(4px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.careers-hero h1 {
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 5vw, 2.2rem);
	font-weight: 800;
	margin-bottom: 20px;
	line-height: 1.12;
}

.careers-hero h1 span {
	color: var(--brand-secondary);
}

.careers-hero .careers-hero-content p {
	font-size: 1.15rem;
	opacity: 0.88;
	max-width: 600px;
	margin: 0 auto 20px;
	line-height: 1.6;
}

.careers-hero-btns {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

/* --- Careers Intro (listing page) --- */
.careers-intro {
	background: var(--bg-white);
}

.careers-intro-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.careers-intro-text .section-label {
	display: inline-block;
	color: var(--brand-primary);
	font-weight: 700;
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 14px;
}

.careers-intro-text h2 {
	font-family: var(--font-display);
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 18px;
	line-height: 1.25;
}

.careers-intro-text>p {
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.75;
	margin-bottom: 30px;
}

.careers-intro-benefits {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.careers-intro-benefit {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 16px;
	background: var(--bg-light);
	border-radius: var(--border-radius-sm);
	border-left: 3px solid var(--brand-primary);
}

.careers-intro-benefit .bi-icon {
	font-size: 1.3rem;
	flex-shrink: 0;
}

.careers-intro-benefit span {
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--text-primary);
}

.careers-intro-image {
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	height: 420px;
}

.careers-intro-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* --- Careers Services Grid (listing page) --- */
.careers-services {
	background: var(--bg-section);
}

.careers-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
	gap: 26px;
	margin-top: 44px;
}

.careers-card {
	background: var(--bg-white);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition), box-shadow var(--transition);
	text-decoration: none;
	color: inherit;
	display: block;
}

.careers-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.careers-card-img {
	width: 100%;
	height: 250px;
	overflow: hidden;
}

.careers-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.careers-card:hover .careers-card-img img {
	transform: scale(1.07);
}

.careers-card-body {
	padding: 22px;
}

.careers-card-body h3 {
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 6px;
}

.careers-card-body p {
	font-size: 0.85rem;
	color: var(--text-secondary);
	margin-bottom: 16px;
	line-height: 1.5;
}

.careers-card-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--brand-primary);
}

.careers-card-link svg {
	width: 14px;
	height: 14px;
	transition: transform 0.2s ease;
}

.careers-card:hover .careers-card-link svg {
	transform: translateX(4px);
}

/* =============================================
	SERVICE DETAIL PAGES
============================================= */

/* --- Service Hero --- */
.svc-hero {
	background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-primary) 100%);
	padding: 100px 0 80px;
	color: white;
	position: relative;
	overflow: hidden;
}

.svc-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	pointer-events: none;
}

.svc-hero-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.svc-hero-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.15);
	color: white;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 0.82rem;
	font-weight: 600;
	margin-bottom: 18px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.svc-hero h1 {
	font-family: var(--font-display);
	font-size: clamp(1.8rem, 4vw, 2.2rem);
	font-weight: 800;
	margin-bottom: 20px;
	line-height: 1.18;
}

.svc-hero-text>p {
	font-size: 1.05rem;
	opacity: 0.88;
	margin-bottom: 20px;
	line-height: 1.6;
}

.svc-hero-stats {
	display: none;
	gap: 28px;
	margin-top: 20px;
}

.svc-hero-stat strong {
	display: block;
	font-size: 1.7rem;
	font-weight: 800;
	color: var(--brand-secondary);
	line-height: 1;
	margin-bottom: 4px;
}

.svc-hero-stat span {
	font-size: 0.78rem;
	opacity: 0.8;
}

.svc-hero-image {
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	height: 420px;
	box-shadow: var(--shadow-xl);
}

.svc-hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* --- Intro --- */
.svc-intro {
	background: var(--bg-white);
}

.svc-intro-inner {
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
}

.svc-intro-inner p {
	font-size: 1.1rem;
	color: var(--text-secondary);
	line-height: 1.8;
}

/* --- Why Winngur --- */
.svc-why {
	background: var(--bg-section);
	padding: 60px 0;
}

.svc-why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 22px;
	margin-top: 44px;
}

.svc-why-card {
	background: var(--bg-white);
	border-radius: var(--border-radius);
	padding: 28px 22px;
	text-align: center;
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition), box-shadow var(--transition);
}

.svc-why-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.svc-why-icon {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--brand-light);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 14px;
	font-size: 1.5rem;
}

.svc-why-card h3 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 8px;
}

.svc-why-card p {
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* --- Tags (Job Types) --- */
.svc-types {
	background: var(--bg-white);
}

.svc-tags-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-top: 36px;
}

.svc-tag {
	background: var(--brand-light);
	color: var(--brand-primary);
	padding: 10px 22px;
	border-radius: 30px;
	font-size: 0.9rem;
	font-weight: 600;
	transition: background var(--transition), color var(--transition);
	cursor: default;
}

.svc-tag:hover {
	background: var(--brand-primary);
	color: white;
}

/* --- Eligibility / Skills (list style) --- */
.svc-eligibility {
	background: var(--bg-section);
}

.svc-skills {
	
	background: var(--bg-white);
}

.svc-list-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 14px;
	margin-top: 36px;
}

.svc-list-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 16px 18px;
	background: var(--bg-white);
	border-radius: var(--border-radius-sm);
	box-shadow: var(--shadow-sm);
}

.svc-eligibility .svc-list-item {
	background: var(--bg-white);
}

.svc-skills .svc-list-item {
	background: var(--bg-light);
	box-shadow: none;
}

.svc-list-check {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--brand-primary);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.7rem;
	flex-shrink: 0;
	margin-top: 1px;
	font-weight: 800;
}

.svc-list-item p {
	font-size: 0.9rem;
	color: var(--text-secondary);
	line-height: 1.5;
	margin: 0;
}

/* --- How It Works --- */
.svc-how {
	background: var(--brand-dark);
	color: white;
}

.svc-how .section-header h2 {
	color: white;
}

.svc-how .section-header p {
	color: rgba(255, 255, 255, 0.7);
}

.svc-how-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 30px;
	margin-top: 52px;
	position: relative;
}

.svc-how-step {
	text-align: center;
	position: relative;
}

.svc-step-num {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--brand-secondary);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	font-weight: 800;
	margin: 0 auto 16px;
	box-shadow: 0 4px 16px rgba(246, 128, 15, 0.4);
}

.svc-how-step h3 {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 8px;
	color: white;
}

.svc-how-step p {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.68);
	line-height: 1.6;
}

/* --- Benefits --- */
.svc-benefits {
	background: var(--bg-section);
}

.svc-benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 22px;
	margin-top: 44px;
}

.svc-benefit-card {
	background: var(--bg-white);
	border-radius: var(--border-radius);
	padding: 28px 22px;
	box-shadow: var(--shadow-sm);
	border-top: 3px solid var(--brand-primary);
	transition: transform var(--transition), box-shadow var(--transition);
}

.svc-benefit-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.svc-benefit-icon {
	font-size: 1.9rem;
	margin-bottom: 12px;
}

.svc-benefit-card h3 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 8px;
}

.svc-benefit-card p {
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* --- CTA Banner --- */
.svc-cta {
	background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-dark) 100%);
	text-align: center;
	color: white;
}

.svc-cta h2 {
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	font-weight: 700;
	margin-bottom: 10px;
}

.svc-cta p {
	font-size: 1.05rem;
	opacity: 0.85;
	margin-bottom: 28px;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}

.svc-cta .btn-primary {
	background: var(--brand-secondary);
}

.svc-cta .btn-primary:hover {
	background: var(--brand-secondary);
	opacity: 0.92;
}

/* --- FAQ --- */
.svc-faq {
	
	background: var(--bg-white);
}

.svc-faq-list {
	margin-top: 44px;
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
}

.svc-faq-item {
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius-sm);
	margin-bottom: 10px;
	overflow: hidden;
}

.svc-faq-q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 22px;
	background: var(--bg-white);
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--text-primary);
	text-align: left;
	gap: 12px;
	transition: background var(--transition);
	cursor: pointer;
}

.svc-faq-q:hover {
	background: var(--bg-light);
}

.svc-faq-q.open {
	background: var(--brand-light);
	color: var(--brand-primary);
}

.svc-faq-chevron {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	transition: transform var(--transition);
	color: var(--text-muted);
}

.svc-faq-q.open .svc-faq-chevron {
	transform: rotate(180deg);
	color: var(--brand-primary);
}

.svc-faq-a {
	display: none;
	padding: 4px 22px 18px;
	font-size: 0.9rem;
	color: var(--text-secondary);
	line-height: 1.75;
	background: var(--bg-white);
}

.svc-faq-a.open {
	display: block;
}

/* --- Apply Form (inline — pro modal style) --- */
.svc-form-section {
	background: var(--bg-section);
}

.svc-pro-form-inline {
	display: flex;
	flex-direction: row;
	max-width: 860px;
	margin: 0 auto;
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	box-shadow: 0 4px 40px rgba(0, 0, 0, 0.14);
}

.svc-pro-form-inline .pro-modal-body {
	overflow-y: visible;
	background: #fff;
}

@media (max-width: 768px) {
	.svc-pro-form-inline {
		flex-direction: column;
	}
}

.svc-form-wrapper {
	max-width: 700px;
	margin: 0 auto;
	background: var(--bg-white);
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow-lg);
	padding: 52px 48px;
}

.svc-form-header {
	text-align: center;
	margin-bottom: 38px;
}

.svc-form-header h2 {
	font-family: var(--font-display);
	font-size: 1.9rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 8px;
}

.svc-form-header p {
	color: var(--text-secondary);
	font-size: 0.95rem;
}

#svcApplyForm .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

#svcApplyForm .form-group {
	margin-bottom: 18px;
}

#svcApplyForm .form-group label {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 6px;
}

#svcApplyForm .form-group input,
#svcApplyForm .form-group select,
#svcApplyForm .form-group textarea {
	width: 100%;
	padding: 11px 14px;
	border: 1.5px solid var(--border-color);
	border-radius: var(--border-radius-sm);
	font-size: 0.9rem;
	color: var(--text-primary);
	background: var(--bg-white);
	transition: border-color var(--transition);
	outline: none;
	font-family: var(--font-sans);
}

#svcApplyForm .form-group input:focus,
#svcApplyForm .form-group select:focus,
#svcApplyForm .form-group textarea:focus {
	border-color: var(--brand-primary);
}

#svcApplyForm .form-group input[readonly] {
	background: var(--bg-light);
	cursor: default;
}

.svc-form-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 22px;
	font-size: 0.85rem;
	color: var(--text-secondary);
	line-height: 1.5;
}

.svc-form-consent input[type="checkbox"] {
	margin-top: 2px;
	flex-shrink: 0;
	accent-color: var(--brand-primary);
}

.svc-form-success {
	display: none;
	text-align: center;
	padding: 40px 20px;
}

.svc-form-success .svc-success-icon {
	width: 68px;
	height: 68px;
	background: #0c9c6e;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	margin: 0 auto 18px;
}

.svc-form-success h3 {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 8px;
}

.svc-form-success p {
	color: var(--text-secondary);
	font-size: 0.95rem;
}

/* --- SEO Footer Line --- */
.svc-seo-footer {
	padding: 18px 0;
	background: var(--bg-light);
	border-top: 1px solid var(--border-color);
}

.svc-seo-footer p {
	font-size: 0.82rem;
	color: var(--text-muted);
	text-align: center;
	max-width: 820px;
	margin: 0 auto;
	line-height: 1.7;
}

/* =============================================
	CAREERS / SERVICE PAGES — RESPONSIVE
============================================= */
@media (max-width: 900px) {
	.careers-intro-inner {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	
	.careers-intro-image {
		height: 280px;
		order: -1;
	}
	
	.svc-hero-inner {
		grid-template-columns: 1fr;
		gap: 36px;
		text-align: center;
	}
	
	.svc-hero-image {
		height: 260px;
		order: -1;
	}
	
	.svc-hero-stats {
		justify-content: center;
	}
}

@media (max-width: 640px) {
	.careers-hero {
		padding: 100px 0 40px;
	}
	
	.careers-intro-benefits {
		grid-template-columns: 1fr;
	}
	
	.svc-hero {
		padding: 80px 0 60px;
	}
	
	.svc-how-steps {
		grid-template-columns: 1fr 1fr;
	}
	
	.svc-form-wrapper {
		padding: 36px 22px;
	}
	
	#svcApplyForm .form-row {
		grid-template-columns: 1fr;
	}
	
	.svc-form-header h2 {
		font-size: 1.5rem;
	}
	
	section,
	.ab-section {
		padding: 40px 0;
	}
	
	.cp-grid {
		margin-top: 30px;
	}
}

/* =============================================
	CONTACT US PAGE
============================================= */

/* ─── Hero ─── */
.cu-hero {
	position: relative;
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #0b1628 0%, #112244 60%, #0e2a55 100%);
	overflow: hidden;
	text-align: center;
}

.cu-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
	radial-gradient(ellipse 60% 50% at 20% 50%, rgba(0, 102, 255, .18) 0%, transparent 70%),
	radial-gradient(ellipse 50% 60% at 80% 30%, rgba(0, 200, 150, .10) 0%, transparent 70%);
	pointer-events: none;
}

.cu-hero-badge {
	display: inline-block;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .2);
	color: rgba(255, 255, 255, .8);
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: 6px 16px;
	border-radius: 20px;
	margin-bottom: 20px;
}

.cu-hero h1 {
	font-family: "Poppins", sans-serif;
	font-size: clamp(2rem, 5vw, 3.2rem);
	font-weight: 800;
	color: #fff;
	margin: 0 0 16px;
	line-height: 1.15;
}

.cu-hero h1 .highlight {
	color: #4da6ff;
}

.cu-hero p {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, .75);
	max-width: 560px;
	margin: 0 auto;
	line-height: 1.7;
}

/* ─── Channel cards ─── */
.cu-channels {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 56px;
}

.cu-channel {
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 16px;
	padding: 32px 28px;
	text-align: center;
	transition: transform .25s, background .25s;
}

.cu-channel:hover {
	background: rgba(255, 255, 255, .08);
	transform: translateY(-4px);
}

.cu-channel-icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
	font-size: 1.6rem;
}

.cu-channel-icon.blue {
	background: rgba(77, 166, 255, .15);
}

.cu-channel-icon.green {
	background: rgba(0, 200, 120, .15);
}

.cu-channel-icon.purple {
	background: rgba(160, 100, 255, .15);
}

.cu-channel h4 {
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 6px;
}

.cu-channel p {
	font-size: .88rem;
	color: rgba(255, 255, 255, .55);
	margin: 0 0 14px;
	line-height: 1.5;
}

.cu-channel a {
	color: #4da6ff;
	font-size: .9rem;
	font-weight: 600;
	text-decoration: none;
}

.cu-channel a:hover {
	text-decoration: underline;
}

.cu-channel .cu-tag {
	display: inline-block;
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: 3px 10px;
	border-radius: 20px;
	margin-bottom: 10px;
}

.cu-tag.blue {
	background: rgba(77, 166, 255, .15);
	color: #4da6ff;
}

.cu-tag.green {
	background: rgba(0, 200, 120, .15);
	color: #00c878;
}

.cu-tag.purple {
	background: rgba(160, 100, 255, .15);
	color: #a064ff;
}

/* ─── Form section ─── */
.cu-form-wrap {
	max-width: 720px;
	margin: 0 auto;
	margin-top: 36px;
}

.cu-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.cu-form-grid .form-group--full {
	grid-column: 1 / -1;
}

.cu-form-submit {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 8px;
}

.cu-form-note {
	font-size: .82rem;
	color: rgba(255, 255, 255, .4);
}

.cu-success {
	display: none;
	background: rgba(0, 200, 120, .1);
	border: 1px solid rgba(0, 200, 120, .3);
	border-radius: 10px;
	padding: 18px 22px;
	color: #00c878;
	font-weight: 600;
	font-size: .95rem;
	margin-top: 20px;
}

/* ─── FAQ ─── */
.cu-faq-list {
	max-width: 760px;
	margin: 0 auto;
}

.cu-faq-item {
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	padding: 20px 0;
}

.cu-faq-item:last-child {
	border-bottom: none;
}

.cu-faq-q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	gap: 12px;
}

.cu-faq-q h5 {
	font-size: .98rem;
	font-weight: 600;
	color: #1a202c;
	margin: 0;
}

.cu-faq-chevron {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	color: rgba(0, 0, 0, .35);
	transition: transform .25s;
}

.cu-faq-item.open .cu-faq-chevron {
	transform: rotate(180deg);
}

.cu-faq-a {
	display: none;
	padding: 12px 0 0;
	font-size: .9rem;
	color: #4a5568;
	line-height: 1.7;
}

.cu-faq-item.open .cu-faq-a {
	display: block;
}

/* ─── Contact page responsive ─── */
@media (max-width: 768px) {
	.cu-channels {
		grid-template-columns: 1fr;
	}
	
	.cu-form-grid {
		grid-template-columns: 1fr;
	}
	
	.cu-form-grid .form-group--full {
		grid-column: 1;
	}
	
	.cu-hero {
		padding: 100px 0 60px;
	}
}

@media (max-width: 480px) {
	.cu-form-submit {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* =============================================
	SERVICE DETAIL PAGES — SHARED
============================================= */

/* ── Service Type Cards ── */
.svc-service-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 40px;
}

.svc-service-card {
	background: #fff;
	border-radius: 16px;
	padding: 28px 24px;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
	border: 1px solid #e8eaf0;
	transition: box-shadow 0.22s, transform 0.22s;
}

.svc-service-card:hover {
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
	transform: translateY(-3px);
}

.svc-service-icon {
	font-size: 2.25rem;
	margin-bottom: 14px;
}

.svc-service-card h3 {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 8px;
	color: #1a1a2e;
	line-height: 1.4;
}

.svc-service-card>p {
	font-size: 0.875rem;
	color: #666;
	margin-bottom: 12px;
	line-height: 1.6;
}

.svc-service-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.svc-service-card li {
	font-size: 0.85rem;
	color: #444;
	padding: 4px 0 4px 20px;
	position: relative;
	line-height: 1.5;
}

.svc-service-card li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #2563eb;
	font-weight: 700;
	font-size: 0.75rem;
	top: 5px;
}

/* ── Residential & Commercial ── */
.svc-rescom {
	padding: 80px 0;
	background: #f8f9fc;
}

.svc-rescom-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	margin-top: 40px;
}

.svc-rescom-col {
	background: #fff;
	border-radius: 16px;
	padding: 32px 28px;
	border: 1px solid #e8eaf0;
}

.svc-rescom-col h3 {
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 16px;
	color: #2563eb;
}

/* ── Solutions ── */
.svc-solutions {
	padding: 60px 0;
	background: #fff;
}

.svc-solutions-body {
	max-width: 860px;
	margin: 0 auto;
}

.svc-solutions-body p {
	font-size: 1rem;
	color: #444;
	line-height: 1.75;
	margin-bottom: 16px;
}

.btn-read-more {
	background: none;
	border: 2px solid #2563eb;
	color: #2563eb;
	padding: 9px 26px;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	margin-top: 8px;
	transition: background 0.2s, color 0.2s;
}

.btn-read-more:hover {
	background: #2563eb;
	color: #fff;
}

/* ── Areas ── */
.svc-areas {
	padding: 60px 0;
}

/* ── Certified ── */
.svc-certified {
	padding: 80px 0;
	background: #f8f9fc;
}

.svc-certified-body p {
	font-size: 1rem;
	color: #444;
	line-height: 1.75;
	margin-bottom: 0;
	max-width: 860px;
}

.svc-certified-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-top: 16px;
}

/* ── Service pages responsive ── */
@media (max-width: 900px) {
	.svc-service-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 680px) {
	.svc-rescom-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 580px) {
	.svc-service-cards {
		grid-template-columns: 1fr;
	}
	
	.svc-certified-list {
		grid-template-columns: 1fr;
	}
}