:root {
	--bg: #05080c;
	--panel: #0a0f14;
	--panel-2: #0c1117;
	--line: rgba(255, 255, 255, 0.11);
	--line-soft: rgba(255, 255, 255, 0.08);
	--text: #f3f4f6;
	--muted: #c7cdd4;
	--olive: #9ab61f;
	--olive-dark: #7f9818;
	--shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 96px;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	background: var(--bg);
	color: var(--text);
}

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

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

button,
input,
textarea {
	font: inherit;
}

.page-shell {
	background: radial-gradient(circle at 70% 12%, rgba(154, 182, 31, 0.08), transparent 18%), linear-gradient(180deg, #05080c 0%, #05080c 100%);
}

.container {
	width: min(1440px, calc(100% - 48px));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: #05080c;
	border-bottom: 1px solid var(--line-soft);
}

.header-inner {
	min-height: 96px;
	display: flex;
	align-items: center;
	gap: 24px;
}

.brand img {
	width: 180px;
	height: auto;
}

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

.main-nav a {
	position: relative;
	padding: 10px 0 16px;
	color: #f6f7f7;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -0.01em;
}

.main-nav a.active {
	color: var(--olive);
}

.main-nav a.active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: var(--olive);
}

.cta,
.mini-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: linear-gradient(180deg, #8fad1c 0%, #7f9818 100%);
	color: #fff;
	font-weight: 700;
	box-shadow: 0 10px 20px rgba(111, 130, 32, 0.24);
}

.cta {
	padding: 14px 22px;
	border-radius: 6px;
	font-size: 13px;
	min-width: 124px;
}

.hero,
.feature-band,
.about-section,
.services-section,
.projects-section,
.banner-cta,
.contact-section,
.site-footer {
	border-top: 1px solid var(--line-soft);
}

section[id] {
	scroll-margin-top: 116px;
}

.reveal {
	opacity: 0;
	transform: translateY(26px);
	filter: blur(4px);
	transition:
		opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
		filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform, filter;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}

.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.reveal {
		opacity: 1;
		transform: none;
		filter: none;
		transition: none;
	}
}

.hero {
	background:
		radial-gradient(circle at 72% 30%, rgba(154, 182, 31, 0.1), transparent 24%),
		linear-gradient(180deg, rgba(7, 11, 15, 0.08) 0%, rgba(5, 8, 12, 0.08) 100%), var(--hero-bg, url("images/hero-city.png"));
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right center;
}

.subpage-hero {
	background:
		radial-gradient(circle at 72% 30%, rgba(154, 182, 31, 0.1), transparent 24%),
		linear-gradient(180deg, rgba(7, 11, 15, 0.12) 0%, rgba(5, 8, 12, 0.18) 100%), var(--subpage-hero-bg, url("images/office-lobby.png"));
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center right;
}

.hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
	align-items: center;
	gap: 10px;
	min-height: 680px;
	padding: 44px 0 32px;
}

.subpage-hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: center;
	gap: 24px;
	min-height: 420px;
	padding: 52px 0 36px;
}

.hero-copy {
	padding: 18px 4px 12px 18px;
}

.subpage-hero-copy {
	padding: 20px 0 12px;
	max-width: 48ch;
}

.hero-copy h1 {
	font-size: 60px;
	line-height: 1.06;
	letter-spacing: -0.05em;
	max-width: 21.5ch;
	font-weight: 800;
	color: #fff;
}

.subpage-hero-copy h1 {
	font-size: 56px;
	line-height: 1.02;
	letter-spacing: -0.05em;
	font-weight: 800;
	color: #fff;
	margin-bottom: 14px;
}

.hero-copy h1 span {
	color: var(--olive);
}

.hero-copy p {
	max-width: 42ch;
	margin-top: 20px;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.65;
}

.subpage-hero-copy p {
	max-width: 44ch;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.7;
}

.hero-button,
.mini-button {
	border-radius: 5px;
	padding: 13px 17px;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.hero-button {
	margin-top: 22px;
}

.subpage-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.subpage-hero-actions .hero-button {
	margin-top: 0;
}

.hero-button .arrow {
	font-size: 18px;
}

.subpage-summary {
	background: #081015;
	border-top: 1px solid var(--line-soft);
	padding: 24px 0;
}

.subpage-summary-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.summary-card {
	padding: 24px 20px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	background: linear-gradient(180deg, #0f141a 0%, #0b1015 100%);
	box-shadow: var(--shadow);
}

.summary-card h2 {
	font-size: 15px;
	line-height: 1.2;
	margin-bottom: 10px;
}

.summary-card p {
	color: var(--muted);
	font-size: 12px;
	line-height: 1.6;
}

.subpage-content {
	background: #071017;
	padding: 26px 0 34px;
}

.subpage-content-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
	gap: 14px;
	align-items: start;
}

.content-card,
.sidebar-card {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	background: linear-gradient(180deg, #0f141a 0%, #0b1015 100%);
	box-shadow: var(--shadow);
}

.content-card {
	padding: 24px;
}

.content-prose {
	color: var(--text);
	font-size: 15px;
	line-height: 1.8;
}

.content-prose > * + * {
	margin-top: 16px;
}

.content-prose h2,
.content-prose h3 {
	color: #fff;
	line-height: 1.15;
	margin-top: 24px;
	margin-bottom: 8px;
}

.content-prose a {
	color: var(--olive);
	text-decoration: underline;
}

.content-prose ul,
.content-prose ol {
	padding-left: 22px;
}

.sidebar-card {
	padding: 20px;
}

.sidebar-list {
	display: grid;
	gap: 10px;
	margin-top: 14px;
}

.sidebar-list a {
	display: block;
	padding: 14px 14px 12px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.sidebar-list a:hover {
	transform: translateY(-1px);
	border-color: rgba(154, 182, 31, 0.28);
	background: rgba(154, 182, 31, 0.06);
}

.sidebar-list strong {
	display: block;
	font-size: 13px;
	margin-bottom: 5px;
}

.sidebar-list span {
	display: block;
	font-size: 12px;
	line-height: 1.6;
	color: var(--muted);
}

.subpage-banner {
	background: #081015;
	padding: 18px 0 24px;
}

.feature-band {
	background: linear-gradient(180deg, #0a0e12 0%, #090d11 100%);
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
	display: flex;
	gap: 18px;
	padding: 26px 24px 24px;
	min-height: 160px;
	border-left: 1px solid var(--line-soft);
}

.feature-card:first-child {
	border-left: 0;
}

.feature-icon {
	width: 42px;
	flex: 0 0 42px;
	color: var(--olive);
}

.feature-icon svg {
	width: 42px;
	height: 42px;
}

.feature-card h2 {
	font-size: 16px;
	line-height: 1.18;
	margin-bottom: 10px;
}

.feature-card p {
	color: var(--muted);
	font-size: 12px;
	line-height: 1.55;
	max-width: 16ch;
}

.about-section {
	background: linear-gradient(180deg, #0a0f14 0%, #090d11 100%);
	padding: 34px 0 22px;
}

.split-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	gap: 34px;
	align-items: center;
	padding-top: 16px;
}

.eyebrow {
	color: var(--olive);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin-bottom: 14px;
}

.section-copy h2,
.section-heading h2,
.contact-copy h2 {
	font-size: 30px;
	line-height: 1.05;
	letter-spacing: -0.04em;
}

.section-copy h2 span,
.section-heading h2 span,
.contact-copy h2 span {
	color: var(--olive);
}

.section-copy p {
	max-width: 34ch;
	margin-top: 16px;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.7;
}

.mini-button {
	margin-top: 20px;
}

.learn-more-button {
	background: linear-gradient(180deg, #ffd84d 0%, #f0c419 100%);
	color: #1b1b1b;
	box-shadow: 0 10px 20px rgba(240, 196, 25, 0.28);
}

.section-image {
	border-radius: 9px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: var(--shadow);
}

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

.stats-strip {
	margin-top: 30px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	overflow: hidden;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	background: #081015;
}

.stat-item {
	padding: 26px 22px 24px;
	text-align: center;
	border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:first-child {
	border-left: 0;
}

.stat-item strong {
	display: block;
	color: var(--olive);
	font-size: 34px;
	line-height: 1;
	margin-bottom: 10px;
}

.stat-item span {
	color: #e2e5e8;
	font-size: 12px;
}

.services-section,
.projects-section {
	background: #081015;
	padding: 34px 0 30px;
}

.section-heading {
	text-align: center;
	margin-bottom: 24px;
}

.section-heading p:last-child {
	max-width: 560px;
	margin: 10px auto 0;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.6;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 12px;
}

.service-grid-page {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: #f4f7f4;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	min-height: 320px;
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
	transition:
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover {
	transform: translateY(-8px);
	border-color: rgba(255, 255, 255, 0.08);
	box-shadow: 0 26px 56px rgba(0, 0, 0, 0.34);
}

.service-card-media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 11;
	background: #05080c;
}

.service-card-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(5, 8, 12, 0) 42%, rgba(5, 8, 12, 0.42) 100%);
	pointer-events: none;
}

.service-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.001);
	transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

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

.service-card:hover .service-card-media::after {
	background: linear-gradient(180deg, rgba(154, 182, 31, 0.04) 42%, rgba(5, 8, 12, 0.46) 100%);
}

.service-card-content {
	display: grid;
	gap: 10px;
	align-content: start;
	flex: 1;
	padding: 30px 24px 28px;
	background:
		radial-gradient(circle at 22% 18%, rgba(154, 182, 31, 0.12), transparent 30%),
		linear-gradient(180deg, #0f141a 0%, #0b1015 100%);
	color: #fff;
	transition: background 0.45s ease, color 0.45s ease, border-color 0.45s ease;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card h3 {
	font-size: 22px;
	line-height: 1.12;
	letter-spacing: -0.03em;
	margin-bottom: 0;
	color: var(--olive);
}

.service-card p {
	color: var(--muted);
	font-size: 16px;
	line-height: 1.55;
	padding: 0;
}

.projects-section {
	padding-top: 24px;
}

.filter-tabs {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

.filter-tabs span {
	min-width: 58px;
	text-align: center;
	padding: 8px 16px;
	border-radius: 5px;
	background: #14191f;
	color: #d8dce0;
	font-size: 12px;
	font-weight: 700;
}

.filter-tabs span.active {
	background: var(--olive-dark);
	color: #fff;
}

.project-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.project-grid-page {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-card {
	background: linear-gradient(180deg, #0f141a 0%, #0b1015 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	padding: 13px;
	box-shadow: var(--shadow);
}

.project-image {
	border-radius: 5px;
	overflow: hidden;
	margin-bottom: 14px;
	background: #05080c;
}

.project-image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.project-card h3 {
	font-size: 15px;
	line-height: 1.25;
	margin-bottom: 4px;
}

.project-category {
	color: #b8bec4;
	font-size: 11px;
	margin-bottom: 10px;
}

.project-card p:last-child {
	color: var(--muted);
	font-size: 12px;
	line-height: 1.6;
}

.projects-cta {
	display: flex;
	justify-content: center;
	margin-top: 18px;
}

.banner-cta {
	padding: 16px 0 20px;
	background: #081015;
}

.banner-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 20px 22px;
	border: 1px solid rgba(154, 182, 31, 0.22);
	border-radius: 10px;
	background:
		radial-gradient(circle at 18% 50%, rgba(154, 182, 31, 0.18), transparent 15%),
		radial-gradient(circle at 82% 18%, rgba(154, 182, 31, 0.12), transparent 18%),
		linear-gradient(180deg, rgba(13, 20, 16, 0.96), rgba(7, 12, 10, 0.96));
}

.banner-copy {
	display: flex;
	align-items: center;
	gap: 18px;
}

.banner-badge {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(154, 182, 31, 0.25);
	color: var(--olive);
	font-size: 24px;
}

.banner-copy h2 {
	font-size: 24px;
	line-height: 1.1;
	margin-bottom: 6px;
}

.banner-copy p {
	color: var(--muted);
	font-size: 13px;
	line-height: 1.5;
	max-width: 44ch;
}

.contact-section {
	background: #081015;
	padding: 22px 0 30px;
}

.contact-grid {
	display: grid;
	grid-template-columns: 0.78fr 1.12fr 0.94fr;
	gap: 14px;
	align-items: stretch;
}

.contact-copy {
	padding-top: 6px;
}

.contact-copy h2 {
	max-width: 10ch;
}

.contact-details {
	margin-top: 18px;
	display: grid;
	gap: 14px;
}

.contact-details strong {
	display: block;
	font-size: 13px;
	margin-bottom: 4px;
}

.contact-details span {
	color: var(--muted);
	font-size: 12px;
}

.contact-form {
	background: #0f141a;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	padding: 12px;
	display: grid;
	gap: 12px;
	box-shadow: var(--shadow);
}

.contact-notice {
	border-radius: 6px;
	padding: 10px 12px;
	font-size: 13px;
	line-height: 1.4;
	border: 1px solid transparent;
}

.contact-notice-success {
	background: rgba(154, 182, 31, 0.12);
	border-color: rgba(154, 182, 31, 0.3);
	color: #dbe8a0;
}

.contact-notice-error {
	background: rgba(194, 78, 63, 0.12);
	border-color: rgba(194, 78, 63, 0.3);
	color: #f2b4aa;
}

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

.contact-form input,
.contact-form textarea {
	width: 100%;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 4px;
	color: var(--text);
	padding: 9px 11px;
	outline: none;
}

.contact-form textarea {
	min-height: 124px;
	resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: #7e8790;
}

.submit {
	border: 0;
	cursor: pointer;
	justify-self: start;
}

.submit {
	position: relative;
	min-width: 150px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.submit:disabled {
	opacity: 0.85;
	cursor: wait;
}

.submit-spinner {
	display: inline-block;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: var(--text);
	animation: batuan-spin 0.75s linear infinite;
}

.submit-spinner[hidden] {
	display: none;
}

@keyframes batuan-spin {
	to {
		transform: rotate(360deg);
	}
}

.map-image {
	min-height: 100%;
}

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

.site-footer {
	background: #05080c;
	padding: 22px 0 12px;
	border-top: 1px solid var(--line-soft);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.6fr 0.6fr 0.6fr;
	gap: 22px;
	align-items: start;
	padding-bottom: 16px;
}

.footer-brand img {
	width: 155px;
	margin-bottom: 14px;
}

.footer-brand p {
	color: var(--muted);
	font-size: 12px;
	line-height: 1.6;
	max-width: 28ch;
}

.footer-col h3 {
	font-size: 14px;
	margin-bottom: 12px;
}

.footer-col a {
	display: block;
	color: #d7dbe0;
	font-size: 12px;
	margin-bottom: 6px;
}

.socials {
	display: flex;
	gap: 14px;
	margin-top: 4px;
}

.socials span {
	width: 24px;
	height: 24px;
	display: grid;
	place-items: center;
	color: var(--olive);
	font-weight: 700;
	font-size: 12px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
	color: #a7adb4;
	font-size: 11px;
	padding-top: 10px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal {
	display: flex;
	gap: 14px;
}

.footer-legal a {
	color: #a7adb4;
}

.footer-legal a + a::before {
	content: "|";
	margin-right: 14px;
	color: #57606a;
}

.anchor-section {
	display: none;
}

@media (max-width: 1280px) {
	.container {
		width: min(1500px, calc(100% - 36px));
	}

	.main-nav {
		gap: 22px;
	}

	.hero-copy h1 {
		font-size: 54px;
		max-width: 21.5ch;
	}

	.service-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.service-grid-page,
	.project-grid-page {
		grid-template-columns: 1fr;
	}

	.project-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}

	.map-image {
		min-height: 320px;
	}

	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.subpage-hero-inner {
		grid-template-columns: 1fr;
	}

	.subpage-content-grid {
		grid-template-columns: 1fr;
	}

	.subpage-summary-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

}

@media (max-width: 980px) {
	.header-inner {
		flex-wrap: wrap;
		padding: 14px 0;
		justify-content: center;
	}

	.main-nav {
		order: 3;
		margin-left: 0;
		flex-wrap: wrap;
		justify-content: center;
	}

	.hero-inner,
	.split-grid {
		grid-template-columns: 1fr;
	}

	.subpage-hero-copy h1 {
		font-size: 44px;
	}

	.hero-copy {
		padding-left: 0;
		text-align: center;
	}

	.hero-copy p {
		margin-left: auto;
		margin-right: auto;
	}

	.feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.stats-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.service-grid,
	.project-grid,
	.subpage-summary-grid {
		grid-template-columns: 1fr 1fr;
	}

	.banner-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.subpage-hero-inner {
		min-height: auto;
		padding: 32px 0 24px;
	}

}

@media (max-width: 640px) {
	.container {
		width: min(100% - 20px, 1500px);
	}

	.brand img {
		width: 128px;
	}

	.cta {
		width: 100%;
	}

	.hero-inner {
		min-height: auto;
		padding: 28px 0 18px;
	}

	.hero-copy h1 {
		font-size: 42px;
		max-width: 21.5ch;
	}

	.subpage-hero-copy h1 {
		font-size: 36px;
	}

	.hero-copy p {
		font-size: 15px;
	}

	.feature-grid,
	.stats-strip,
	.service-grid,
	.project-grid,
	.subpage-summary-grid,
	.footer-grid,
	.form-row {
		grid-template-columns: 1fr;
	}

	.subpage-hero-actions {
		justify-content: center;
	}

	.subpage-hero-copy {
		text-align: center;
	}

	.content-card,
	.sidebar-card {
		padding: 18px;
	}

	.feature-card {
		border-left: 0;
		border-top: 1px solid var(--line-soft);
	}

	.service-card {
		min-height: 300px;
	}

	.feature-card:first-child {
		border-top: 0;
	}

	.section-copy h2,
	.section-heading h2,
	.contact-copy h2 {
		font-size: 26px;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer-legal a + a::before {
		margin-right: 10px;
	}
}
