/* ============================================================
   Generations Outdoor — Flexible Content Sections
   Matches: Figma design node 273-620
   ============================================================ */

/* ── Shared Tokens (orange-accent design system) ── */
:root {
	--fl-orange:      #FC8422;
	--fl-orange-dark: #c4650e;
	--fl-dark:        #000000;
	--fl-dark-2:      #031C31;
	--fl-dark-3: 	  #102D45;
	--fl-text-dark:   #1a1a1a;
	--fl-text-mid:    #3d3d3d;
	--fl-text-muted:  #666666;
	--fl-border:      #e2e2e2;
	--fl-bg-light:    #f9f9f9;
	--fl-white:       #ffffff;
}

/* ── Shared Elements ── */
.fl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.85rem);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 0.75em 1.6em;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
	max-width: 100%;
	box-sizing: border-box;
}
.fl-btn:focus-visible {
	outline: 3px solid var(--fl-orange);
	outline-offset: 3px;
}
.fl-btn--orange {
	background-color: var(--fl-orange);
	color: var(--fl-white);
	border-color: var(--fl-orange);
	text-align: center;
}
.fl-btn--orange:hover {
	background-color: var(--fl-orange-dark);
	border-color: var(--fl-orange-dark);
	color: var(--fl-white);
}
.fl-btn--outline-white {
	background-color: transparent;
	color: var(--fl-white);
	border-color: var(--fl-white);
}
.fl-btn--outline-white:hover {
	background-color: var(--fl-white);
	color: var(--fl-dark);
}
.fl-btn--lg {
	font-size: clamp(0.875rem, 0.8323rem + 0.2439vw, 1.125rem);
	padding: 10px 15px;
}
.fl-btn--dark {
	background-color: var(--fl-dark-2);
	color: var(--fl-white);
	border-color: var(--fl-dark);
}
.fl-btn--dark:hover {
	background-color: var(--fl-dark);
	border-color: var(--fl-dark);
	color: var(--fl-white);
}

.fl-eyebrow {
	font-size: clamp(0.875rem, 0.8537rem + 0.122vw, 1rem);
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--fl-orange);
	margin-bottom: 0.5rem;
	margin-left: auto;
	margin-right: auto;
}

.fl-section-title {
	font-family: var(--font-heading);
	font-size: clamp(1.375rem, 1.1019rem + 1.165vw, 2.5rem);
	font-weight: 700;
	text-transform: uppercase;
	color: var(--fl-orange);
	text-align: center;
	margin-bottom: clamp(1.5rem, 3.5vw, 2rem);
}

.fl-phone-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: clamp(0.75rem, 0.7rem + 0.2vw, 0.85rem);
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--fl-text-dark);
	text-decoration: none;
	transition: color 150ms ease;
}
.fl-phone-link:hover { color: var(--fl-orange); }
.fl-phone-link svg   { flex-shrink: 0; color: var(--fl-orange); }

/* ─────────────────────────────────────────────────────────────
   1. HERO SECTION
───────────────────────────────────────────────────────────── */
.fl-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: clamp(480px, 60vw, 720px);
	overflow: hidden;
	background-color: var(--fl-dark);
	color: var(--fl-white);
}

/* ── Background image carousel (sits behind the content) ── */
.fl-hero__bg-slider {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.fl-hero__bg {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 700ms ease-in-out;
}
/* Show first slide before JS initialises (no-JS fallback) */
.fl-hero__bg:first-child { opacity: 1; }
/* JS takes over: hide first-child default, show only .is-active */
.fl-hero__bg-slider.is-init .fl-hero__bg:first-child { opacity: 0; }
.fl-hero__bg-slider.is-init .fl-hero__bg.is-active    { opacity: 1; }

.fl-hero__bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.fl-hero__overlay {
	position: absolute;
	inset: 0;
	background-color: #000;
}


.fl-hero__content {
	position: relative;
	z-index: 1;
	padding-block: clamp(3rem, 10vw, 12rem);
	max-width: var(--content-width);
	width: 100%;
}

.fl-hero__eyebrow {
	font-size: clamp(1.5625rem, 1.4rem + 0.6vw, 1.875rem);
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--fl-orange);
	margin-bottom: 1rem;
}

.fl-hero__headline {
	font-family: var(--font-heading);
	font-size: clamp(1.6875rem, 0.924rem + 3.2576vw, 4.833125rem);
	font-weight: 800;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: var(--fl-white);
	margin-bottom: 1.25rem;
	max-width: 100%;
}

.fl-hero__subheadline {
	font-size: clamp(0.8125rem, 0.676rem + 0.5825vw, 1.375rem);
	font-weight: 400;
	font-style: italic;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.85);
	margin-bottom: 2rem;
	max-width: 60ch;
}

.fl-hero__actions {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: stretch;
	max-width: fit-content;
	gap: 1rem;
}

.fl-hero__phone {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: clamp(0.75rem, 0.7rem + 0.2vw, 0.85rem);
	font-weight: 600;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.9);
	text-decoration: none;
	transition: color 150ms ease;
}
.fl-hero__phone:hover  { color: var(--fl-orange); }
.fl-hero__phone svg    { color: var(--fl-orange); flex-shrink: 0; }

/* ─────────────────────────────────────────────────────────────
   2. INTRO + IMAGE GRID
───────────────────────────────────────────────────────────── */
.fl-intro-images {
	padding-block: clamp(3rem, 5vw, 5rem);
	background-color: var(--fl-dark-3);
}

.fl-intro-images__text {
	text-align: center;
	max-width: 1590px;
	margin-inline: auto;
	margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.fl-intro-images__heading {
	font-family: var(--font-heading);
	font-size: clamp(1.5625rem, 1.4878rem + 0.4268vw, 2rem);
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--fl-orange);
	margin-bottom: 1.25rem;
}

.fl-intro-images__body {
	font-size: clamp(0.8125rem, 0.676rem + 0.5825vw, 1.375rem);
	color: var(--fl-white);
	line-height: 1.75;
}
.fl-intro-images__body p { 
	max-width: 1583px; 
	width: 100%; 
	margin-inline: auto; 
}
.fl-intro-images__body p + p {
	 margin-top: 0.75rem; 
}

.fl-intro-images__grid {
	display: grid;
	gap: clamp(0.75rem, 1.5vw, 1.25rem);
}
.fl-intro-images__grid--1-cols { grid-template-columns: 1fr; }
.fl-intro-images__grid--2-cols { grid-template-columns: 1fr 1fr; }
.fl-intro-images__grid--3-cols { grid-template-columns: 1fr 1fr 1fr; }

.fl-intro-images__img-wrap {
	overflow: hidden;
	border-radius: 4px;
	aspect-ratio: 5/3;
}
.fl-intro-images__img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease;
}
.fl-intro-images__img-wrap:hover img { transform: scale(1.04); }

/* ─────────────────────────────────────────────────────────────
   3. SERVICES TABS
───────────────────────────────────────────────────────────── */
.fl-services-tabs {
	background-color: var(--fl-dark-2);
	padding-top: clamp(2.5rem, 5vw, 5rem);
	padding-bottom: clamp(2.5rem, 5vw, 5rem);
}

.fl-services-tabs__header {
	text-align: center;
	padding-bottom: clamp(0.5rem, 1vw, 1rem);
}

/* Service panels — all visible, stacked */
.fl-services-tabs__panel {
	display: block;
}

/* 2×2 card grid
   ┌──────────────┬──────────────┐
   │  info        │  main-img    │  ← border-bottom on both creates
   ├──────────────┴──────────────┤    the single horizontal divider
   │  side-img    │  features    │
   └──────────────┴──────────────┘
   No vertical divider — contrasting backgrounds (white / photo / orange)
   create natural column separation without a hard border line. */
/* Default layout:  info | main-img  /  side-img | features
   Odd panels flip columns: main-img | info  /  features | side-img */
.fl-services-tabs__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto auto;
	grid-template-areas:
		"info     main-img"
		"side-img features";
	container-type: inline-size; /* enables cqi units on children */
	border-radius: 8px;
	overflow: hidden;
	margin-top: clamp(2rem, 3.5vw, 3rem);
	margin-bottom: clamp(2rem, 3.5vw, 3rem);
}
.fl-services-tabs__panels > .fl-services-tabs__panel:first-child .fl-services-tabs__grid {
	margin-top: 0;
}
/* Odd panels: swap columns */
.fl-services-tabs__panels > .fl-services-tabs__panel:nth-child(even) .fl-services-tabs__grid {
	grid-template-areas:
		"main-img info"
		"features side-img";
}

/* Assign grid areas */
.fl-services-tabs__info     { grid-area: info; }
.fl-services-tabs__main-img { grid-area: main-img; }
.fl-services-tabs__side-img { grid-area: side-img; }
.fl-services-tabs__features { grid-area: features; }

/* TOP-LEFT: info */
.fl-services-tabs__info {
	padding: clamp(1.75rem, 3vw, 2.75rem);
	background-color: var(--fl-white);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* Images: height = 50% of grid width (= column width) → always square */
.fl-services-tabs__main-img {
	position: relative;
	overflow: hidden;
	height: 40cqi;
}

.fl-services-tabs__side-img {
	position: relative;
	overflow: hidden;
	height: 40cqi;
}

.fl-services-tabs__main-img img,
.fl-services-tabs__side-img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* BOTTOM-RIGHT: feature lists on orange background */
.fl-services-tabs__features {
	background-color: var(--fl-orange);
	padding: clamp(1.75rem, 3vw, 2.75rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* Left column */
.fl-services-tabs__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1rem;
}
.fl-badge {
	display: inline-block;
	font-size: clamp(0.875rem, 0.8537rem + 0.122vw, 1rem);
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: 3px;
	background-color: #ff66001a;
	color: var(--fl-orange);
	border: 1px solid var(--fl-orange);
}

.fl-services-tabs__service-title {
	font-family: var(--font-heading);
	font-size: clamp(1.5625rem, 1.3955rem + 0.3475vw, 1.8125rem);
	font-weight: 800;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: var(--fl-dark-2);
	line-height: 1.1;
	margin-bottom: 1.25rem;
}

.fl-services-tabs__title-bar {
	width: 56px;
	height: 4px;
	background-color: var(--fl-orange);
	border-radius: 2px;
	margin-bottom: 1.25rem;
}

.fl-services-tabs__description {
	font-size: clamp(0.8125rem, 0.676rem + 0.5825vw, 1.375rem);
	color: var(--fl-dark);
	line-height: 1.75;
	margin-bottom: 1.75rem;
}
.fl-services-tabs__description p { margin-bottom: 0.75rem; max-width: none; }

.fl-services-tabs__actions {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	max-width: 100%;
	width: fit-content;
	gap: 1rem;
}

/* Right column: feature lists */
.fl-feature-list {
	margin-bottom: 2rem;
}
.fl-feature-list:last-child {
	padding-top: 2rem;
	margin-bottom: 0;
	border-top: 1px solid #E2E5EC;
}

.fl-feature-list__title {
	font-family: 'Poppins', system-ui, sans-serif;
	font-size: clamp(1rem, 0.9573rem + 0.2439vw, 1.25rem);
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--fl-orange);
	line-height: 1.2;
	margin-bottom: 1rem;
	/* Title text + extending line on the same row */
	display: flex;
	align-items: center;
	gap: 0.75rem;
	overflow: hidden;
}
/* .fl-feature-list__title::after {
	content: '';
	flex: 1 0 1rem;
	height: 1px;
	background: var(--fl-border);
} */

.fl-feature-list__items {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}
.fl-feature-list__items li {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
	font-size: clamp(0.875rem, 0.811rem + 0.3659vw, 1.25rem);
	color: var(--fl-dark);
	line-height: 1.5;
	max-width: none;
}
.fl-feature-list__items li::before {
	content: '';
	display: block;
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	border: 2px solid var(--fl-orange);
	border-radius: 3px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23e87e1a' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-size: 10px;
	background-repeat: no-repeat;
	background-position: center;
	margin-top: 6px;
}

/* Feature lists on the orange background — override colours for contrast */
.fl-services-tabs__features .fl-feature-list__title {
	color: var(--fl-dark-2);
}
.fl-services-tabs__features .fl-feature-list__title::after {
	background: rgba(3, 28, 49, 0.2);
}
.fl-services-tabs__features .fl-feature-list:last-child {
	border-top-color: rgba(3, 28, 49, 0.2);
}
.fl-services-tabs__features .fl-feature-list__items li {
	color: var(--fl-white);
}
/* Dark checkbox icon for orange bg (orange stroke → dark-2 stroke) */
.fl-services-tabs__features .fl-feature-list__items li::before {
	border-color: var(--fl-dark-2);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23031C31' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ─────────────────────────────────────────────────────────────
   4. SUPPORT CARDS
───────────────────────────────────────────────────────────── */
.fl-support-cards {
	background-color: var(--fl-orange);
	padding-block: clamp(3rem, 5vw, 5rem);
}

.fl-support-cards__grid {
	display: grid;
	gap: clamp(1.25rem, 2.5vw, 2rem);
}
.fl-support-cards__grid--1-cols { grid-template-columns: 1fr; }
.fl-support-cards__grid--2-cols { grid-template-columns: 1fr 1fr; }
.fl-support-cards__grid--3-cols { grid-template-columns: repeat(3, 1fr); }
.fl-support-cards__grid--4-cols { grid-template-columns: repeat(4, 1fr); }

.fl-support-card {
	background-color: var(--fl-dark-2);
	border: 1px solid var(--fl-border);
	border-radius: 6px;
	padding: clamp(1.5rem, 3vw, 2.25rem);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	transition: 0.3s ease-in-out;
}

.fl-support-card:hover {
	border: 1px solid var(--fl-orange);
	cursor: pointer;
}

.fl-support-cards .fl-section-title {
	color: var(--fl-dark-2);
}

/* Icon + title side by side */
.fl-support-card__header {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.fl-support-card__icon {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--fl-orange);
}
.fl-support-card__icon img {
	width: 80px;
	height: 80px;
	object-fit: contain;
}
.fl-support-card__icon--placeholder {
	border: 2px solid var(--fl-orange);
	border-radius: 50%;
	color: var(--fl-orange);
}

.fl-support-card__title {
	font-family: var(--font-heading);
	font-size: clamp(1.5625rem, 1.4878rem + 0.4268vw, 2rem);
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--fl-white);
	line-height: 176.3%;
}

.fl-support-card__description {
	font-family: var(--font-sans);
	font-size: clamp(0.8125rem, 0.676rem + 0.5825vw, 1.375rem);
	text-align: justify;
	font-weight: 500;
	color: var(--fl-white);
	line-height: 213.8%;
	margin: 0;
	max-width: none;
}

/* ─────────────────────────────────────────────────────────────
   5. IMAGE + TEXT BLOCK
───────────────────────────────────────────────────────────── */
.fl-image-text {
	background-color: var(--fl-dark-2);
	padding-block: clamp(3rem, 5vw, 5rem);
}

.fl-image-text__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 5rem);
	align-items: stretch;
}

.fl-image-text.fl-image-text--image-right {
	background-color: var(--fl-dark-3);
}

/* Image left = default order */
.fl-image-text--image-left .fl-image-text__image-col  { order: 1; }
.fl-image-text--image-left .fl-image-text__text-col   { order: 2; }
/* Image right = swap */
.fl-image-text--image-right .fl-image-text__image-col { order: 2; }
.fl-image-text--image-right .fl-image-text__text-col  { order: 1; }

.fl-image-text__image-col {
	min-height: 280px;
}

.fl-image-text__image-wrap {
	position: relative;
	overflow: hidden;
	border-radius: 6px;
	height: 100%;
	min-height: 280px;
}
.fl-image-text__image-wrap img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.fl-image-text__heading {
	font-family: var(--font-heading);
	font-size: clamp(1.375rem, 1.1019rem + 1.165vw, 2.5rem);
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--fl-orange);
	margin-bottom: 0.75rem;
}

.fl-image-text__body__top {
	font-size: clamp(0.8125rem, 0.676rem + 0.5825vw, 1.375rem);
	color: var(--fl-white);
	line-height: 1.75;
	margin-bottom: 1rem;
	max-width: none;
}

.fl-image-text__eyebrow {
	font-size: clamp(0.8125rem, 0.676rem + 0.5825vw, 1.375rem);
	font-style: italic;
	font-weight: 600;
	color: var(--fl-orange);
	margin-bottom: 1rem;
	max-width: none;
}

/* Icon list (checkbox bullets — matches fl-feature-list__items) */
.fl-icon-list {
	list-style: none;
	padding: 0;
	margin: 0 0 1.25rem;
	display: flex;
	flex-direction: column;
}
.fl-icon-list li {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	font-size: clamp(0.875rem, 0.811rem + 0.3659vw, 1.25rem);
	font-weight: 500;
	color: var(--fl-white);
	line-height: 213.8%;
	max-width: none;
}
.fl-icon-list li::before {
	content: '';
	display: block;
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	border: 2px solid var(--fl-orange);
	border-radius: 3px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23e87e1a' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-size: 10px;
	background-repeat: no-repeat;
	background-position: center;
	margin-top: 12px;
}
.fl-icon-list__dot {
	display: none;
}

.fl-image-text__body {
	font-size: clamp(0.8125rem, 0.676rem + 0.5825vw, 1.375rem);
	color: var(--fl-white);
	line-height: 1.75;
	margin: 0;
	max-width: none;
}
.fl-image-text__body ul {
	list-style: none;
	padding: 0;
	margin: 0.75rem 0 0;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}
.fl-image-text__body ul li {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
	line-height: 1.5;
}
.fl-image-text__body ul li::before {
	content: '';
	display: block;
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	border: 2px solid var(--fl-orange);
	border-radius: 3px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23e87e1a' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-size: 10px;
	background-repeat: no-repeat;
	background-position: center;
	margin-top: 7px;
}

/* ─────────────────────────────────────────────────────────────
   6. PROCESS STEPS
───────────────────────────────────────────────────────────── */
.fl-process-steps {
	background-color: var(--fl-dark-2);
	padding-block: clamp(3rem, 5vw, 5rem);
}

.fl-process-steps__track {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	gap: clamp(0.5rem, 2vw, 1.5rem);
}

.fl-process-steps__connector {
	position: absolute;
	top: var( --connector-top, 53.5px );
	left: var( --connector-left, 175px );
	right: var( --connector-right, 185px );
	height: 0;
	border-top: 1px dashed var(--fl-white);
	z-index: 0;
}
/* Arrow head at the right end */
.fl-process-steps__connector::after {
	content: '';
	position: absolute;
	right: -8px;
	top: -7px;
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 10px solid var(--fl-white);
}

.fl-process-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex: 1;
	position: relative;
	z-index: 1;
}

.fl-process-step__icon-wrap {
	width: 107.67px;
	height: 107.67px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--fl-white);
	border: 2px solid var(--fl-orange);
	border-radius: 50%;
	margin-bottom: 0.875rem;
	color: var(--fl-dark);
	flex-shrink: 0;
	transition: border-color 250ms ease, background-color 250ms ease;
	-webkit-box-shadow: 0px 2.66px 2.66px 0px #1d1d1d4d; 
	box-shadow: 0px 2.66px 2.66px 0px #1d1d1d4d;
}
.fl-process-step:hover .fl-process-step__icon-wrap {
	background-color: var(--fl-orange);
}
.fl-process-step__icon-wrap img {
	width: 49px;
	height: 49px;
	object-fit: contain;
}
.fl-process-step__number {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--fl-orange);
}

.fl-process-step__label {
	font-size: clamp(1rem, 0.9787rem + 0.122vw, 1.125rem); /* 18px → 20px */
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--fl-orange);
	line-height: 1.4;
	max-width: fit-content;
	margin: 0 auto;
}

/* ─────────────────────────────────────────────────────────────
   7. CTA BANNER
───────────────────────────────────────────────────────────── */
.fl-cta-banner {
	position: relative;
	background-color: var(--fl-dark);
	color: var(--fl-white);
	overflow: hidden;
	padding-block: clamp(3.5rem, 7vw, 6rem);
	text-align: center;
}

.fl-cta-banner__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.fl-cta-banner__bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.fl-cta-banner__overlay {
	position: absolute;
	inset: 0;
	background-color: #000;
}

.fl-cta-banner__content {
	position: relative;
	z-index: 1;
	max-width: 1440px;
}

.fl-cta-banner__headline {
	font-family: var(--font-heading);
	font-size: clamp(1.75rem, 1.5rem + 2.5vw, 3.25rem);
	font-weight: 800;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	line-height: 1.05;
	margin-bottom: 1.25rem;
}
.fl-cta-banner__headline-white { color: var(--fl-white); }
.fl-cta-banner__headline-accent { color: var(--fl-orange); }

.fl-cta-banner__subtitle {
	font-size: clamp(1.125rem, 1.1037rem + 0.122vw, 1.25rem);
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--fl-white);
	margin-bottom: 0.625rem;
	max-width: none;
}

.fl-cta-banner__description {
	font-size: clamp(1.125rem, 1.1037rem + 0.122vw, 1.25rem);
	font-weight: 800;
	text-transform: uppercase;
	color: var(--fl-white);
	margin-bottom: 2rem;
	max-width: none;
}

.fl-cta-banner__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}
.fl-cta-banner__actions .fl-btn,
.fl-cta-banner__actions .fl-cta-banner__phone {
	width: clamp(260px, 45vw, 519px);
	justify-content: center;
}

.fl-cta-banner__text-link {
	font-size: clamp(1.25rem, 1.15rem + 0.4vw, 1.5625rem);
	font-weight: 600;
	letter-spacing: 0.08em;
	font-style: italic;
	text-transform: uppercase;
	color: var(--fl-orange);
	text-decoration: none;
	text-underline-offset: 3px;
	transition: color 150ms ease;
}

.fl-cta-banner__phone {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: clamp(0.75rem, 0.7rem + 0.2vw, 0.85rem);
	font-weight: 600;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.85);
	text-decoration: none;
	transition: color 150ms ease;
}
.fl-cta-banner__phone:hover { color: var(--fl-orange); }
.fl-cta-banner__phone svg   { color: var(--fl-orange); flex-shrink: 0; }

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
	/* Stack grid to single column: info → main img → features → side img */
	/* Reset template areas so order takes over for single-column stacking */
	.fl-services-tabs__grid,
	.fl-services-tabs__panels > .fl-services-tabs__panel:nth-child(even) .fl-services-tabs__grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		grid-template-areas: none;
	}
	.fl-services-tabs__info     { grid-area: auto; order: 1; }
	.fl-services-tabs__main-img { grid-area: auto; order: 2; height: 100cqi; }
	.fl-services-tabs__features { grid-area: auto; order: 3; }
	.fl-services-tabs__side-img { grid-area: auto; order: 4; height: 100cqi; border-bottom: none; }
}

@media (max-width: 768px) {
	.fl-hero__headline { font-size: clamp(1.75rem, 6vw, 2.5rem); }
	.fl-hero__actions {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}
	.fl-hero__actions .fl-btn { justify-content: center; }

	.fl-intro-images__grid--3-cols { grid-template-columns: 1fr; }
	.fl-intro-images__grid--2-cols { grid-template-columns: 1fr; }

	.fl-support-cards__grid--3-cols,
	.fl-support-cards__grid--4-cols { grid-template-columns: 1fr 1fr; }
	.fl-support-cards__grid--2-cols { grid-template-columns: 1fr; }

	.fl-support-card { padding: 1.25rem; }
	.fl-support-card__icon,
	.fl-support-card__icon img { width: 60px; height: 60px; }
	.fl-support-card__title { font-size: 1.25rem; line-height: 1.3; }
	.fl-support-card__description { line-height: 1.7; }

	.fl-image-text__inner {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.fl-image-text--image-right .fl-image-text__image-col { order: 1; }
	.fl-image-text--image-right .fl-image-text__text-col  { order: 2; }

	.fl-process-steps__track {
		flex-wrap: wrap;
		justify-content: center;
		gap: 1.5rem;
	}
	/* Connector visibility at mobile is handled by JS (row-wrap detection).
	   Force hide below 480px where steps always stack. */
	.fl-process-step { flex: 0 0 calc(33.33% - 1rem); }

	.fl-cta-banner__headline { font-size: clamp(1.5rem, 5vw, 2.25rem); }
	.fl-cta-banner__actions .fl-btn,
	.fl-cta-banner__actions .fl-cta-banner__phone { width: 100%; }

	.fl-services-tabs__info,
	.fl-services-tabs__features { padding: 1.5rem; }

	.fl-services-tabs__service-title { font-size: clamp(1.5rem, 5vw, 2rem); }

	/* Services actions: full-width buttons on mobile */
	.fl-services-tabs__actions {
		width: 100%;
		max-width: 100%;
	}
	.fl-services-tabs__actions .fl-btn { width: 100%; }
}

@media (max-width: 480px) {
	.fl-support-cards__grid--3-cols,
	.fl-support-cards__grid--4-cols { grid-template-columns: 1fr; }

	.fl-services-tabs__info,
	.fl-services-tabs__features { padding: 1.25rem; }

	.fl-services-tabs__service-title { font-size: 1.375rem; line-height: 1.2; }

	/* aspect-ratio: 1/1 keeps images square at all breakpoints — no min-height needed */

	.fl-support-card__header { flex-wrap: wrap; }
	.fl-support-card__icon,
	.fl-support-card__icon img { width: 48px; height: 48px; }
	.fl-support-card__title { font-size: 1.1rem; }

	.fl-process-step { flex: 0 0 calc(50% - 1rem); }

	.fl-hero__actions { align-items: stretch; }
}

@media (max-width: 380px) {
	.fl-process-step { flex: 0 0 100%; }
}

/* ─────────────────────────────────────────────────────────────
   ENTRANCE ANIMATIONS
───────────────────────────────────────────────────────────── */

/* Hero — always plays on load (above fold) */
.fl-hero__eyebrow,
.fl-hero__headline,
.fl-hero__subheadline,
.fl-hero__actions {
	animation: fl-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.fl-hero__eyebrow    { animation-delay: 0.15s; }
.fl-hero__headline   { animation-delay: 0.3s; }
.fl-hero__subheadline { animation-delay: 0.45s; }
.fl-hero__actions    { animation-delay: 0.6s; }

@keyframes fl-fade-up {
	from { opacity: 0; transform: translateY(28px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered elements — JS adds .animate-ready, then .is-visible */
.animate-ready {
	opacity: 0;
	transform: translateY(32px);
	transition:
		opacity  0.65s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.animate-ready.animate-from-left  { transform: translateX(-48px); }
.animate-ready.animate-from-right { transform: translateX(48px); }
.animate-ready.animate-scale      { transform: scale(0.9); }
.animate-ready.is-visible {
	opacity: 1;
	transform: translate(0, 0) scale(1);
}

/* Stagger delays */
.animate-ready[data-delay="1"] { transition-delay: 0.08s; }
.animate-ready[data-delay="2"] { transition-delay: 0.16s; }
.animate-ready[data-delay="3"] { transition-delay: 0.24s; }
.animate-ready[data-delay="4"] { transition-delay: 0.32s; }
.animate-ready[data-delay="5"] { transition-delay: 0.40s; }
.animate-ready[data-delay="6"] { transition-delay: 0.48s; }

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
	.fl-hero__eyebrow,
	.fl-hero__headline,
	.fl-hero__subheadline,
	.fl-hero__actions { animation: none; }


	.animate-ready {
		opacity: 1;
		transform: none;
		transition: none;
	}
}
