:root {
	--bg: #faf7f2;
	--ink: #1e2925;
	--amber: #f39200;
	--sage: #7c9a82;
	--grey: #8a8f8c;
	--line: #e4dfd6;
	--white: #ffffff;
	--maxw: 1180px;
}
* {
	font-family: "Space Grotesk", sans-serif !important;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Inter", sans-serif;
	color: var(--ink);
	background: var(--bg);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
	font-family: "Sora", sans-serif;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.01em;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	display: block;
}

.wrap {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 24px;
}

.eyebrow {
	font-family: "Sora", sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--amber);
	display: inline-block;
	margin-bottom: 14px;
}

/* ===== Header ===== */
header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(250, 247, 242, 0.92);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--line);
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 24px;
	max-width: var(--maxw);
	margin: 0 auto;
}

.nav img {
	height: 34px;
	width: auto;
}

.nav-links {
	display: flex;
	gap: 32px;
	align-items: center;
}

.nav-links a {
	font-family: "Sora", sans-serif;
	font-weight: 600;
	font-size: 0.92rem;
	color: var(--ink);
	transition: color 0.2s;
}

.nav-links a:hover {
	color: var(--amber);
}

.nav-cta {
	background: var(--ink);
	color: var(--bg) !important;
	padding: 10px 22px;
	border-radius: 999px;
	font-size: 0.85rem !important;
}

.nav-cta:hover {
	background: var(--amber);
	color: var(--ink) !important;
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
}

.menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--ink);
	margin: 5px 0;
}

/* ===== Hero ===== */
.hero {
	padding: 90px 0 70px;
	overflow: hidden;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 60px;
	align-items: center;
}

.hero h1 {
	font-size: clamp(2.4rem, 5vw, 3.6rem);
	margin-bottom: 22px;
}

.hero h1 em {
	font-style: normal;
	color: var(--amber);
	position: relative;
}

.hero p.lead {
	font-size: 1.08rem;
	color: #4b564f;
	max-width: 520px;
	margin-bottom: 32px;
}

.btn-row {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.btn {
	font-family: "Sora", sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	padding: 14px 28px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.2s ease;
}

.btn-primary {
	background: var(--amber);
	color: var(--ink);
}

.btn-primary:hover {
	background: #1e2925;
	color: var(--bg);
	transform: translateY(-2px);
}

.btn-outline {
	border: 1.5px solid var(--ink);
	color: var(--ink);
}

.btn-outline:hover {
	background: var(--ink);
	color: var(--bg);
	transform: translateY(-2px);
}

/* Signature: compliance dial graphic */
.dial-wrap {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.dial-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 24px;
	padding: 32px;
	width: 100%;
	max-width: 380px;
	box-shadow: 0 20px 50px -25px rgba(30, 41, 37, 0.25);
}

.dial-card .dial-label {
	font-family: "Sora", sans-serif;
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--grey);
	margin-bottom: 6px;
}

.dial-card .dial-sub {
	font-size: 0.85rem;
	color: var(--grey);
	margin-bottom: 18px;
}

.dial-stars {
	display: flex;
	gap: 6px;
	margin-top: 18px;
}

.dial-star {
	width: 22px;
	height: 22px;
}

.dial-foot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid var(--line);
	font-size: 0.85rem;
	color: var(--grey);
}

.dial-foot strong {
	color: var(--ink);
	font-family: "Sora", sans-serif;
}

/* ===== Trust strip ===== */
.trust {
	background: var(--ink);
	color: var(--bg);
	padding: 36px 0;
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	text-align: center;
}

.trust-grid .num {
	font-family: "Sora", sans-serif;
	font-weight: 800;
	font-size: 2rem;
	color: var(--amber);
}

.trust-grid .lbl {
	font-size: 0.85rem;
	color: #c8d2cc;
	margin-top: 4px;
}

/* ===== Services ===== */
.section {
	padding: 90px 0;
}

.section-head {
	max-width: 640px;
	margin-bottom: 54px;
}

.section-head h2 {
	font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.section-head p {
	color: #5c6660;
	margin-top: 14px;
	font-size: 1.02rem;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.service-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 30px;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}

.service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px -22px rgba(30, 41, 37, 0.28);
	border-color: var(--amber);
}

.service-icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: #fbefd9;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}

.service-icon svg {
	width: 24px;
	height: 24px;
	stroke: var(--amber);
}

.service-card h3 {
	font-size: 1.15rem;
	margin-bottom: 10px;
}

.service-card p {
	font-size: 0.92rem;
	color: #5c6660;
	margin-bottom: 16px;
}

.service-link {
	font-family: "Sora", sans-serif;
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--ink);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.service-link svg {
	width: 14px;
	height: 14px;
	transition: transform 0.2s;
}

.service-card:hover .service-link svg {
	transform: translateX(4px);
}

/* ===== About snippet ===== */
.about {
	background: var(--white);
}

.about-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 60px;
	align-items: center;
}

.about-visual {
	background: var(--ink);
	border-radius: 20px;
	padding: 36px;
	color: var(--bg);
	position: relative;
	overflow: hidden;
}

.about-visual h4 {
	font-size: 1.3rem;
	color: var(--amber);
	margin-bottom: 18px;
}

.about-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.about-list li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	font-size: 0.92rem;
	color: #d8e0da;
}

.about-list svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	margin-top: 2px;
	stroke: var(--sage);
}

.about-copy h2 {
	font-size: clamp(1.8rem, 3.5vw, 2.5rem);
	margin-bottom: 18px;
}

.about-copy p {
	color: #4b564f;
	margin-bottom: 16px;
}

/* ===== Process timeline ===== */
.timeline {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	padding-top: 10px;
}

.timeline-line {
	position: absolute;
	top: 28px;
	left: calc(12.5%);
	right: calc(12.5%);
	height: 2px;
	background: var(--line);
	z-index: 0;
}

.timeline-step {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 0 8px;
}

.timeline-marker {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--white);
	border: 2px solid var(--amber);
	color: var(--ink);
	font-family: "Sora", sans-serif;
	font-weight: 800;
	font-size: 1.1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	position: relative;
	transition:
		background 0.25s ease,
		color 0.25s ease,
		transform 0.25s ease;
}

.timeline-step:hover .timeline-marker {
	background: var(--amber);
	color: var(--ink);
	transform: scale(1.08);
}

.timeline-step h3 {
	font-size: 1.05rem;
	margin-bottom: 8px;
}

.timeline-step p {
	font-size: 0.9rem;
	color: #5c6660;
}

@media (max-width: 980px) {
	.timeline {
		grid-template-columns: repeat(2, 1fr);
		gap: 36px 24px;
	}

	.timeline-line {
		display: none;
	}
}

@media (max-width: 680px) {
	.timeline {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

/* ===== CTA ===== */
.cta {
	background: linear-gradient(135deg, #1e2925 0%, #2c3a33 100%);
	border-radius: 28px;
	color: var(--bg);
	padding: 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
}

.cta h2 {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	max-width: 520px;
	color: var(--bg);
}

.cta p {
	color: #c8d2cc;
	margin-top: 10px;
	max-width: 480px;
}

/* ===== Footer ===== */
footer {
	background: var(--ink);
	color: #c8d2cc;
	padding: 60px 0 30px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-grid img {
	height: 30px;
	margin-bottom: 14px;
	filter: brightness(0) invert(1) opacity(0.9);
}

.footer-grid p {
	font-size: 0.88rem;
	color: #9daaa3;
	max-width: 280px;
}

.footer-grid h4 {
	font-family: "Sora", sans-serif;
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--bg);
	margin-bottom: 16px;
}

.footer-grid ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-grid a {
	font-size: 0.9rem;
	color: #9daaa3;
	transition: color 0.2s;
}

.footer-grid a:hover {
	color: var(--amber);
}

.footer-bottom {
	border-top: 1px solid #36433d;
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 0.85rem;
	color: #7e8b85;
}

/* ===== Reveal animation ===== */
.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease;
}

.reveal.show {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}

	html {
		scroll-behavior: auto;
	}
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
	.hero-grid,
	.about-grid {
		grid-template-columns: 1fr;
	}

	.dial-wrap {
		order: -1;
		margin-bottom: 20px;
	}

	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.process-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.trust-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 680px) {
	.nav-links {
		position: absolute;
		top: 64px;
		left: 0;
		right: 0;
		background: var(--bg);
		flex-direction: column;
		padding: 20px 24px;
		border-bottom: 1px solid var(--line);
		display: none;
		gap: 18px;
	}

	.nav-links.open {
		display: flex;
	}

	.menu-toggle {
		display: block;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.process-grid {
		grid-template-columns: 1fr;
	}

	.cta {
		padding: 40px 24px;
		flex-direction: column;
		align-items: flex-start;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.section {
		padding: 60px 0;
	}

	.hero {
		padding: 50px 0 40px;
	}
}

/*css for about us page*/

/* ===== Mission & Vision ===== */
.mv-section {
	background: var(--white);
}
.mv-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}
.mv-card {
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 36px;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}
.mv-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px -22px rgba(30, 41, 37, 0.28);
	border-color: var(--amber);
}
.mv-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: #eaf1eb;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}
.mv-icon svg {
	width: 26px;
	height: 26px;
	stroke: var(--sage);
}
.mv-card h3 {
	font-size: 1.3rem;
	margin-bottom: 12px;
}
.mv-card p {
	color: #5c6660;
	font-size: 0.98rem;
}

/* ===== Founder ===== */
.founder-grid {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 60px;
	align-items: center;
}
.founder-photo {
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--line);
	aspect-ratio: 4/5;
}
.founder-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.founder-copy h2 {
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	font-style: italic;
	font-weight: 600;
	margin: 14px 0 18px;
	color: var(--ink);
}
.founder-copy p {
	color: #4b564f;
	margin-bottom: 14px;
}
.founder-name {
	font-family: "Sora", sans-serif;
	font-weight: 700;
	color: var(--amber) !important;
	margin-top: 8px;
}

/* ===== Values ===== */
.values-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.value-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 28px;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}
.value-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px -22px rgba(30, 41, 37, 0.28);
	border-color: var(--amber);
}
.value-card h3 {
	font-size: 1.05rem;
	margin-bottom: 8px;
}
.value-card p {
	font-size: 0.9rem;
	color: #5c6660;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
	.mv-grid {
		grid-template-columns: 1fr;
	}
	.founder-grid {
		grid-template-columns: 1fr;
	}
	.founder-photo {
		max-width: 340px;
		margin: 0 auto;
	}
	.values-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 680px) {
	.values-grid {
		grid-template-columns: 1fr;
	}
}

/*about us mission and vision*/

/* ===== Mission & Vision ===== */
.mv-section {
	background: var(--bg);
}
.mv-panel {
	background: var(--ink);
	border-radius: 24px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: stretch;
	overflow: hidden;
}
.mv-half {
	padding: 48px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.mv-half .eyebrow {
	margin-bottom: 10px;
}
.mv-half h3 {
	font-size: 1.5rem;
	color: var(--bg);
	margin-bottom: 14px;
}
.mv-half p {
	color: #c8d2cc;
	font-size: 0.98rem;
}
.mv-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}
.mv-icon svg {
	width: 26px;
	height: 26px;
	stroke: var(--amber);
}
.mv-panel .mv-half:last-child .mv-icon svg {
	stroke: var(--sage);
}
.mv-divider {
	width: 1px;
	background: rgba(255, 255, 255, 0.12);
	margin: 48px 0;
}

@media (max-width: 780px) {
	.mv-panel {
		grid-template-columns: 1fr;
	}
	.mv-divider {
		width: auto;
		height: 1px;
		margin: 0 48px;
	}
	.mv-half {
		padding: 40px 32px;
	}
}
.founder-name {
	font-family: "Sora", sans-serif;
	font-weight: 700;
	color: var(--amber) !important;
	margin-top: 8px;
	line-height: 1.5;
	font-size: 0.92rem;
}
/* ===== Marquee ===== */
.marquee-section {
	background: var(--ink);
	padding: 24px 0;
	overflow: hidden;
}
.marquee {
	width: 100%;
	overflow: hidden;
}
.marquee-track {
	display: inline-flex;
	white-space: nowrap;
	gap: 20px;
	align-items: center;
	animation: marquee-scroll 35s linear infinite;
	will-change: transform;
}
.marquee-track span {
	font-family: "Sora", sans-serif;
	font-weight: 700;
	font-size: 1.4rem;
	color: var(--bg);
	letter-spacing: 0.02em;
}
.marquee-track .dot {
	color: var(--amber);
	font-weight: 400;
}

@keyframes marquee-scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.marquee-track {
		animation: none;
	}
}
@media (max-width: 680px) {
	.marquee-track span {
		font-size: 1.1rem;
	}
}
.nav-dropdown-menu {
	position: absolute !important;
	top: calc(100% + 14px) !important;
	left: 50% !important;
	transform: translateX(-50%) translateY(8px) !important;
	background: var(--white) !important;
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 20px;
	min-width: 250px;
	display: flex !important;
	flex-direction: column !important;
	gap: 2px;
	box-shadow: 0 18px 40px -20px rgba(30, 41, 37, 0.25);
	opacity: 0 !important;
	visibility: hidden !important;
	transition:
		opacity 0.2s ease,
		transform 0.2s ease,
		visibility 0.2s ease;
	z-index: 60;
}
.nav-dropdown:hover .nav-dropdown-menu {
	opacity: 1 !important;
	visibility: visible !important;
	transform: translateX(-50%) translateY(0) !important;
}
.nav-dropdown {
	position: relative;
}

/*career page*/
/* ===== Career list ===== */
.career-list {
	border-top: 1px solid var(--line);
}
.career-row {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 40px;
	padding: 32px 0;
	border-bottom: 1px solid var(--line);
}
.career-row h3 {
	font-size: 1.2rem;
}
.career-row p {
	color: #5c6660;
	font-size: 0.98rem;
}

@media (max-width: 780px) {
	.career-row {
		grid-template-columns: 1fr;
		gap: 10px;
	}
}

/* ===== Career CTA ===== */
/* ===== Page title banner ===== */
.page-title {
	background: var(--ink);
	padding: 64px 0;
	position: relative;
	overflow: hidden;
}
.page-title::before {
	content: "";
	position: absolute;
	top: -80px;
	right: -80px;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: var(--amber);
	opacity: 0.08;
}
.page-title-inner {
	position: relative;
	z-index: 1;
}
.page-title-inner .eyebrow {
	color: var(--amber);
}
.page-title-inner h1 {
	font-size: clamp(2rem, 4vw, 2.8rem);
	color: var(--bg);
	margin-bottom: 14px;
}
.breadcrumb {
	list-style: none;
	display: flex;
	gap: 8px;
	align-items: center;
	font-family: "Sora", sans-serif;
	font-size: 0.85rem;
	font-weight: 500;
	color: #9daaa3;
}
.breadcrumb a {
	color: #c8d2cc;
	transition: color 0.2s ease;
}
.breadcrumb a:hover {
	color: var(--amber);
}
.breadcrumb li[aria-current="page"] {
	color: var(--amber);
}
/*contact*/
/* ===== Contact ===== */
.contact-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 60px;
	align-items: start;
}
.contact-info h2 {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	margin: 10px 0 16px;
}
.contact-info p {
	color: #5c6660;
	margin-bottom: 32px;
}
.contact-detail {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	margin-bottom: 24px;
}
.contact-icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: #fbefd9;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.contact-icon svg {
	width: 22px;
	height: 22px;
	stroke: var(--amber);
}
.contact-detail h4 {
	font-size: 0.95rem;
	margin-bottom: 4px;
}
.contact-detail a,
.contact-detail span {
	font-size: 0.92rem;
	color: #5c6660;
}
.contact-detail a:hover {
	color: var(--amber);
}

.contact-form-wrap {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 20px;
	padding: 40px;
}
.contact-form .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.form-group {
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
}
.form-group label {
	font-family: "Sora", sans-serif;
	font-weight: 600;
	font-size: 0.85rem;
	margin-bottom: 8px;
	color: var(--ink);
}
.form-group input,
.form-group select,
.form-group textarea {
	font-family: "Inter", sans-serif;
	font-size: 0.95rem;
	padding: 12px 16px;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: var(--bg);
	color: var(--ink);
	outline: none;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--amber);
	box-shadow: 0 0 0 3px rgba(243, 146, 0, 0.12);
}
.form-group textarea {
	resize: vertical;
	font-family: "Inter", sans-serif;
}
.contact-form button {
	width: 100%;
	justify-content: center;
	border: none;
	cursor: pointer;
}

@media (max-width: 980px) {
	.contact-grid {
		grid-template-columns: 1fr;
	}
	.contact-form-wrap {
		padding: 28px;
	}
}
@media (max-width: 680px) {
	.contact-form .form-row {
		grid-template-columns: 1fr;
	}
}
/*basix nathers*/
/* ===== Service intro ===== */
.service-intro-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 60px;
	align-items: center;
}
.service-intro p {
	color: #4b564f;
	margin-bottom: 16px;
}

.service-intro-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}
.service-intro-grid > div:first-child {
	max-width: 100%;
}
.service-intro p {
	color: #4b564f;
	margin-bottom: 16px;
}

/* image side */
.service-hero-img {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 4/3;
}
.service-hero-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.service-hero-badge {
	position: absolute;
	bottom: 20px;
	left: 20px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 10px 18px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: "Sora", sans-serif;
	font-weight: 700;
	font-size: 0.82rem;
	color: var(--ink);
	box-shadow: 0 8px 24px -8px rgba(30, 41, 37, 0.2);
}
.service-hero-badge svg {
	width: 16px;
	height: 16px;
	stroke: var(--amber);
	flex-shrink: 0;
}

@media (max-width: 980px) {
	.service-intro-grid {
		grid-template-columns: 1fr;
	}
	.service-hero-img {
		order: -1;
		aspect-ratio: 16/9;
	}
}

/* ===== FAQ ===== */
.faq-list {
	/* max-width: 780px; */
	margin: 0 auto;
	border-top: 1px solid var(--line);
}
.faq-item {
	border-bottom: 1px solid var(--line);
	padding: 22px 0;
}
.faq-item summary {
	font-family: "Sora", sans-serif;
	font-weight: 600;
	font-size: 1.02rem;
	cursor: pointer;
	list-style: none;
	position: relative;
	padding-right: 32px;
}
.faq-item summary::-webkit-details-marker {
	display: none;
}
.faq-item summary::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 0;
	font-size: 1.4rem;
	color: var(--amber);
	font-weight: 400;
	transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
	content: "−";
}
.faq-item p {
	color: #5c6660;
	font-size: 0.95rem;
	margin-top: 14px;
	padding-right: 32px;
}

@media (max-width: 980px) {
	.service-intro-grid {
		grid-template-columns: 1fr;
	}
	.service-intro-grid .dial-wrap {
		order: -1;
		margin-bottom: 10px;
	}
}

/* ===== Service hero image ===== */
.service-hero-img {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	aspect-ratio: 4/3;
}
.service-hero-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	border-radius: 20px;
}
.service-hero-badge {
	position: absolute;
	bottom: 20px;
	left: 20px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 10px 18px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: "Sora", sans-serif;
	font-weight: 700;
	font-size: 0.82rem;
	color: var(--ink);
	box-shadow: 0 8px 24px -8px rgba(30, 41, 37, 0.2);
}
.service-hero-badge svg {
	width: 16px;
	height: 16px;
	stroke: var(--amber);
	flex-shrink: 0;
}
/* ===== Feature list ===== */
.feature-list {
	border-top: 1px solid var(--line);
	margin-top: 10px;
}
.feature-row {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 40px;
	padding: 36px 0;
	border-bottom: 1px solid var(--line);
	align-items: center;
}
.feature-left {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.feature-num {
	font-family: "Sora", sans-serif;
	font-weight: 800;
	font-size: 0.8rem;
	letter-spacing: 0.12em;
	color: var(--amber);
}
.feature-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: #fbefd9;
	display: flex;
	align-items: center;
	justify-content: center;
}
.feature-icon svg {
	width: 24px;
	height: 24px;
	stroke: var(--amber);
}
.feature-left h3 {
	font-size: 1.15rem;
	line-height: 1.3;
}
.feature-right p {
	color: #5c6660;
	font-size: 0.98rem;
	line-height: 1.75;
}

@media (max-width: 780px) {
	.feature-row {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}
/*jiv3*/
/* ===== Compare grid ===== */
.compare-grid {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 0;
	align-items: stretch;
	border: 1px solid var(--line);
	border-radius: 20px;
	overflow: hidden;
}
.compare-card {
	padding: 40px;
}
.compare-dts {
	background: var(--bg);
}
.compare-j1v3 {
	background: var(--ink);
}
.compare-label {
	font-family: "Sora", sans-serif;
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 24px;
}
.compare-dts .compare-label {
	color: var(--grey);
}
.compare-j1v3 .compare-label {
	color: var(--amber);
}
.compare-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.compare-list li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	font-size: 0.95rem;
	line-height: 1.5;
}
.compare-dts .compare-list li {
	color: #5c6660;
}
.compare-j1v3 .compare-list li {
	color: #c8d2cc;
}
.compare-list svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	margin-top: 2px;
}
.compare-dts .compare-list svg {
	stroke: var(--sage);
}
.compare-j1v3 .compare-list svg {
	stroke: var(--amber);
}
.compare-divider {
	width: 1px;
	background: var(--line);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.compare-divider span {
	position: absolute;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Sora", sans-serif;
	font-weight: 700;
	font-size: 0.8rem;
	color: var(--grey);
}

@media (max-width: 780px) {
	.compare-grid {
		grid-template-columns: 1fr;
	}
	.compare-divider {
		width: auto;
		height: 1px;
		flex-direction: row;
	}
	.compare-divider span {
		position: relative;
		margin: 0 auto;
		transform: translateY(-50%);
	}
	.compare-card {
		padding: 28px;
	}
}

/* ===== Stage grid ===== */
.stage-grid {
	display: grid;
	grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
	gap: 0;
	align-items: center;
	background: var(--bg);
	border: 1px solid var(--line);
	border-radius: 20px;
	padding: 40px 32px;
}
.stage-card {
	padding: 0 16px;
	text-align: center;
}
.stage-num {
	font-family: "Sora", sans-serif;
	font-weight: 800;
	font-size: 0.8rem;
	letter-spacing: 0.12em;
	color: var(--amber);
	margin-bottom: 10px;
}
.stage-card h3 {
	font-size: 1rem;
	margin-bottom: 8px;
}
.stage-card p {
	font-size: 0.88rem;
	color: #5c6660;
	line-height: 1.6;
}
.stage-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 8px;
}
.stage-arrow svg {
	width: 20px;
	height: 20px;
	stroke: var(--amber);
	opacity: 0.5;
}

@media (max-width: 980px) {
	.stage-grid {
		grid-template-columns: 1fr 1fr;
		gap: 24px;
		padding: 28px;
	}
	.stage-arrow {
		display: none;
	}
}
@media (max-width: 580px) {
	.stage-grid {
		grid-template-columns: 1fr;
	}
}

/*daylight*/
/* ===== Daylight benefits ===== */
.daylight-benefits {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 10px;
}
.daylight-benefit {
	background: var(--bg);
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 28px;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}
.daylight-benefit:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px -22px rgba(30, 41, 37, 0.2);
	border-color: var(--amber);
}
.db-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: #eaf1eb;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}
.db-icon svg {
	width: 24px;
	height: 24px;
	stroke: var(--sage);
}
.daylight-benefit h3 {
	font-size: 1rem;
	margin-bottom: 8px;
}
.daylight-benefit p {
	font-size: 0.88rem;
	color: #5c6660;
}

@media (max-width: 980px) {
	.daylight-benefits {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 580px) {
	.daylight-benefits {
		grid-template-columns: 1fr;
	}
}

/* ===== Radiance callout ===== */
.radiance-callout {
	background: var(--ink);
	border-radius: 24px;
	display: grid;
	grid-template-columns: 1.3fr 0.7fr;
	gap: 0;
	overflow: hidden;
}
.radiance-copy {
	padding: 52px;
}
.radiance-copy h2 {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	color: var(--bg);
	margin: 10px 0 16px;
}
.radiance-copy p {
	color: #c8d2cc;
	font-size: 0.98rem;
	margin-bottom: 14px;
}
.radiance-stats {
	background: rgba(255, 255, 255, 0.05);
	padding: 52px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 32px;
	border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.rs-num {
	display: block;
	font-family: "Sora", sans-serif;
	font-weight: 800;
	font-size: 1.8rem;
	color: var(--amber);
	margin-bottom: 6px;
}
.rs-label {
	font-size: 0.85rem;
	color: #9daaa3;
	line-height: 1.4;
}

@media (max-width: 780px) {
	.radiance-callout {
		grid-template-columns: 1fr;
	}
	.radiance-stats {
		border-left: none;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
		flex-direction: row;
		flex-wrap: wrap;
		gap: 24px;
		padding: 32px;
	}
	.radiance-copy {
		padding: 36px 28px;
	}
	.radiance-stat {
		flex: 1;
		min-width: 120px;
	}
}
/*nabers*/
/* ===== NABERS star rating strip ===== */
.nabers-stars {
	display: flex;
	flex-direction: column;
	gap: 14px;
	border: 1px solid var(--line);
	border-radius: 20px;
	padding: 36px;
	background: var(--bg);
}
.nabers-star-row {
	display: grid;
	grid-template-columns: 120px 60px 1fr 1fr;
	gap: 16px;
	align-items: center;
	padding: 12px 16px;
	border-radius: 10px;
	transition: background 0.2s ease;
}
.nabers-star-row:hover {
	background: var(--white);
}
.nabers-star-row--highlight {
	background: rgba(243, 146, 0, 0.06);
}
.nabers-star-row--top {
	background: rgba(243, 146, 0, 0.12);
	border: 1px solid rgba(243, 146, 0, 0.25);
}
.ns-stars {
	display: flex;
	gap: 2px;
}
.ns-stars svg {
	width: 16px;
	height: 16px;
}
.ns-label {
	font-family: "Sora", sans-serif;
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--ink);
}
.ns-bar {
	height: 6px;
	background: var(--line);
	border-radius: 999px;
	overflow: hidden;
}
.ns-fill {
	height: 100%;
	background: var(--amber);
	border-radius: 999px;
	transition: width 0.4s ease;
}
.ns-desc {
	font-size: 0.88rem;
	color: #5c6660;
}

@media (max-width: 780px) {
	.nabers-star-row {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}
	.ns-bar {
		display: none;
	}
	.nabers-stars {
		padding: 20px;
	}
}
@media (max-width: 480px) {
	.nabers-star-row {
		grid-template-columns: 1fr;
		gap: 6px;
	}
	.ns-label {
		display: none;
	}
}

.nav-links a.active,
.nav-links .nav-dropdown-toggle.active {
	color: #e8820c;
}

.nav-dropdown-menu a.active {
	color: #e8820c;
	font-weight: 500;
}
