/* ==========================================================================
   4ALL Company theme styles
   Figma tokens: black #000, surfaces #18191b/#18191a/#1a1a1a/#262626,
   gradient #ff4615→#ff7a15, body #cacaca, Poppins (+DM Sans stats, Inter labels)
   ========================================================================== */

:root {
	--fa-black: #000000;
	--fa-s1: #18191b;
	--fa-s1b: #18191a;
	--fa-s2: #1a1a1a;
	--fa-s3: #262626;
	--fa-white: #ffffff;
	--fa-body: #cacaca;
	--fa-muted: #7e7e81;
	--fa-orange: #ff4615;
	--fa-orange2: #ff7a15;
	--fa-grad: linear-gradient(90deg, #ff4615 0%, #ff7a15 100%);
	--fa-font: 'Poppins', -apple-system, 'Segoe UI', sans-serif;
	--fa-wide: 1640px;
	--fa-content: 1600px;
	--fa-pad: clamp(20px, 7.3vw, 140px);
	--fa-h1: clamp(2.5rem, 3.75vw, 4.5rem);     /* 72px */
	--fa-h2: clamp(2rem, 2.5vw, 3rem);          /* 48px */
	--fa-h2xl: clamp(2.25rem, 3.75vw, 4.5rem);  /* 72px section variant */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--fa-black);
	color: var(--fa-body);
	font-family: var(--fa-font);
	font-size: 20px;
	line-height: 1.4;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { color: var(--fa-white); margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
a, button { transition: all .2s ease; }
ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible {
	outline: 3px solid var(--fa-orange2);
	outline-offset: 2px;
	border-radius: 4px;
}
.fa-header__menu a:focus-visible { color: var(--fa-white); -webkit-text-fill-color: var(--fa-white); }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { transition: none !important; animation: none !important; }
}

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden; clip: rect(0 0 0 0);
}
.fa-skiplink:focus {
	position: fixed; top: 12px; left: 12px; z-index: 999;
	width: auto; height: auto; clip: auto; overflow: visible;
	background: var(--fa-black); color: var(--fa-white);
	padding: 14px 22px; border-radius: 10px; border: 2px solid var(--fa-orange);
	font-size: 18px; font-weight: 600;
}

/* Shared type roles ------------------------------------------------------ */
.fa-eyebrow {
	font-size: clamp(20px, 1.56vw, 30px);
	line-height: 1;
	background: var(--fa-grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-weight: 400;
}
.fa-eyebrow--white { background: none; color: var(--fa-white); }
.fa-h2 { font-size: var(--fa-h2); line-height: 1.1; font-weight: 800; }
.fa-h2--xl { font-size: var(--fa-h2xl); }
.fa-body { font-size: 20px; line-height: 1.4; color: var(--fa-body); }
.fa-body--white { color: var(--fa-white); }
.fa-body--justify { text-align: justify; }
.fa-dot { color: var(--fa-orange); }

/* Buttons ---------------------------------------------------------------- */
.fa-btnset { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; }
.fa-btnset--center { justify-content: center; }
.fa-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	height: 60px; padding: 0 30px; border: 0; border-radius: 15px;
	font-family: var(--fa-font); font-size: 20px; font-weight: 700; line-height: 1;
	color: var(--fa-white); cursor: pointer; transition: all .2s ease;
	white-space: nowrap;
}
.fa-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.fa-btn--primary { background: var(--fa-grad); color: var(--fa-black); }
.fa-btn--secondary { background: transparent; border: 2px solid var(--fa-orange); font-weight: 500; }
.fa-btn--white {
	background: var(--fa-white);
	background-clip: padding-box;
}
.fa-btn--white, .fa-btn--white:visited {
	color: transparent;
	background-image: linear-gradient(#fff, #fff), var(--fa-grad);
}
.fa-btn--white { position: relative; }
.fa-btn--white { color: var(--fa-orange); background: var(--fa-white); }
.fa-btn--outline-white { background: transparent; border: 2px solid var(--fa-white); font-weight: 500; }
.fa-btn--dark { background: var(--fa-s2); font-weight: 500; }
.fa-btn--sm { height: 50px; padding: 0 20px; }
.fa-btn--caps { text-transform: uppercase; font-weight: 600; font-size: 24px; letter-spacing: .8px; height: 62px; padding: 0 20px; }
.fa-btn--grad-sm { background: var(--fa-grad); height: 50px; border-radius: 10px; font-size: 16px; font-weight: 600; padding: 0 20px; color: var(--fa-black); }

/* Big arrow buttons (Mission) */
.fa-bigbtn {
	display: inline-flex; align-items: center; gap: 12px;
	border-radius: 15px; padding: 19px 25px;
	font-size: clamp(18px, 1.25vw, 24px); font-weight: 600; letter-spacing: .8px;
	text-transform: uppercase; color: var(--fa-white); line-height: 1;
	transition: all .2s ease;
}
.fa-bigbtn:hover { filter: brightness(1.25); }
.fa-bigbtn--black { background: var(--fa-black); }
.fa-bigbtn--dark { background: var(--fa-s1b); }
.fa-circlearrow { display: inline-flex; }
.fa-gradlink {
	display: inline-flex; align-items: center; gap: 14px;
	font-size: clamp(18px, 1.25vw, 24px); font-weight: 600; letter-spacing: .8px; text-transform: uppercase;
	background: var(--fa-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Chips (blog meta) ------------------------------------------------------ */
.fa-chip {
	display: inline-flex; align-items: center; justify-content: center; gap: 6px;
	height: 40px; padding: 0 14px; border-radius: 10px;
	background: var(--fa-s2); border: 1px solid var(--fa-s3);
	font-size: 16px; font-weight: 500; letter-spacing: -.48px; color: var(--fa-body); white-space: nowrap;
}
.fa-chip svg { flex: 0 0 auto; }
.fa-chip--grow { flex: 1 1 auto; }
.fa-chip--lg { height: 54px; font-size: 18px; letter-spacing: -.54px; padding: 0 18px; }
a.fa-chip:hover, .fa-chip a:hover { border-color: var(--fa-orange); color: var(--fa-white); }
.fa-chip--arrow::after {
	content: ''; width: 20px; height: 20px; flex: 0 0 auto;
	background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23ff4615' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 14 14 6M8 6h6v6'/%3E%3C/svg%3E");
}

/* Icons ------------------------------------------------------------------ */
.fa-lineicon { display: inline-flex; width: 80px; height: 80px; align-items: center; justify-content: center; }
.fa-lineicon svg { width: 100%; height: 100%; }
.fa-lineicon--lg { width: 100px; height: 100px; }
.fa-checkdot {
	flex: 0 0 50px; width: 50px; height: 50px; border-radius: 60px;
	background: var(--fa-black); display: inline-flex; align-items: center; justify-content: center;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.fa-header {
	position: sticky; top: 0; z-index: 100;
	background: var(--fa-black);
	padding: 10px var(--fa-pad);
}
.fa-header__inner {
	max-width: var(--fa-wide); margin: 0 auto;
	display: flex; align-items: center; justify-content: space-between; gap: 24px;
	padding: 14px 0;
}
.fa-header__logo {
	font-weight: 800; font-size: clamp(20px, 1.7vw, 32px); letter-spacing: .5px;
	color: var(--fa-white); white-space: nowrap;
}
.fa-header__nav { display: flex; align-items: center; gap: 30px; }
.fa-header__menu { display: flex; gap: 20px; }
.fa-header__menu a {
	display: block; padding: 11px 16px;
	font-size: 18px; font-weight: 600; text-transform: uppercase; color: var(--fa-white);
}
.fa-header__menu a:hover, .fa-header__menu a.is-active, .fa-header__menu li.current-menu-item > a {
	background: var(--fa-grad);
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.fa-header__cta {
	display: inline-block; padding: 10px 12px; border-radius: 10px;
	background: var(--fa-grad);
	font-size: 18px; font-weight: 600; text-transform: uppercase; color: var(--fa-black);
}
.fa-header__cta:hover { filter: brightness(1.08); }
.fa-header__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.fa-header__toggle span { display: block; width: 26px; height: 3px; background: #fff; margin: 5px 0; border-radius: 2px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.fa-footer { background: var(--fa-black); border-top: 2px solid var(--fa-s2); padding: 0 var(--fa-pad); }
.fa-footer__inner { max-width: var(--fa-wide); margin: 0 auto; padding: 0 15px; }
.fa-footer__top { display: flex; flex-wrap: wrap; align-items: center; gap: 40px; padding: 55px 0 32px; }
.fa-footer__brand { display: flex; flex-direction: column; align-items: center; gap: 12px; padding-right: 32px; }
.fa-footer__wordmark { font-size: 12px; font-weight: 900; letter-spacing: .12px; text-transform: uppercase; color: var(--fa-white); }
.fa-footer__address, .fa-footer__contact { font-style: normal; font-size: 20px; line-height: 1.4; color: var(--fa-body); }
.fa-footer__contact a { font-weight: 700; text-decoration: underline; color: var(--fa-body); }
.fa-footer__contact a:hover { color: var(--fa-orange); }
.fa-footer__bottom { display: flex; flex-direction: column; gap: 32px; padding: 32px 0 55px; }
.fa-footer__disclaimer { font-size: 20px; line-height: 1.4; }
.fa-footer__copyright { color: var(--fa-white); }

/* ==========================================================================
   SHARED SECTIONS (page banners, FAQ, LinkedIn, strips)
   ========================================================================== */
.fa-banner {
	position: relative; min-height: clamp(420px, 41vw, 787px);
	display: flex; align-items: center; justify-content: center;
	background-size: cover; background-position: center top; background-color: var(--fa-s1);
	padding: 85px var(--fa-pad) 0;
}
.fa-banner__scrim, .fa-hero__scrim {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.7) 19.6%, rgba(0,0,0,.7) 100%);
}
.fa-banner__title { position: relative; font-size: clamp(40px, 3.1vw, 60px); font-weight: 600; line-height: 1.1; }

.fa-linkedin { padding: 50px var(--fa-pad); background: var(--fa-black); }
.fa-linkedin__row { max-width: var(--fa-wide); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.fa-linkedin__banner {
	display: flex; align-items: center; justify-content: center; gap: 16px;
	background: var(--fa-grad); border-radius: 15px; padding: 30px;
	font-size: clamp(22px, 1.9vw, 36px); font-weight: 700; line-height: 1; color: var(--fa-black);
	transition: all .2s ease;
}
.fa-linkedin__banner:hover { background: var(--fa-orange); }
.fa-linkedin__banner svg { width: clamp(32px, 2.5vw, 48px); height: auto; }

.fa-supportbar { background: var(--fa-s1); padding: 20px var(--fa-pad); }
.fa-supportbar__inner { max-width: var(--fa-wide); margin: 0 auto; display: flex; justify-content: flex-end; }

/* FAQ */
.fa-faq { background: var(--fa-black); padding: 100px var(--fa-pad); }
.fa-faq__inner { max-width: var(--fa-content); margin: 0 auto; display: flex; flex-direction: column; gap: 24px; align-items: center; text-align: center; }
.fa-faq__inner > .fa-body { max-width: 742px; }
.fa-faq__list { width: 100%; margin-top: 46px; text-align: left; }
.fa-faq__item { border-top: 1px solid var(--fa-s3); padding: 50px 0; }
.fa-faq__item summary {
	display: flex; align-items: center; justify-content: space-between; gap: 24px;
	cursor: pointer; list-style: none;
	font-size: clamp(19px, 1.25vw, 24px); font-weight: 700; line-height: 1.4; color: var(--fa-white);
}
.fa-faq__item summary::-webkit-details-marker { display: none; }
.fa-faq__item summary::after {
	content: ''; flex: 0 0 30px; width: 30px; height: 30px;
	background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30' stroke='%237e7e81' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M4 15h22'/%3E%3C/svg%3E");
}
.fa-faq__item[open] summary::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30' stroke='%23ff4615' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 6l18 18M24 6 6 24'/%3E%3C/svg%3E");
}
.fa-faq__item > p { margin-top: 20px; max-width: calc(100% - 100px); font-size: 20px; color: var(--fa-body); }
.fa-faq--card { padding: 50px var(--fa-pad) 100px; }
.fa-faq--card .fa-faq__inner { background: var(--fa-s1b); border-radius: 15px; padding: 50px; }
.fa-faq__wordmark { font-size: clamp(28px, 2.3vw, 45px); font-weight: 600; letter-spacing: .37px; color: var(--fa-body); }

/* Feature boxes (Services/Product shared) */
.fa-features { background: var(--fa-s1); padding: 100px var(--fa-pad); }
.fa-features__inner { max-width: var(--fa-wide); margin: 0 auto; text-align: center; }
.fa-features__inner > .fa-body { max-width: 1058px; margin: 24px auto 0; }
.fa-features__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; margin-top: 60px; text-align: left; }
.fa-featbox { background: var(--fa-black); border-radius: 10px; padding: 30px; display: flex; flex-direction: column; gap: 15px; }
.fa-featbox--gray { background: var(--fa-s2); padding: 30px 40px; }
.fa-featbox--gray .fa-checkdot { background: var(--fa-s2); }
.fa-featbox h3 { font-size: clamp(22px, 1.56vw, 30px); font-weight: 600; line-height: 1; text-align: center; }
.fa-featbox__sub { font-size: 20px; line-height: 1.2; color: var(--fa-body); text-align: center; }
.fa-featbox__list { display: flex; flex-direction: column; gap: 15px; margin-top: 15px; }
.fa-featbox__list li { display: flex; gap: 10px; align-items: center; }
.fa-featbox__list strong { display: block; font-size: 18px; font-weight: 600; color: var(--fa-white); line-height: 1.2; }
.fa-featbox__list em { display: block; font-style: normal; font-size: 15px; color: var(--fa-body); line-height: 1.25; }
.fa-features--card { background: var(--fa-black); padding: 50px var(--fa-pad); }
.fa-features--card .fa-features__inner { background: var(--fa-s1b); border-radius: 15px; padding: 50px 60px; }

/* 3-card icon rows */
.fa-cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
.fa-card-plain { padding: 28px; display: flex; flex-direction: column; gap: 22px; align-items: center; text-align: center; border-radius: 4px; }
.fa-card-plain h3 { font-size: 24px; font-weight: 700; line-height: 1.1; }
.fa-card-plain p { font-size: 20px; line-height: 1.4; }

/* ==========================================================================
   HOME
   ========================================================================== */
.fa-hero {
	position: relative; min-height: clamp(560px, 54vw, 1045px);
	display: flex; align-items: center;
	background-size: cover; background-position: center; background-color: var(--fa-s1);
	padding: 85px var(--fa-pad) 0;
}
.fa-hero__inner {
	position: relative; max-width: var(--fa-wide); margin: 0 auto; width: 100%;
	display: flex; flex-direction: column; gap: 20px; align-items: center; text-align: center;
}
.fa-hero__title { font-size: var(--fa-h1); font-weight: 800; line-height: 1.1; }
.fa-hero__sub { font-size: clamp(20px, 2vw, 40px); line-height: 1.3; color: var(--fa-white); font-weight: 400; }
.fa-hero__inner .fa-btnset { padding-top: 50px; justify-content: center; }

.fa-iconstrip { background: var(--fa-s1); padding: 50px var(--fa-pad); }
.fa-iconstrip__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 50px; max-width: var(--fa-wide); margin: 0 auto; }
.fa-iconstrip__list li { display: flex; flex-direction: column; align-items: center; gap: 20px; font-size: clamp(18px, 1.25vw, 24px); line-height: 1.2; text-align: center; flex: 1 1 160px; max-width: 260px; }

.fa-trusted { background: var(--fa-grad); padding: 80px var(--fa-pad) 280px; text-align: center; }
.fa-trusted__eyebrow { font-size: clamp(16px, 1.25vw, 24px); font-weight: 700; color: var(--fa-black); }
.fa-trusted__title { font-size: var(--fa-h2xl); font-weight: 800; line-height: 1.1; text-transform: uppercase; color: var(--fa-black); margin-top: 30px; }
.fa-trusted__logos {
	display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 48px;
	max-width: var(--fa-wide); margin: 50px auto 0; padding: 40px 24px;
}
.fa-trusted__logos img { width: auto; max-height: clamp(48px, 5.2vw, 100px); }

.fa-meet { background: var(--fa-black); padding: 0 var(--fa-pad) 82px; }
.fa-meet__inner { max-width: 1440px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.fa-meet__phones { width: min(927px, 90%); border-radius: 4px; margin-top: clamp(-252px, -13vw, -80px); position: relative; z-index: 2; }
.fa-meet__heading { max-width: 1093px; padding: 47px 48px; text-align: center; display: flex; flex-direction: column; gap: 32px; align-items: center; }
.fa-meet__banner {
	width: calc(100% - 30px); background: var(--fa-grad); border-radius: 15px;
	padding: 32px clamp(24px, 10vw, 200px); text-align: center;
}
.fa-meet__banner p { font-size: clamp(22px, 1.9vw, 36px); font-weight: 800; line-height: 1.1; color: var(--fa-black); }

.fa-desktop { background: var(--fa-grad); padding: 96px var(--fa-pad); }
.fa-desktop__inner { max-width: var(--fa-content); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 610px) 1fr; gap: 100px; align-items: center; }
.fa-desktop__copy { display: flex; flex-direction: column; gap: 30px; align-items: flex-start; }
.fa-desktop__copy .fa-h2, .fa-desktop__copy .fa-body { color: var(--fa-white); }
.fa-checklist { display: flex; flex-direction: column; gap: 10px; }
.fa-checklist li { display: flex; gap: 10px; align-items: center; font-size: 20px; color: var(--fa-white); }
.fa-checklist svg { flex: 0 0 30px; color: var(--fa-white); }
.fa-desktop__mockup img { border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,.35); }

.fa-compare { background: var(--fa-s1); padding: 100px var(--fa-pad); }
.fa-compare__inner { max-width: var(--fa-wide); margin: 0 auto; text-align: center; display: flex; flex-direction: column; gap: 30px; align-items: center; }
.fa-compare__tablewrap { width: 100%; max-width: 1000px; margin-top: 10px; overflow-x: auto; }
.fa-compare__table { width: 100%; min-width: 640px; border-collapse: separate; border-spacing: 0; }
.fa-compare__table th, .fa-compare__table td {
	height: 80px; padding: 0 24px; font-size: clamp(18px, 1.25vw, 24px); font-weight: 400;
	color: var(--fa-white); text-align: left; vertical-align: middle;
}
.fa-compare__table thead th { background: var(--fa-black); }
.fa-compare__table thead th:first-child { border-radius: 15px 0 0 0; }
.fa-compare__table thead th:last-child { border-radius: 0 15px 0 0; }
.fa-compare__table tbody td { background: var(--fa-s3); }
.fa-compare__table tbody tr:last-child td:first-child { border-radius: 0 0 0 15px; }
.fa-compare__table tbody tr:last-child td:last-child { border-radius: 0 0 15px 0; }
.fa-compare__table th.fa-compare__us, .fa-compare__table td.fa-compare__us {
	text-align: center; font-weight: 700;
	border-left: 3px solid var(--fa-orange); border-right: 3px solid var(--fa-orange);
	background-image: linear-gradient(90deg, rgba(255,70,21,.1), rgba(255,122,21,.1));
}
.fa-compare__table thead th.fa-compare__us { border-top: 3px solid var(--fa-orange); border-radius: 10px 10px 0 0; }
.fa-compare__table tbody tr:last-child td.fa-compare__us { border-bottom: 3px solid var(--fa-orange); border-radius: 0 0 10px 10px; }
.fa-compare__table td.fa-compare__us svg { display: inline-block; vertical-align: middle; }
.fa-compare__table td span { margin-left: 12px; }
.fa-compare__table td svg { display: inline-block; vertical-align: middle; }
.fa-compare__table th:last-child, .fa-compare__table td:last-child { text-align: center; }

.fa-gallery { background: var(--fa-s1b); padding: 100px var(--fa-pad); }
.fa-gallery__inner { max-width: var(--fa-content); margin: 0 auto; display: flex; flex-direction: column; gap: 20px; align-items: center; text-align: center; }
.fa-gallery__grid {
	display: grid; width: 100%; margin-top: 50px; gap: 28px 36px;
	grid-template-columns: 23.3% 1fr 23.3%; grid-template-rows: repeat(2, minmax(160px, 284px));
}
.fa-gallery__grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 15px; background: var(--fa-s2); }
.fa-gallery__grid img:nth-child(1) { grid-column: 1; grid-row: 1; }
.fa-gallery__grid img:nth-child(2) { grid-column: 1; grid-row: 2; }
.fa-gallery__big { grid-column: 2; grid-row: 1 / span 2; }
.fa-gallery__grid img:nth-child(4) { grid-column: 3; grid-row: 1; }
.fa-gallery__grid img:nth-child(5) { grid-column: 3; grid-row: 2; }

.fa-company { background: var(--fa-s2); padding: 96px 64px; }
.fa-company__inner { max-width: var(--fa-content); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.fa-company__copy { display: flex; flex-direction: column; gap: 32px; align-items: flex-start; }
.fa-company__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fa-statcard { background: var(--fa-s3); border-radius: 15px; padding: 40px; display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.fa-statcard__num {
	font-family: 'DM Sans', var(--fa-font); font-weight: 700; font-size: clamp(40px, 2.9vw, 56px); line-height: 1.18;
	background: var(--fa-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.fa-statcard h3 { font-size: 24px; font-weight: 700; line-height: 1.4; }
.fa-statcard p { font-size: 20px; line-height: 1.4; }

.fa-cta { background: var(--fa-black); padding: 140px var(--fa-pad); display: flex; flex-direction: column; gap: 30px; align-items: center; text-align: center; }
.fa-cta > .fa-body { max-width: 742px; }
.fa-cta__form { display: flex; flex-wrap: wrap; gap: 24px; width: min(830px, 100%); }
.fa-cta__email {
	flex: 1 1 320px; height: 60px; border-radius: 15px; background: transparent;
	border: 2px solid #333333; padding: 0 22px;
	font-family: var(--fa-font); font-size: 20px; color: var(--fa-white);
}
.fa-cta__email::placeholder { font-style: italic; color: var(--fa-body); }
.fa-cta__downloads { display: flex; flex-wrap: wrap; gap: 30px; padding-top: 50px; justify-content: center; }
.fa-dlbtn {
	display: inline-flex; align-items: center; gap: 10px; height: 60px; padding: 0 30px;
	background: var(--fa-s2); border-radius: 15px; font-size: 20px; font-weight: 500; color: var(--fa-white);
}
.fa-dlbtn:hover { background: var(--fa-s3); }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.fa-orangestrip { background: var(--fa-grad); padding: 80px var(--fa-pad); }
.fa-orangestrip__card {
	max-width: var(--fa-wide); margin: 0 auto; border-radius: 15px;
	display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; align-items: center;
	padding: 32px;
}
.fa-orangestrip__card h2 { font-size: clamp(26px, 1.9vw, 36px); font-weight: 800; line-height: 1.1; color: var(--fa-black); }
.fa-orangestrip__card p { font-size: 20px; line-height: 1.4; color: var(--fa-black); max-width: 1076px; flex: 1 1 480px; }

.fa-services { background: var(--fa-black); padding: 50px var(--fa-pad); }
.fa-services__heading { max-width: 1098px; margin: 0 auto; padding: 50px 0; text-align: center; display: flex; flex-direction: column; gap: 20px; }
.fa-services .fa-cards3 { max-width: var(--fa-wide); margin: 0 auto; }

.fa-action { background: var(--fa-s1b); padding: 70px var(--fa-pad); }
.fa-action__inner { max-width: var(--fa-content); margin: 0 auto; display: flex; flex-direction: column; gap: 20px; align-items: center; text-align: center; }
.fa-action__inner > .fa-body { max-width: 742px; }
.fa-blogcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; width: 100%; margin: 30px 0 50px; text-align: left; }

/* blog card (shared static + dynamic) */
.fa-blogcard { display: flex; flex-direction: column; gap: 24px; border-radius: 12px; }
.fa-blogcard__media {
	position: relative; height: 244px; border-radius: 10px; overflow: hidden;
	background-size: cover; background-position: center; background-color: var(--fa-s2);
	display: flex; align-items: flex-end; justify-content: space-between; padding: 30px;
}
.fa-blogcard__media::after {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(20,20,20,0) 44.27%, #141414 100%);
}
.fa-blogcard__media > * { position: relative; z-index: 2; }
.fa-blogcard__duration { font-family: 'Inter', var(--fa-font); font-size: 14px; letter-spacing: -.42px; color: var(--fa-muted); }
.fa-blogcard h3 { font-size: 18px; font-weight: 600; letter-spacing: -.54px; line-height: 1.5; }
.fa-blogcard > p { font-size: 16px; letter-spacing: -.48px; line-height: 1.5; }
.fa-blogcard__meta { display: flex; gap: 8px; align-items: center; width: 100%; }
.fa-blogcard__meta .fa-chip--grow { margin-left: auto; }
.fa-play { display: inline-flex; }

.fa-imgtext { background: var(--fa-black); padding: 96px 64px; }
.fa-imgtext__inner { max-width: var(--fa-content); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 50px; align-items: center; }
.fa-imgtext__img { flex: 1 1 560px; min-width: 0; border-radius: 15px; object-fit: cover; max-height: 569px; }
.fa-imgtext__copy { flex: 0 1 461px; display: flex; flex-direction: column; gap: 32px; }

/* ==========================================================================
   MISSION
   ========================================================================== */
.fa-split { display: flex; flex-wrap: wrap; background: var(--fa-s1); }
.fa-split__media { flex: 1 1 380px; min-height: 380px; background-size: cover; background-position: center; background-color: #2a2a2a; }
.fa-split__copy { flex: 1 1 560px; padding: clamp(48px, 6vw, 120px) var(--fa-pad); display: flex; flex-direction: column; gap: 32px; align-items: flex-start; }

.fa-venn { background: var(--fa-black); padding: 50px var(--fa-pad); }
.fa-venn__diagram { display: flex; justify-content: center; padding: 80px 0; }
.fa-venn__diagram img { width: min(1511px, 100%); }
.fa-venn__statement { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; padding: 0 15px; }
.fa-venn__right { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }

.fa-gradbanner { background: var(--fa-black); padding: 50px clamp(20px, 8.3vw, 160px) 100px; }
.fa-gradbanner__card {
	max-width: 1570px; margin: 0 auto; background: var(--fa-grad); border-radius: 15px;
	padding: 32px; text-align: center;
}
.fa-gradbanner__card p { font-size: clamp(28px, 2.9vw, 56px); font-weight: 800; line-height: 1; color: var(--fa-black); }

.fa-results { background: var(--fa-s1b); padding: 130px var(--fa-pad); display: flex; flex-direction: column; gap: 90px; align-items: center; }
.fa-results__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; max-width: var(--fa-content); width: 100%; }

.fa-video { background: var(--fa-s1b); padding: 0 64px 96px; }
.fa-video__inner { max-width: var(--fa-content); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 30px; align-items: center; }
.fa-video__copy { flex: 0 1 461px; display: flex; flex-direction: column; gap: 32px; }
.fa-social { display: flex; gap: 32px; align-items: center; }
.fa-social a:hover svg { opacity: .8; }
.fa-video__media { flex: 1 1 560px; min-width: 0; display: flex; flex-direction: column; gap: 32px; }
.fa-video__thumb {
	position: relative; display: flex; align-items: center; justify-content: center;
	aspect-ratio: 1109 / 569; border-radius: 15px; overflow: hidden;
	background-size: cover; background-position: center; background-color: var(--fa-s2);
}
.fa-ytplay { transition: all .2s ease; }
.fa-video__thumb:hover .fa-ytplay { transform: scale(1.06); }
.fa-video__caption { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; }
.fa-video__caption p { font-size: clamp(22px, 1.7vw, 32px); font-weight: 700; line-height: 1.4; color: var(--fa-white); }

.fa-reality { background: var(--fa-black); padding: 50px var(--fa-pad) 55px; }
.fa-reality > .fa-h2 { text-align: center; padding: 50px 0; }
.fa-reality__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: var(--fa-wide); margin: 0 auto; }
.fa-reality__stat { font-size: clamp(26px, 1.9vw, 36px); font-weight: 800; line-height: 1.1; }

/* ==========================================================================
   PRODUCT
   ========================================================================== */
.fa-phero {
	background-size: cover; background-position: center top; background-color: #2b0d04;
	padding: 130px clamp(20px, 8.3vw, 160px) 60px;
}
.fa-phero__inner { max-width: var(--fa-content); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 718px) 1fr; gap: 60px; align-items: start; }
.fa-phero__copy { display: flex; flex-direction: column; gap: 30px; align-items: flex-start; }
.fa-phero__badge {
	display: inline-flex; align-items: center; gap: 10px; padding: 7px 16px 7px 12px;
	border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
	backdrop-filter: blur(2px); font-size: 12px; font-weight: 600; color: var(--fa-white);
}
.fa-phero__dot { width: 8px; height: 8px; border-radius: 4px; background: #fff; box-shadow: 0 0 14px rgba(255,70,21,.75); }
.fa-phero__title { font-size: var(--fa-h1); font-weight: 800; line-height: 1.1; }
.fa-phero__sub { font-size: 19px; line-height: 1.55; color: var(--fa-white); opacity: .95; }
.fa-phero__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; width: 100%; }
.fa-minicard {
	background: #0d0d0d; border-radius: 20px; padding: 26px 15px 15px;
	display: flex; flex-direction: column; gap: 15px; align-items: center; text-align: center;
}
.fa-minicard .fa-lineicon { width: 70px; height: 70px; }
.fa-minicard h3, .fa-minicard .fa-minicard__title { font-size: 16px; font-weight: 600; line-height: 1.1; }
.fa-minicard p { font-size: 14px; line-height: 1.3; color: var(--fa-white); }
.fa-phero__mockup img { border-radius: 14px; }

.fa-trustband { background: var(--fa-black); padding: 50px var(--fa-pad); }
.fa-trustband__card {
	max-width: 1280px; margin: 0 auto; border-radius: 30px;
	border: 2px solid rgba(47,47,47,.55); padding: 45px;
	display: flex; flex-direction: column; gap: 45px; align-items: center; text-align: center;
}
.fa-trustband__cats { font-size: 16.3px; color: var(--fa-body); }
.fa-trustband__cats em {
	font-style: normal; background: var(--fa-grad);
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.fa-trustband__logos { display: flex; flex-wrap: wrap; gap: clamp(24px, 4vw, 64px); align-items: center; justify-content: center; }
.fa-trustband__logos img { width: auto; max-height: 69px; opacity: .95; }

.fa-platform { background: var(--fa-black); padding: 50px var(--fa-pad); display: flex; flex-direction: column; gap: 30px; align-items: center; text-align: center; }
.fa-platform > .fa-body { max-width: 1110px; }
.fa-platform .fa-features__row { max-width: var(--fa-content); margin-top: 20px; }
.fa-platform .fa-btn { margin-top: 20px; }

.fa-micband { position: relative; background: var(--fa-black); padding: 0 var(--fa-pad); }
.fa-micband__inner {
	max-width: var(--fa-content); margin: 0 auto;
	display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 681px); gap: 60px;
	background: var(--fa-grad); border-radius: 24px; padding: clamp(32px, 4vw, 80px);
	margin-top: 100px; margin-bottom: 100px;
}
.fa-micband__mockups { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.fa-micband__mockups img { border-radius: 12px; box-shadow: 0 24px 60px rgba(0,0,0,.3); }
.fa-micband__settings { width: min(524px, 100%); }
.fa-micband__audio { width: min(681px, 100%); }
.fa-micband__preview { width: min(498px, 100%); }
.fa-micband__copy { display: flex; flex-direction: column; gap: 30px; color: var(--fa-white); }
.fa-micband__copy h2 { font-size: clamp(30px, 2.4vw, 46px); font-weight: 600; line-height: 1.1; }
.fa-micband__sub { font-size: 20px; line-height: 1.4; }
.fa-steps { display: flex; flex-direction: column; gap: 30px; }
.fa-steps li { display: flex; gap: 15px; align-items: center; }
.fa-steps__num {
	flex: 0 0 70px; width: 70px; height: 70px; border-radius: 60px; background: var(--fa-black);
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 30px; font-weight: 600; color: var(--fa-white);
}
.fa-steps strong { display: block; font-size: clamp(20px, 1.35vw, 26px); font-weight: 600; line-height: 1.15; }
.fa-steps em { display: block; font-style: normal; font-size: clamp(16px, 1.05vw, 20px); line-height: 1.25; }
.fa-micband__note { font-size: 18px; font-weight: 600; }

.fa-realuse { background: var(--fa-black); padding: 100px var(--fa-pad); }
.fa-realuse__inner { max-width: var(--fa-content); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) 450px; gap: 80px; align-items: center; }
.fa-realuse__copy { display: flex; flex-direction: column; gap: 30px; }
.fa-realuse__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 20px; }
.fa-graditem { display: flex; flex-direction: column; gap: 15px; }
.fa-gradcircle {
	width: clamp(90px, 6.8vw, 130px); height: clamp(90px, 6.8vw, 130px); border-radius: 50%;
	background: var(--fa-grad); display: inline-flex; align-items: center; justify-content: center;padding: 24px;
}
.fa-graditem h3 { font-size: clamp(20px, 1.35vw, 26px); font-weight: 600; line-height: 1; }
.fa-graditem p { font-size: clamp(16px, 1.05vw, 20px); line-height: 1.4; }
.fa-captionpanel {
	position: relative; background: var(--fa-black);
	border: 6px solid #333333; border-radius: 21px; overflow: hidden;
	padding: 40px 32px; min-height: 600px;
}
.fa-captionpanel__speaker { font-size: clamp(24px, 1.75vw, 33px); font-weight: 600; line-height: 1.6; color: #fafafa; text-align: center; margin-bottom: 33px; }
.fa-captionpanel__text { font-size: clamp(22px, 1.75vw, 33px); line-height: 1.6; color: #5a5a5a; text-align: center; }
.fa-captionpanel__text strong { color: var(--fa-white); font-weight: 800; }
.fa-captionpanel__video {
	position: absolute; right: 24px; top: 200px; width: min(338px, 70%); aspect-ratio: 338 / 190;
	border-radius: 21px; border: 3px solid #5a5a5a; background-color: var(--fa-s2);
	background-size: cover; background-position: center;
}

.fa-finalcta { background: var(--fa-black); padding: 140px var(--fa-pad); display: flex; flex-direction: column; gap: 20px; align-items: center; text-align: center; }
.fa-finalcta h2 { font-size: clamp(30px, 2.4vw, 46px); font-weight: 600; line-height: 1.1; }
.fa-finalcta p { font-size: 18px; line-height: 1.1; }
.fa-finalcta .fa-btn { margin-top: 16px; }

/* ==========================================================================
   BLOG INDEX
   ========================================================================== */
.fa-blogindex { padding: 0 0 60px; }
.fa-blogtitle { text-align: center; padding: clamp(60px, 10vw, 193px) 20px 0; line-height: 1.1; }
.fa-blogtitle__eyebrow { font-size: clamp(36px, 3.1vw, 60px); font-weight: 500; color: var(--fa-orange); line-height: 1.1; }
.fa-blogtitle__title { font-size: clamp(36px, 3.1vw, 60px); font-weight: 600; line-height: 1.1; }


.fa-featuredpost { max-width: 1440px; margin: 0 auto; padding: 60px 20px; }
.fa-featuredpost__row { display: flex !important; flex-wrap: wrap; gap: 40px; align-items: center; }
.fa-featuredpost__img { flex: 0 1 515px; }
.fa-featuredpost__img img { border-radius: 10px; aspect-ratio: 515 / 325; object-fit: cover; width: 100%; }
.fa-featuredpost__content { flex: 1 1 480px; display: flex !important; flex-direction: column; gap: 28px; align-items: flex-start; }
.fa-featuredpost__title { font-size: 24px; font-weight: 600; letter-spacing: -.72px; line-height: 1.5; margin: 0 !important; }
.fa-featuredpost__title a { color: var(--fa-white); }
.fa-featuredpost__excerpt { font-size: 18px; letter-spacing: -.54px; line-height: 1.5; color: var(--fa-body); }
.fa-featuredpost__meta { gap: 30px !important; }
.fa-metaitem { display: flex !important; flex-direction: column; gap: 2px !important; font-size: 16px; letter-spacing: -.48px; line-height: 1.5; }
.fa-metaitem__label { color: var(--fa-body); margin: 0 !important; }
.fa-metaitem__value, .fa-metaitem__value a, .fa-metaitem time { color: var(--fa-white) !important; }
.fa-readmore-solid {
	display: inline-flex; align-items: center; gap: 6px; height: 40px; padding: 0 30px;
	background: var(--fa-orange); border: 1px solid var(--fa-s3); border-radius: 10px;
	font-size: 16px; font-weight: 500; letter-spacing: -.48px; color: var(--fa-white) !important;
}
.fa-readmore-solid::after {
	content: ''; width: 20px; height: 20px;
	background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 14 14 6M8 6h6v6'/%3E%3C/svg%3E");
}
.fa-readmore-solid:hover { filter: brightness(1.1); }

.fa-bloggrid { max-width: 1440px; margin: 0 auto; padding: 0 20px; }
.fa-bloggrid__list {
	display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 60px 40px; padding: 60px 0;
}
.fa-bloggrid .fa-blogcard, .fa-bloggrid__list > li { margin: 0 !important; }
.fa-blogcard__img img { border-radius: 10px; aspect-ratio: 453 / 244; object-fit: cover; width: 100%; }
.fa-blogcard__img { position: relative; }
.fa-blogcard__img::after {
	content: ''; position: absolute; inset: 0; border-radius: 10px; pointer-events: none;
	background: linear-gradient(180deg, rgba(20,20,20,0) 44.27%, #141414 100%);
}
.fa-blogcard__title { font-size: 18px !important; font-weight: 600; letter-spacing: -.54px; line-height: 1.5; margin: 0 !important; }
.fa-blogcard__title a { color: var(--fa-white); }
.fa-blogcard__excerpt { font-size: 16px; letter-spacing: -.48px; line-height: 1.5; color: var(--fa-body); }
.fa-blogcard__excerpt .more-link { display: none; }
.fa-blogcard__meta { gap: 8px !important; width: 100%; }
.fa-blogcard__meta a.fa-chip--grow { flex: 1 1 auto; display: inline-flex; align-items: center; justify-content: center; gap: 6px; height: 40px; padding: 0 14px; border-radius: 10px; background: var(--fa-s2); border: 1px solid var(--fa-s3); font-size: 16px; letter-spacing: -.48px; color: var(--fa-body); }
.fa-blogcard__meta a.fa-chip--grow:hover { border-color: var(--fa-orange); color: var(--fa-white); }


.fa-loadmore { display: flex; justify-content: center; padding: 20px 0 80px; }
.fa-loadmore .fa-btn[disabled] { opacity: .6; cursor: wait; }


/* Article content: floated images + responsive embeds ------------------- */
.fa-article__content::after { content: ''; display: table; clear: both; }
.fa-article__content .alignleft {
	float: left; max-width: min(48%, 560px);
	margin: 8px 36px 20px 0;
}
.fa-article__content .alignright {
	float: right; max-width: min(48%, 560px);
	margin: 8px 0 20px 36px;
}
.fa-article__content .aligncenter { margin-left: auto; margin-right: auto; }

.fa-article__content .wp-block-embed { margin: 32px 0; width: 100%; }
.fa-article__content .wp-block-embed__wrapper { position: relative; width: 100%; }
.fa-article__content .wp-block-embed.is-type-video .wp-block-embed__wrapper { aspect-ratio: 16 / 9; }
.fa-article__content .wp-block-embed__wrapper iframe {
	position: absolute; inset: 0; width: 100%; height: 100%;
	border: 0; border-radius: 10px;
}

@media (max-width: 640px) {
	.fa-article__content .alignleft, .fa-article__content .alignright {
		float: none; max-width: 100%; margin: 20px 0;
	}
}

/* ==========================================================================
   SINGLE POST
   ========================================================================== */
.fa-posthero { position: relative; }
.fa-posthero .wp-block-cover__background { background: linear-gradient(180deg, rgba(20,20,20,.31) 0%, rgba(20,20,20,0) 35.6%, rgba(20,20,20,.6) 75.5%, #141414 100%) !important; opacity: 1 !important; }
.fa-posthero .wp-block-cover__inner-container {
	max-width: 1440px; margin: 0 auto; width: 100%;
	display: flex; align-items: flex-end; min-height: 480px; padding: 0 20px 60px;
}
.fa-posthero__title {
	font-size: clamp(34px, 3.3vw, 64px); font-weight: 600; line-height: 1.1;
	letter-spacing: -.03em; max-width: 901px; margin: 0 !important;
}
.fa-article { padding: 60px 20px 0; }
.fa-article__stats { display: flex; gap: 14px; justify-content: flex-end; border-top: 1px solid var(--fa-s3); padding: 50px 0; }
.fa-article__content { color: var(--fa-body); }
.fa-article__content > * { margin-bottom: 24px; }
.fa-article__content p { font-size: 18px; letter-spacing: -.54px; line-height: 1.5; text-align: justify; }
.fa-article__content h2 { font-size: 28px; font-weight: 500; letter-spacing: -.84px; line-height: 1.5; margin-top: 56px; }
.fa-article__content h3 { font-size: 23px; font-weight: 500; line-height: 1.5; margin-top: 40px; }
.fa-article__content ul, .fa-article__content ol { padding-left: 24px; font-size: 18px; line-height: 1.6; }
.fa-article__content ul { list-style: disc; }
.fa-article__content ol { list-style: decimal; }
.fa-article__content li::marker { color: var(--fa-orange); }
.fa-article__content a { color: var(--fa-orange); }
.fa-article__content a:hover { text-decoration: underline; }
.fa-article__content blockquote {
	margin: 32px 0; padding: 24px 28px; background: var(--fa-s2);
	border: 1px solid var(--fa-s3); border-left: 4px solid var(--fa-orange); border-radius: 10px;
}
.fa-article__content img { border-radius: 10px; }
.fa-article { border-bottom: 1px solid var(--fa-s3); padding-bottom: 60px; }

/* Read Full Blog gate (added by theme.js) */
.fa-gate .fa-article__content { max-height: 1200px; overflow: hidden; position: relative; }
.fa-gate .fa-article__content::after {
	content: ''; position: absolute; inset: auto 0 0 0; height: 215px;
	background: linear-gradient(180deg, rgba(20,20,20,0) 0%, #040203 55%);
}
.fa-gatebtn {
	display: flex; align-items: center; gap: 6px; margin: -40px auto 0; position: relative; z-index: 3;
	height: 55px; padding: 0 24px; border-radius: 10px; background: var(--fa-s2);
	border: 1px solid var(--fa-s3); color: var(--fa-body);
	font-family: var(--fa-font); font-size: 18px; font-weight: 500; letter-spacing: -.54px; cursor: pointer;
}
.fa-gatebtn::after {
	content: ''; width: 24px; height: 24px;
	background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cacaca' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}
.fa-gatebtn:hover { border-color: var(--fa-orange); color: var(--fa-white); }

.fa-related { padding: 60px 20px; }
.fa-related__heading { font-size: 32px !important; font-weight: 600 !important; line-height: 1.1; }
.fa-bloggrid--related { padding: 0; }

/* Generic interior page */
.fa-page { padding: 80px 20px 100px; min-height: 50vh; }
.fa-page__title { margin-bottom: 32px !important; }
.fa-404 { text-align: center; }
.fa-404 a { color: var(--fa-orange); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1280px) {
	.fa-desktop__inner, .fa-phero__inner, .fa-realuse__inner { grid-template-columns: 1fr; gap: 60px; }
	.fa-micband__inner { grid-template-columns: 1fr; }
	.fa-micband__settings { margin-top: -80px; }
	.fa-micband__preview { margin-bottom: -80px; }
	.fa-company__inner { grid-template-columns: 1fr; gap: 60px; }
	.fa-reality__row { grid-template-columns: repeat(2, 1fr); }
	.fa-captionpanel { max-width: 520px; }
}
@media (max-width: 980px) {
	.fa-features__row, .fa-cards3, .fa-blogcards, .fa-results__row,
	.fa-bloggrid__list, .fa-realuse__row, .fa-phero__cards { grid-template-columns: 1fr 1fr; }
	.fa-gallery__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
	.fa-gallery__big { grid-column: 1 / -1; grid-row: auto; }
	.fa-gallery__grid img:nth-child(n) { grid-column: auto; grid-row: auto; }
	.fa-venn__statement { grid-template-columns: 1fr; }
	.fa-company__stats { grid-template-columns: 1fr; }

	.fa-linkedin__row { grid-template-columns: 1fr; }

	/* mobile nav */
	.fa-header__toggle { display: block; }
	.fa-header__nav {
		display: none; position: absolute; left: 0; right: 0; top: 100%;
		flex-direction: column; align-items: stretch; gap: 0;
		background: var(--fa-black); border-top: 1px solid var(--fa-s3); padding: 12px 24px 24px;
	}
	.fa-header__nav.is-open { display: flex; }
	.fa-header__menu { flex-direction: column; gap: 0; }
	.fa-header__cta { margin-top: 12px; text-align: center; }
	.fa-header { position: relative; }
}
@media (max-width: 640px) {
	.fa-features__row, .fa-cards3, .fa-blogcards, .fa-results__row,
	.fa-bloggrid__list, .fa-realuse__row, .fa-phero__cards,
	.fa-reality__row, .fa-gallery__grid { grid-template-columns: 1fr; }
	.fa-btnset { gap: 14px; }
	.fa-btn { width: 100%; }
	.fa-faq__item > p { max-width: 100%; }
	.fa-article__stats { justify-content: center; }
	.fa-meet__phones { margin-top: -40px; }
	.fa-trusted { padding-bottom: 120px; }
}
