/**
 * Big T Rentals Theme Stylesheet
 *
 * Core styling, layout, typography, animations, and responsiveness.
 *
 * @package Big_T_Rentals
 */

:root {
	--black: #0F0F0F;
	--dark: #1A1A1A;
	--mid: #2A2A2A;
	--steel: #3A3A3A;
	--gray: #888888;
	--light: #C0C0C0;
	--white: #F5F5F5;
	--orange: #F06000;
	--orange-hot: #FF6B00;
	--yellow: #FFD600;
	--caution: #FFC107;
}

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

html {
	scroll-behavior: smooth;
}

body {
	background: var(--black);
	color: var(--white);
	font-family: 'Source Sans 3', sans-serif;
	font-weight: 300;
	overflow-x: hidden;
}

/* Google Fonts Override */
h1, h2, h3, h4, h5, h6,
.logo, .nav-logo, .nav-cta, .btn-primary, .btn-outline,
.ticker, .stat-big, .svc-tag, .how-num, .how-name, .who-num, .who-name,
.team-init, .team-name, .c-val, .submit-btn, .footer-logo, .footer-heading {
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
}

p, span, select, input, textarea, .svc-desc, .how-desc, .who-desc, .footer-desc, .footer-copyright {
	font-family: 'Source Sans 3', sans-serif;
}

/* ----------------------------------------------------
   Signature Elements
   ---------------------------------------------------- */

/* Safety Stripe Top */
.safety-stripe {
	height: 8px;
	background: repeating-linear-gradient(
		-45deg,
		var(--orange),
		var(--orange) 12px,
		var(--black) 12px,
		var(--black) 24px
	);
}

/* Safety Stripe Bottom */
.safety-bottom {
	height: 8px;
	background: repeating-linear-gradient(
		-45deg,
		var(--orange),
		var(--orange) 12px,
		var(--black) 12px,
		var(--black) 24px
	);
}

/* ----------------------------------------------------
   Sticky Navigation
   ---------------------------------------------------- */
nav {
	background: var(--dark);
	border-bottom: 1px solid var(--mid);
	padding: 0 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
	position: sticky;
	top: 0;
	z-index: 100;
}

/* Adjust sticky nav when WordPress Admin Bar is active */
.admin-bar nav {
	top: 32px;
}

@media screen and (max-width: 782px) {
	.admin-bar nav {
		top: 46px;
	}
}

.logo-with-mark {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.logo-mark-box {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Oswald', sans-serif;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 1px;
	background: var(--orange);
	color: var(--black);
	transition: background 0.25s ease, color 0.25s ease;
}

.logo-with-mark:hover .logo-mark-box {
	background: var(--orange-hot);
}

.logo-sample {
	font-family: 'Oswald', sans-serif;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--white);
	transition: color 0.25s ease;
}

.logo-sample span {
	color: var(--orange);
}

/* Desktop Navigation container */
.nav-container {
	display: flex;
	align-items: center;
	gap: 32px;
}

.nav-links {
	display: flex;
	gap: 32px;
	list-style: none;
}

.nav-links a {
	font-size: 13px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gray);
	text-decoration: none;
	transition: color 0.2s ease;
}

.nav-links a:hover {
	color: var(--orange);
}

.nav-cta {
	font-size: 14px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--black);
	background: var(--orange);
	padding: 10px 24px;
	text-decoration: none;
	transition: background 0.2s ease;
}

.nav-cta:hover {
	background: var(--orange-hot);
}

/* Mobile Hamburger Toggle */
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 24px;
	height: 18px;
	cursor: pointer;
	z-index: 110;
}

.nav-toggle span {
	display: block;
	height: 2px;
	width: 100%;
	background-color: var(--white);
	transition: all 0.3s ease;
}

/* ----------------------------------------------------
   Hero Section
   ---------------------------------------------------- */
.hero {
	min-height: calc(100vh - 72px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 80px 60px;
	background: var(--black);
	position: relative;
	overflow: hidden;
}

.hero-video-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	pointer-events: none;
	opacity: 0.22;
}

.hero-bg-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: 'Oswald', sans-serif;
	font-size: clamp(120px, 20vw, 260px);
	font-weight: 700;
	color: rgba(255, 255, 255, 0.025);
	white-space: nowrap;
	pointer-events: none;
	letter-spacing: -4px;
	z-index: 1;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--orange);
	padding: 8px 16px;
	margin-bottom: 28px;
	width: fit-content;
	opacity: 0;
	animation: slideIn 0.6s 0.1s forwards;
	position: relative;
	z-index: 2;
}

.hero-badge-text {
	font-family: 'Oswald', sans-serif;
	font-size: 12px;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--black);
}

.hero-title {
	font-size: clamp(64px, 10vw, 130px);
	font-weight: 700;
	line-height: 0.92;
	letter-spacing: -1px;
	color: var(--white);
	text-transform: uppercase;
	opacity: 0;
	animation: slideIn 0.6s 0.2s forwards;
	position: relative;
	z-index: 2;
}

.hero-title span {
	color: var(--orange);
}

.hero-tagline {
	font-size: clamp(18px, 2.5vw, 28px);
	font-weight: 400;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gray);
	margin-top: 20px;
	opacity: 0;
	animation: slideIn 0.6s 0.35s forwards;
	position: relative;
	z-index: 2;
}

.hero-desc {
	font-size: 17px;
	line-height: 1.7;
	color: var(--light);
	max-width: 560px;
	margin-top: 28px;
	opacity: 0;
	animation: slideIn 0.6s 0.5s forwards;
	position: relative;
	z-index: 2;
}

.hero-ctas {
	display: flex;
	gap: 16px;
	margin-top: 40px;
	opacity: 0;
	animation: slideIn 0.6s 0.65s forwards;
	position: relative;
	z-index: 2;
}

.btn-primary {
	font-size: 16px;
	letter-spacing: 3px;
	color: var(--black);
	background: var(--orange);
	padding: 16px 40px;
	text-decoration: none;
	transition: background 0.2s ease;
	display: inline-block;
}

.btn-primary:hover {
	background: var(--orange-hot);
}

.btn-outline {
	font-size: 16px;
	letter-spacing: 3px;
	color: var(--white);
	background: transparent;
	border: 1px solid var(--steel);
	padding: 16px 40px;
	text-decoration: none;
	transition: border-color 0.2s, color 0.2s;
	display: inline-block;
}

.btn-outline:hover {
	border-color: var(--orange);
	color: var(--orange);
}

.hero-callout {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	margin-top: 60px;
	padding: 20px 28px;
	background: var(--dark);
	border-left: 4px solid var(--orange);
	width: fit-content;
	opacity: 0;
	animation: slideIn 0.6s 0.8s forwards;
	position: relative;
	z-index: 2;
}

.callout-icon {
	font-size: 24px;
	color: var(--orange);
	display: flex;
	align-items: center;
}

.callout-text {
	font-size: 14px;
	letter-spacing: 2px;
	color: var(--white);
}

.callout-sub {
	font-size: 12px;
	color: var(--gray);
	margin-top: 2px;
	letter-spacing: 1px;
}

/* ----------------------------------------------------
   Scrolling Ticker
   ---------------------------------------------------- */
.ticker {
	background: var(--orange);
	overflow: hidden;
	white-space: nowrap;
	padding: 14px 0;
}

.ticker-track {
	display: inline-flex;
	animation: scroll 25s linear infinite;
}

.t-item {
	font-size: 13px;
	letter-spacing: 4px;
	color: var(--black);
	padding: 0 32px;
}

.t-dot {
	color: rgba(0, 0, 0, 0.35);
}

/* ----------------------------------------------------
   Stats Grid
   ---------------------------------------------------- */
.stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: var(--dark);
	border-top: 1px solid var(--mid);
	border-bottom: 1px solid var(--mid);
}

.stat-box {
	padding: 48px 40px;
	border-right: 1px solid var(--mid);
	text-align: center;
}

.stat-box:last-child {
	border-right: none;
}

.stat-big {
	font-size: 52px;
	font-weight: 700;
	color: var(--white);
	line-height: 1;
}

.stat-big .accent {
	color: var(--orange);
}

.stat-lbl {
	font-size: 12px;
	letter-spacing: 3px;
	color: var(--gray);
	margin-top: 8px;
}

/* ----------------------------------------------------
   General Sections
   ---------------------------------------------------- */
section {
	padding: 100px 60px;
}

.sec-label {
	font-size: 11px;
	letter-spacing: 5px;
	color: var(--orange);
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}

.sec-label::before {
	content: '//';
	font-weight: 400;
}

.sec-title {
	font-size: clamp(40px, 5vw, 64px);
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1;
	color: var(--white);
}

.sec-title span {
	color: var(--orange);
}

/* ----------------------------------------------------
   Services Cards
   ---------------------------------------------------- */
.services {
	background: var(--black);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	margin-top: 60px;
}

.svc-card {
	background: var(--dark);
	padding: 44px 36px;
	position: relative;
	overflow: hidden;
	transition: background 0.25s ease;
}

.svc-card:hover {
	background: var(--mid);
}

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

.svc-card-stripe {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: repeating-linear-gradient(
		-45deg,
		var(--orange),
		var(--orange) 6px,
		transparent 6px,
		transparent 12px
	);
	opacity: 0;
	transition: opacity 0.25s ease;
}

.svc-card:hover .svc-card-stripe {
	opacity: 1;
}

.svc-num {
	font-size: 64px;
	font-weight: 700;
	color: rgba(240, 96, 0, 0.12);
	position: absolute;
	top: 20px;
	right: 20px;
	line-height: 1;
}

.svc-name {
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 1px;
	color: var(--white);
	margin-bottom: 16px;
	margin-top: 8px;
}

.svc-desc {
	font-size: 14px;
	line-height: 1.7;
	color: var(--gray);
}

.svc-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 24px;
}

.svc-tag {
	font-size: 10px;
	letter-spacing: 2px;
	color: var(--orange);
	border: 1px solid rgba(240, 96, 0, 0.3);
	padding: 4px 10px;
}

/* ----------------------------------------------------
   How It Works Workflow
   ---------------------------------------------------- */
.how {
	background: var(--dark);
}

.how-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2px;
	margin-top: 60px;
}

.how-step {
	background: var(--mid);
	padding: 40px 28px;
	position: relative;
}

.how-step::after {
	content: '→';
	position: absolute;
	right: -16px;
	top: 40px;
	font-size: 24px;
	color: var(--orange);
	z-index: 1;
}

.how-step:last-child::after {
	display: none;
}

.how-num {
	font-size: 48px;
	font-weight: 700;
	color: var(--orange);
	opacity: 0.3;
	line-height: 1;
	margin-bottom: 16px;
}

.how-name {
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 1px;
	color: var(--white);
	margin-bottom: 12px;
}

.how-desc {
	font-size: 13px;
	line-height: 1.6;
	color: var(--gray);
}

/* ----------------------------------------------------
   Who We Serve
   ---------------------------------------------------- */
.who {
	background: var(--black);
}

/* Who We Serve Grid (Front Page) */
.who-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 60px;
}

.who-card {
	border: 1px solid var(--mid);
	padding: 40px;
	background: var(--dark);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: border-color 0.2s ease, background 0.25s ease;
	min-height: 340px;
}

.who-card:hover {
	border-color: var(--orange);
	background: var(--mid);
}

.who-card .who-placeholder-icon {
	font-size: 36px;
	margin-bottom: 16px;
	color: var(--orange);
	display: block;
}

.who-card .who-bar {
	width: 36px;
	height: 3px;
	background: var(--orange);
	margin-bottom: 20px;
	transition: width 0.3s ease;
}

.who-card:hover .who-bar {
	width: 52px;
}

.who-card-btn {
	padding: 10px 20px;
	font-size: 12px;
	text-decoration: none;
	text-align: center;
	display: block;
	width: 100%;
}

.who-rows {
	display: flex;
	flex-direction: column;
	gap: 60px;
	margin-top: 60px;
}

.who-row {
	display: flex;
	align-items: stretch;
	gap: 40px;
	min-height: 380px;
}

.who-row:nth-child(even) {
	flex-direction: row-reverse;
}

.who-row-image {
	flex: 1.2;
	position: relative;
	overflow: hidden;
	border: 1px solid var(--mid);
	background: var(--dark);
	display: flex;
	align-items: center;
	justify-content: center;
}

.who-row-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
	position: relative;
	z-index: 2;
}

.who-row-img-placeholder {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--dark), var(--mid));
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.who-placeholder-icon {
	font-size: 80px;
	opacity: 0.25;
	color: var(--orange);
	display: flex;
	align-items: center;
	justify-content: center;
}

.who-row:hover .who-row-img {
	transform: scale(1.05);
}

.who-row-card {
	flex: 1;
	background: var(--dark);
	padding: 48px;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border: 1px solid var(--mid);
	transition: background 0.25s ease, border-color 0.25s ease;
}

.who-row-card:hover {
	background: var(--mid);
	border-color: var(--orange);
}

.who-card-stripe {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: repeating-linear-gradient(
		-45deg,
		var(--orange),
		var(--orange) 6px,
		transparent 6px,
		transparent 12px
	);
	opacity: 0;
	transition: opacity 0.25s ease;
}

.who-row-card:hover .who-card-stripe {
	opacity: 1;
}

.who-num {
	font-size: 48px;
	font-weight: 700;
	color: rgba(240, 96, 0, 0.15);
	line-height: 1;
	margin-bottom: 16px;
	letter-spacing: -1px;
}

.who-name {
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 1px;
	color: var(--white);
	margin-bottom: 8px;
}

.who-desc {
	font-size: 14px;
	line-height: 1.6;
	color: var(--light);
	margin-bottom: 20px;
}

.who-scope-label {
	font-family: 'Oswald', sans-serif;
	font-size: 10px;
	letter-spacing: 2px;
	color: var(--orange);
	text-transform: uppercase;
	margin-bottom: 12px;
	font-weight: 500;
}

.who-scope-content {
	border-top: 1px solid var(--mid);
	padding-top: 16px;
}

.who-scope-content ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.who-scope-content li {
	font-size: 13px;
	color: var(--gray);
	display: flex;
	gap: 8px;
	align-items: flex-start;
	line-height: 1.5;
}

.who-scope-content li::before {
	content: '→';
	color: var(--orange);
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	flex-shrink: 0;
}

/* ----------------------------------------------------
   Team Profiles
   ---------------------------------------------------- */
.team {
	background: var(--black);
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	margin-top: 60px;
}

.team-card {
	background: var(--dark);
	padding: 44px 36px;
	position: relative;
	overflow: hidden;
	transition: background 0.25s ease;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}

.team-card:hover {
	background: var(--mid);
}

.team-card-stripe {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: repeating-linear-gradient(
		-45deg,
		var(--orange),
		var(--orange) 6px,
		transparent 6px,
		transparent 12px
	);
	opacity: 0;
	transition: opacity 0.25s ease;
}

.team-card:hover .team-card-stripe {
	opacity: 1;
}

.team-num {
	font-size: 64px;
	font-weight: 700;
	color: rgba(240, 96, 0, 0.12);
	position: absolute;
	top: 20px;
	right: 20px;
	line-height: 1;
}

.team-init {
	width: 52px;
	height: 52px;
	background: var(--orange);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 20px;
}

.team-name {
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 1px;
	color: var(--white);
	margin-bottom: 4px;
}

.team-role {
	font-size: 12px;
	letter-spacing: 2px;
	color: var(--orange);
	margin-top: 4px;
}

/* ----------------------------------------------------
   Contact Form & Info
   ---------------------------------------------------- */
.contact {
	background: var(--black);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	margin-top: 60px;
	align-items: start;
}

.contact-box {
	background: var(--dark);
	padding: 48px;
	border: 1px solid var(--mid);
}

.contact-item {
	display: flex;
	gap: 16px;
	padding: 20px 0;
	border-bottom: 1px solid var(--mid);
}

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

.c-key {
	font-size: 10px;
	letter-spacing: 3px;
	color: var(--gray);
	min-width: 90px;
	padding-top: 3px;
	text-transform: uppercase;
}

.c-val {
	font-size: 16px;
	letter-spacing: 1px;
	color: var(--white);
}

.c-val.orange {
	color: var(--orange);
}

input, textarea, select {
	width: 100%;
	background: var(--dark);
	border: 1px solid var(--mid);
	color: var(--white);
	font-size: 14px;
	font-weight: 300;
	padding: 14px 18px;
	outline: none;
	transition: border-color 0.2s ease;
	margin-bottom: 12px;
}

input:focus, textarea:focus, select:focus {
	border-color: var(--orange);
}

textarea {
	resize: vertical;
	min-height: 120px;
}

::placeholder {
	color: var(--steel);
}

select option {
	background: var(--dark);
}

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

.submit-btn {
	background: var(--orange);
	color: var(--black);
	border: none;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 4px;
	padding: 18px 48px;
	cursor: pointer;
	width: 100%;
	transition: background 0.2s ease;
}

.submit-btn:hover {
	background: var(--orange-hot);
}

/* Checkbox & Legal Agreement Styling */
.form-agree-row {
	margin-top: 18px;
	margin-bottom: 24px;
	text-align: left;
}

.form-agree-label {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
	user-select: none;
}

.form-agree-label input[type="checkbox"] {
	appearance: none !important;
	-webkit-appearance: none !important;
	width: 18px !important;
	height: 18px !important;
	min-width: 18px !important;
	min-height: 18px !important;
	max-width: 18px !important;
	max-height: 18px !important;
	padding: 0 !important;
	margin: 0 !important;
	margin-top: 3px !important;
	border: 1px solid var(--mid) !important;
	background: var(--dark) !important;
	border-radius: 2px !important;
	cursor: pointer !important;
	position: relative !important;
	flex-shrink: 0 !important;
	transition: all 0.2s ease !important;
	outline: none !important;
	box-sizing: border-box !important;
}

.form-agree-label input[type="checkbox"]:hover {
	border-color: var(--orange) !important;
	background: rgba(240, 96, 0, 0.05) !important;
}

.form-agree-label input[type="checkbox"]:checked {
	background: var(--orange) !important;
	border-color: var(--orange) !important;
}

.form-agree-label input[type="checkbox"]:checked::after {
	content: '';
	position: absolute !important;
	left: 5px !important;
	top: 1px !important;
	width: 5px !important;
	height: 9px !important;
	border: solid var(--black) !important;
	border-width: 0 2px 2px 0 !important;
	transform: rotate(45deg) !important;
}

.form-agree-text {
	font-family: 'Source Sans 3', sans-serif;
	font-size: 13px;
	line-height: 1.5;
	color: var(--gray);
	text-align: left;
}

.form-agree-text a {
	color: var(--orange);
	text-decoration: none;
	border-bottom: 1px dotted rgba(240, 96, 0, 0.4);
	transition: color 0.2s ease, border-color 0.2s ease;
}

.form-agree-text a:hover {
	color: var(--orange-hot);
	border-bottom-color: var(--orange-hot);
}

/* ----------------------------------------------------
   Premium Theme Footer
   ---------------------------------------------------- */
.footer-section {
	background: #0A0A0A;
	padding: 0;
}

.footer-main-container {
	padding: 56px 60px 0;
	border-top: 4px solid var(--orange);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 56px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand-col {
	display: flex;
	flex-direction: column;
}

.footer-logo {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 3px;
	color: var(--white);
	margin-bottom: 4px;
}

.footer-logo span {
	color: var(--orange);
}

.footer-subtitle {
	font-size: 9px;
	letter-spacing: 3px;
	color: rgba(170, 170, 170, 0.35);
	margin-bottom: 14px;
}

.footer-desc {
	font-size: 12px;
	line-height: 1.8;
	color: rgba(170, 170, 170, 0.3);
}

.footer-meta-info {
	margin-top: 16px;
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.footer-meta-info div {
	font-family: 'Oswald', sans-serif;
	font-size: 10px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(240, 96, 0, 0.5);
}

.footer-link-col {
	display: flex;
	flex-direction: column;
}

.footer-heading {
	font-size: 8px;
	letter-spacing: 4px;
	color: var(--orange);
	opacity: 0.6;
	margin-bottom: 16px;
}

.footer-link-col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.footer-link-col a {
	font-size: 12px;
	color: rgba(170, 170, 170, 0.3);
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-link-col a:hover {
	color: rgba(170, 170, 170, 0.7);
}

.footer-bottom-bar {
	padding: 24px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-copyright {
	font-size: 10px;
	color: rgba(170, 170, 170, 0.2);
}

.footer-legal-links {
	font-size: 10px;
	font-family: 'Source Sans 3', sans-serif;
	color: rgba(170, 170, 170, 0.25);
}

.footer-legal-links a {
	color: rgba(170, 170, 170, 0.35);
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-legal-links a:hover {
	color: var(--orange);
}

.footer-domain {
	font-family: 'Source Sans 3', sans-serif;
	font-size: 10px;
	letter-spacing: 2px;
	color: rgba(240, 96, 0, 0.3);
	text-transform: uppercase;
}

/* ----------------------------------------------------
   About Page — Full Hero
   ---------------------------------------------------- */
.about-full-hero {
	min-height: 82vh;
	background-color: var(--black);
	background-size: cover;
	background-position: center top;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
	overflow: hidden;
	padding: 0 !important;
}

.about-full-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(10, 10, 10, 1) 0%,
		rgba(10, 10, 10, 0.75) 45%,
		rgba(10, 10, 10, 0.25) 100%
	);
	z-index: 1;
}

.about-full-hero-content {
	position: relative;
	z-index: 2;
	padding: 80px 60px 64px;
	max-width: 900px;
}

.about-full-hero-title {
	font-family: 'Oswald', sans-serif;
	font-size: clamp(44px, 6.5vw, 92px);
	font-weight: 700;
	line-height: 0.95;
	letter-spacing: -1px;
	color: var(--white);
	text-transform: uppercase;
	margin-top: 16px;
	margin-bottom: 24px;
}

.about-full-hero-title span {
	color: var(--orange);
}

.about-full-hero-sub {
	font-family: 'Source Sans 3', sans-serif;
	font-size: 17px;
	line-height: 1.75;
	color: var(--light);
	font-weight: 300;
	max-width: 580px;
	margin-bottom: 32px;
}

.about-hero-badges {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.about-hero-badge-item {
	font-family: 'Oswald', sans-serif;
	font-size: 10px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--orange);
	border: 1px solid rgba(240, 96, 0, 0.4);
	padding: 7px 14px;
}

.about-full-hero-stripe {
	height: 6px;
	background: repeating-linear-gradient(
		-45deg,
		var(--orange),
		var(--orange) 10px,
		rgba(10, 10, 10, 0.8) 10px,
		rgba(10, 10, 10, 0.8) 20px
	);
	position: relative;
	z-index: 2;
}

/* ----------------------------------------------------
   About Page — Pillar Rows
   ---------------------------------------------------- */
.about-pillars {
	background: var(--black);
	padding: 0 60px 100px !important;
}

.about-pillar-row {
	display: grid;
	grid-template-columns: 72px 1fr 1fr;
	gap: 52px;
	align-items: start;
	padding: 72px 0;
	border-bottom: 1px solid var(--mid);
}

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

.about-pillar-label {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 6px;
}

.pillar-num {
	font-family: 'Oswald', sans-serif;
	font-size: 44px;
	font-weight: 700;
	color: rgba(240, 96, 0, 0.2);
	line-height: 1;
	letter-spacing: -2px;
}

.pillar-bar {
	width: 2px;
	height: 48px;
	background: linear-gradient(to bottom, var(--orange), transparent);
	margin-top: 12px;
}

.about-pillar-heading {
	font-family: 'Oswald', sans-serif;
	font-size: 26px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--white);
	letter-spacing: 1px;
	margin-bottom: 20px;
	line-height: 1.15;
}

.about-pillar-desc {
	font-family: 'Source Sans 3', sans-serif;
	font-size: 15px;
	line-height: 1.85;
	color: var(--light);
	font-weight: 300;
}

.about-pillar-desc strong {
	color: var(--white);
	font-weight: 400;
}

/* Featured image panel (Pillar 01) */
.about-pillar-image-wrap {
	position: relative;
	overflow: hidden;
	height: 380px;
	border: 1px solid var(--mid);
}

.about-pillar-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.5s ease;
}

.about-pillar-image-wrap:hover .about-pillar-img {
	transform: scale(1.04);
}

.pillar-img-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(10,10,10,0.5), transparent 70%);
	pointer-events: none;
}

.pillar-img-badge {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(10, 10, 10, 0.85);
	backdrop-filter: blur(8px);
	padding: 14px 20px;
	display: flex;
	gap: 20px;
	border-top: 1px solid var(--mid);
}

.pillar-img-badge span {
	font-family: 'Oswald', sans-serif;
	font-size: 10px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: rgba(240, 96, 0, 0.7);
}

/* Placeholder when no featured image is set */
.about-pillar-img-placeholder {
	height: 380px;
	background: var(--dark);
	border: 1px solid var(--mid);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

.pillar-placeholder-mark {
	font-family: 'Oswald', sans-serif;
	font-size: 140px;
	font-weight: 700;
	color: rgba(240, 96, 0, 0.06);
	line-height: 1;
	letter-spacing: -4px;
}

.pillar-placeholder-hint {
	font-size: 12px;
	color: var(--gray);
	letter-spacing: 1px;
	text-align: center;
	padding: 0 24px;
}

/* Stats block (Pillar 02) */
.pillar-stat-stack {
	display: flex;
	flex-direction: column;
	gap: 2px;
	height: 100%;
	min-height: 280px;
}

.pillar-stat {
	background: var(--dark);
	border: 1px solid var(--mid);
	padding: 28px 32px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
	transition: background 0.25s ease, border-color 0.25s ease;
}

.pillar-stat:hover {
	background: var(--mid);
	border-color: var(--orange);
}

.pillar-stat-num {
	font-family: 'Oswald', sans-serif;
	font-size: 52px;
	font-weight: 700;
	color: var(--white);
	line-height: 1;
}

.pillar-stat-num em {
	font-style: normal;
	color: var(--orange);
	font-size: 32px;
}

.pillar-stat-lbl {
	font-family: 'Oswald', sans-serif;
	font-size: 10px;
	letter-spacing: 3px;
	color: var(--gray);
	text-transform: uppercase;
}

/* Tag chips (Pillar 03) */
.pillar-tags-wrap {
	display: flex;
	align-items: flex-start;
	padding-top: 4px;
}

.pillar-tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-content: flex-start;
}

.pillar-tag {
	font-family: 'Oswald', sans-serif;
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--orange);
	border: 1px solid rgba(240, 96, 0, 0.35);
	padding: 10px 18px;
	transition: background 0.2s ease, border-color 0.2s ease;
	cursor: default;
}

.pillar-tag:hover {
	background: rgba(240, 96, 0, 0.08);
	border-color: rgba(240, 96, 0, 0.6);
}



/* ----------------------------------------------------
   Leadership & Modals
   ---------------------------------------------------- */
.team-photo-wrap {
	width: 100%;
	height: 280px;
	background: var(--mid);
	border-bottom: 1px solid var(--mid);
	margin-bottom: 24px;
	overflow: hidden;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	position: relative;
}

.team-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	transition: transform 0.4s ease;
}

.clickable-team-card:hover .team-photo {
	transform: scale(1.05);
}

.clickable-team-card {
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}

.team-short-bio {
	font-size: 13px;
	line-height: 1.6;
	color: var(--light);
	margin-top: 14px;
	margin-bottom: 20px;
	font-family: 'Source Sans 3', sans-serif;
	font-weight: 300;
	text-align: left;
}

.team-bio-btn {
	padding: 10px 20px;
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	width: auto;
	margin-top: auto;
}

/* Modals */
.team-bio-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.team-bio-modal.active {
	opacity: 1;
	visibility: visible;
}

.modal-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(10, 10, 10, 0.85);
	backdrop-filter: blur(8px);
}

.modal-content {
	background: var(--dark);
	border: 1px solid var(--mid);
	width: 90%;
	max-width: 800px;
	position: relative;
	z-index: 10;
	padding: 48px;
	transform: scale(0.9);
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.team-bio-modal.active .modal-content {
	transform: scale(1);
}

.modal-close-btn {
	position: absolute;
	top: 24px;
	right: 24px;
	background: transparent;
	border: none;
	color: var(--light);
	font-size: 36px;
	line-height: 1;
	cursor: pointer;
	transition: color 0.2s ease;
	outline: none;
}

.modal-close-btn:hover {
	color: var(--orange);
}

.modal-grid {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 40px;
	align-items: start;
}

.modal-photo-col {
	width: 240px;
	height: 320px;
	background: var(--mid);
	border: 1px solid var(--mid);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-team-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.modal-team-init {
	font-family: 'Oswald', sans-serif;
	font-size: 80px;
	font-weight: 700;
	color: var(--black);
	background: var(--orange);
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-sec-label {
	font-size: 11px;
	letter-spacing: 3px;
	color: var(--orange);
	text-transform: uppercase;
	margin-bottom: 8px;
}

.modal-team-name {
	font-size: 32px;
	font-weight: 700;
	color: var(--white);
	line-height: 1.1;
}

.modal-team-role {
	font-size: 14px;
	letter-spacing: 2px;
	color: var(--gray);
	text-transform: uppercase;
	margin-top: 4px;
}

.modal-bio-bar {
	width: 52px;
	height: 3px;
	background: var(--orange);
	margin: 24px 0;
}

.modal-team-full-bio {
	font-size: 15px;
	line-height: 1.8;
	color: var(--light);
	font-family: 'Source Sans 3', sans-serif;
	font-weight: 300;
	text-align: left;
}

/* ----------------------------------------------------
   Animations
   ---------------------------------------------------- */
@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateX(-20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ----------------------------------------------------
   CTA Banner — About, Services, Who We Serve Pages
   ---------------------------------------------------- */
.cta-banner {
	background: var(--dark);
	border-top: 1px solid var(--mid);
	border-bottom: 1px solid var(--mid);
	padding: 0 !important;
	position: relative;
}

.cta-banner-stripe-top {
	height: 5px;
	background: repeating-linear-gradient(
		-45deg,
		var(--orange),
		var(--orange) 10px,
		transparent 10px,
		transparent 20px
	);
}

.cta-banner-stripe-bottom {
	height: 5px;
	background: repeating-linear-gradient(
		-45deg,
		var(--orange),
		var(--orange) 10px,
		transparent 10px,
		transparent 20px
	);
}

.cta-banner-inner {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 60px;
	align-items: center;
	padding: 72px 60px;
}

.cta-banner-left {
	max-width: 640px;
}

.cta-eyebrow {
	font-family: 'Oswald', sans-serif;
	font-size: 10px;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.cta-eyebrow::before {
	content: '//';
	font-weight: 400;
}

.cta-headline {
	font-family: 'Oswald', sans-serif;
	font-size: clamp(32px, 4vw, 56px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.5px;
	color: var(--white);
	text-transform: uppercase;
	margin-bottom: 20px;
}

.cta-headline span {
	color: var(--orange);
	display: block;
}

.cta-sub {
	font-family: 'Source Sans 3', sans-serif;
	font-size: 15px;
	line-height: 1.75;
	color: var(--gray);
	font-weight: 300;
}

/* Right column — buttons + trust */
.cta-banner-right {
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-width: 280px;
}

/* Primary CTA — Get a Quote */
.cta-btn-primary {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	background: var(--orange);
	color: var(--black);
	font-family: 'Oswald', sans-serif;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	text-decoration: none;
	padding: 20px 36px;
	transition: background 0.2s ease, transform 0.15s ease;
	white-space: nowrap;
}

.cta-btn-primary:hover {
	background: var(--orange-hot);
	transform: translateY(-1px);
}

.cta-btn-icon {
	font-size: 14px;
}

/* Secondary CTA — Call Now */
.cta-btn-secondary {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	background: transparent;
	border: 1px solid var(--steel);
	color: var(--white);
	text-decoration: none;
	padding: 16px 36px;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.cta-btn-secondary:hover {
	border-color: var(--orange);
	background: rgba(240, 96, 0, 0.06);
}

.cta-btn-label {
	font-family: 'Oswald', sans-serif;
	font-size: 10px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--gray);
}

.cta-btn-phone {
	font-family: 'Oswald', sans-serif;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--white);
}

/* Trust badges row */
.cta-trust {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 4px;
}

.cta-trust-item {
	font-family: 'Source Sans 3', sans-serif;
	font-size: 11px;
	letter-spacing: 1px;
	color: rgba(170, 170, 170, 0.45);
}

/* ----------------------------------------------------
   Legal Pages (Terms & Privacy)
   ---------------------------------------------------- */
.legal-hero {
	background: var(--dark);
	border-bottom: 1px solid var(--mid);
	padding: 100px 60px 60px;
	position: relative;
	overflow: hidden;
}

.legal-hero-stripe {
	height: 6px;
	background: repeating-linear-gradient(
		-45deg,
		var(--orange),
		var(--orange) 10px,
		var(--black) 10px,
		var(--black) 20px
	);
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

.legal-hero-inner {
	max-width: 900px;
	margin: 0 auto;
}

.legal-subtitle {
	font-family: 'Oswald', sans-serif;
	font-size: 11px;
	letter-spacing: 3px;
	color: var(--orange);
	text-transform: uppercase;
	margin-bottom: 12px;
	display: block;
}

.legal-title {
	font-family: 'Oswald', sans-serif;
	font-size: clamp(36px, 5vw, 56px);
	font-weight: 700;
	color: var(--white);
	text-transform: uppercase;
	line-height: 1.1;
}

.legal-meta {
	font-family: 'Source Sans 3', sans-serif;
	font-size: 13px;
	color: var(--gray);
	margin-top: 16px;
}

.legal-content-section {
	padding: 80px 60px;
	background: var(--black);
}

.legal-content-inner {
	max-width: 900px;
	margin: 0 auto;
	font-family: 'Source Sans 3', sans-serif;
	font-size: 16px;
	line-height: 1.85;
	color: var(--light);
	font-weight: 300;
}

.legal-content-inner p {
	margin-bottom: 24px;
}

.legal-content-inner h2 {
	font-family: 'Oswald', sans-serif;
	font-size: 24px;
	font-weight: 600;
	color: var(--white);
	margin-top: 48px;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-bottom: 1px solid var(--mid);
	padding-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.legal-content-inner h2 span {
	color: var(--orange);
}

.legal-content-inner h3 {
	font-family: 'Oswald', sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: var(--white);
	margin-top: 32px;
	margin-bottom: 16px;
	text-transform: uppercase;
}

.legal-content-inner ul,
.legal-content-inner ol {
	margin-bottom: 30px;
	padding-left: 24px;
}

.legal-content-inner li {
	margin-bottom: 12px;
}

.legal-content-inner strong {
	color: var(--white);
	font-weight: 500;
}

.legal-content-inner a {
	color: var(--orange);
	text-decoration: none;
	border-bottom: 1px dotted rgba(240, 96, 0, 0.4);
	transition: color 0.2s ease, border-color 0.2s ease;
}

.legal-content-inner a:hover {
	color: var(--orange-hot);
	border-bottom-color: var(--orange-hot);
}

.legal-notice-box {
	background: var(--dark);
	border-left: 4px solid var(--orange);
	padding: 24px 30px;
	margin: 40px 0;
	color: var(--white);
}

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

.legal-table-wrap {
	overflow-x: auto;
	margin: 36px 0;
	border: 1px solid var(--mid);
}

.legal-table {
	width: 100%;
	border-collapse: collapse;
	font-family: 'Source Sans 3', sans-serif;
	font-size: 14px;
	text-align: left;
	color: var(--light);
}

.legal-table th,
.legal-table td {
	padding: 14px 20px;
	border: 1px solid var(--mid);
}

.legal-table th {
	background: var(--dark);
	color: var(--white);
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 1px;
}

.legal-table tr:nth-child(even) td {
	background: rgba(255, 255, 255, 0.02);
}

/* ----------------------------------------------------
   Media Queries & Responsiveness
   ---------------------------------------------------- */

@media (max-width: 1024px) {
	section {
		padding: 80px 40px;
	}

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

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

	.how-step::after {
		display: none; /* Hide workflow arrows on smaller grids */
	}

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

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

	.stat-box {
		border-bottom: 1px solid var(--mid);
	}

	.stat-box:nth-child(2) {
		border-right: none;
	}

	.stat-box:nth-child(3),
	.stat-box:nth-child(4) {
		border-bottom: none;
	}

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

	/* About page tablet layout */
	.about-full-hero-content {
		padding: 60px 40px 48px;
	}

	.about-pillars {
		padding: 0 40px 80px !important;
	}

	.about-pillar-row {
		grid-template-columns: 56px 1fr;
		gap: 36px;
	}

	.about-pillar-image-wrap,
	.pillar-stat-stack,
	.pillar-tags-wrap {
		grid-column: 2;
	}

	.about-pillar-image-wrap {
		height: 280px;
	}

	.about-pillar-img-placeholder {
		height: 280px;
	}
}

@media (max-width: 768px) {
	nav {
		padding: 0 24px;
	}

	/* Toggle Button visible on mobile */
	.nav-toggle {
		display: flex;
	}

	.nav-toggle.active span:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	.nav-toggle.active span:nth-child(2) {
		opacity: 0;
	}

	.nav-toggle.active span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	/* Collapsible Nav Menu Container */
	.nav-container {
		position: absolute;
		top: 64px;
		left: 0;
		width: 100%;
		background: var(--dark);
		border-bottom: 1px solid var(--mid);
		flex-direction: column;
		padding: 30px 24px;
		gap: 24px;
		transform: translateY(-120%);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		pointer-events: none;
	}

	.nav-container.active {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.nav-links {
		flex-direction: column;
		align-items: center;
		width: 100%;
		gap: 16px;
	}

	.nav-cta {
		width: 100%;
		text-align: center;
	}

	.hero {
		padding: 60px 24px;
		min-height: auto;
	}

	.hero-bg-text {
		display: none; /* Hide large background rentals text on small displays */
	}

	.hero-title {
		font-size: clamp(48px, 8vw, 72px);
	}

	.hero-badge {
		margin-bottom: 20px;
	}

	.hero-badge-text {
		font-size: 10px;
		letter-spacing: 2px;
	}

	.hero-callout {
		margin-top: 40px;
		padding: 16px 20px;
		width: 100%;
	}

	.services-grid,
	.how-grid,
	.who-grid,
	.team-grid,
	.stats,
	.contact-grid,
	.about-grid,
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.who-rows {
		gap: 30px;
	}

	.who-row {
		flex-direction: column !important;
		gap: 20px;
		min-height: auto;
	}

	.who-row-image {
		height: 240px;
		flex: none;
	}

	.who-row-card {
		flex: none;
		padding: 32px 24px;
	}

	.stat-box {
		border-right: none;
		border-bottom: 1px solid var(--mid);
		padding: 30px;
	}

	.stat-box:last-child {
		border-bottom: none;
	}

	.contact-box {
		padding: 30px;
	}

	/* About page mobile layout */
	.about-full-hero {
		min-height: 70vh;
	}

	.about-full-hero-content {
		padding: 48px 24px 40px;
	}

	.about-pillars {
		padding: 0 24px 60px !important;
	}

	.about-pillar-row {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 48px 0;
	}

	.about-pillar-label {
		flex-direction: row;
		align-items: center;
		gap: 14px;
	}

	.pillar-bar {
		width: 40px;
		height: 2px;
		margin-top: 0;
		background: linear-gradient(to right, var(--orange), transparent);
	}

	.about-pillar-image-wrap,
	.about-pillar-img-placeholder {
		height: 220px;
	}

	.pillar-stat-stack {
		min-height: auto;
	}

	.footer-main-container {
		padding: 40px 24px 0;
	}

	.footer-grid {
		gap: 30px;
	}

	.footer-bottom-bar {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	/* CTA Banner mobile */
	.cta-banner-inner {
		grid-template-columns: 1fr;
		gap: 36px;
		padding: 56px 24px;
	}

	.cta-banner-right {
		min-width: auto;
		width: 100%;
	}

	.cta-btn-primary,
	.cta-btn-secondary {
		width: 100%;
	}

	/* Legal pages mobile */
	.legal-hero {
		padding: 60px 24px 40px;
	}

	.legal-content-section {
		padding: 48px 24px;
	}
}

@media (max-width: 480px) {
	section {
		padding: 60px 20px;
	}

	.hero-ctas {
		flex-direction: column;
		width: 100%;
	}

	.btn-primary, .btn-outline {
		width: 100%;
		text-align: center;
	}

	.form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.cta-headline {
		font-size: 30px;
	}
}
