/* FSummit Elementor Widgets - shared design styles (1:1 with fsummit theme) */
.fsw-root {
	--bg: #ffffff;
	--text: #0b0f14;
	--muted: #6b7280;
	--line: #e5e7eb;
	--accent: #71F954;
	--accent-soft: #e9ffd0;
	--black: #000000;
	--radius-lg: 28px;
	--radius-md: 18px;
	--radius-sm: 12px;
	--maxw: 1200px;
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	color: var(--text);
	line-height: 1.45;
	-webkit-font-smoothing: antialiased;
}

.fsw-root * {
	box-sizing: border-box;
}

.fsw-root a {
	color: inherit;
	text-decoration: none;
}

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

.fsw-root .container {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 24px;
}

/* ---------------- NAV ---------------- */

.fsw-header {
	position: sticky;
	top: 0;
	background: rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(12px);
	z-index: 50;
}

.fsw-header .header-logo,
.fsw-header .header-logo img {
	width: fit-content;
	max-height: 40px !important;
}

.fsw-header .navbar-brand {
	height: 72px;
	display: flex;
	align-items: center;
	margin: 0;
}

.fsw-header .navbar-brand img {
	width: 215px;
	max-height: 50px;
	object-fit: contain;
}

.fsw-header .nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
}

.fsw-header .nav-links {
	display: flex;
	align-items: center;
	gap: 28px;
	font-size: 16px;
	font-weight: 500;
	color: #374151;
	list-style: none;
	margin: 0;
	padding: 0;
}

.fsw-header .nav-links a {
	position: relative;
}

.fsw-header .nav-links a:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	background-color: var(--accent);
	width: 100%;
	height: 2.5px;
	border-radius: 8px;
	transform: scaleX(0);
	transition: .3s;
}

.fsw-header .nav-links a:hover:before {
	transform: scaleX(1);
}

.fsw-header .nav-cta {
	padding: 12px 18px;
	background: var(--accent);
	border-radius: 14px;
	font-weight: 700;
	font-size: 14px;
	border: 1px solid #a3e635;
	transition: all .2s ease;
}

.fsw-header .nav-cta:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.fsw-header .burger {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 26px;
	height: 18px;
	cursor: pointer;
}

.fsw-header .burger.active span:nth-child(1) {
	transform: rotate(45deg) translateY(11px) translateX(3px);
}

.fsw-header .burger.active span:nth-child(2) {
	opacity: 0;
}

.fsw-header .burger.active span:nth-child(3) {
	transform: rotate(-45deg) translateY(-7px);
}

.fsw-header .burger span {
	height: 3px;
	background: #111827;
	border-radius: 3px;
	transition: 0.3s ease;
}

@media (max-width: 772px) {
	.fsw-header .burger {
		display: flex;
	}

	.fsw-header .nav-links {
		position: absolute;
		top: 72px;
		left: 0;
		right: 0;
		flex-direction: column;
		background: white;
		border-top: 1px solid var(--line);
		display: none;
		text-align: center;
		padding: 16px 0;
		z-index: 100;
	}

	.fsw-header .nav-links a {
		font-size: 16px;
		font-weight: 600;
	}

	.fsw-header .nav-links.show {
		display: flex;
		padding: 24px 0 16px;
		gap: 14px;
	}

	.fsw-header .nav-cta.nav-mobile-btn {
		width: 100%;
		font-weight: 900;
		margin-top: 8px;
		border-radius: 10px;
		max-width: calc(100% - 40px);
		margin-inline: auto;
	}
}

/* ---------------- SECTION BASE ---------------- */

.fsw-section {
	padding: 60px 0;
	border-top: 1px solid var(--line);
}

.fsw-section.fsw-section-dark {
	background: black;
	color: white;
}

.fsw-section.fsw-section-dark h1,
.fsw-section.fsw-section-dark h2,
.fsw-section.fsw-section-dark h3,
.fsw-section.fsw-section-dark h4,
.fsw-section.fsw-section-dark h5,
.fsw-section.fsw-section-dark h6,
.fsw-section.fsw-section-dark p,
.fsw-section.fsw-section-dark .eyebrow {
	color: white !important;
}

.fsw-root .section-head {
	max-width: 920px;
	margin-bottom: 32px;
}

.fsw-root .eyebrow {
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 700;
	color: #6b7280;
	margin-bottom: 12px;
}

.fsw-root h2 {
	font-size: clamp(34px, 4.8vw, 52px);
	line-height: 1.1;
	letter-spacing: -0.04em;
	margin: 0 0 18px;
	font-weight: 900;
}

.fsw-root .section-head p {
	font-size: 18px;
	color: #374151;
	max-width: 700px;
}

/* ---------------- HERO ---------------- */

.fsw-hero {
	border-top: 0;
	padding: 120px 0 30px;
	position: relative;
	overflow: hidden;
}

.fsw-hero .container {
	overflow: hidden;
}

.fsw-hero .hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 64px;
	align-items: center;
}

.fsw-hero .badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	border-radius: 999px;
	background: #f3f4f6;
	border: 1px solid var(--line);
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 18px;
}

.fsw-hero h1 {
	font-size: 36px;
	line-height: 1.05;
	letter-spacing: -0.05em;
	margin: 0 0 22px;
	font-weight: 700;
}

.fsw-hero h1 span {
	font-size: 72px;
	padding: 2px 0px;
	border-radius: 10px;
	box-decoration-break: clone;
	font-weight: 900;
}

.fsw-hero p {
	font-size: 18px;
	color: #374151;
	max-width: 620px;
	margin-bottom: 28px;
}

.fsw-hero .hero-cta {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.fsw-root .btn-primary {
	padding: 16px 22px;
	border-radius: 14px;
	background: var(--black);
	color: white;
	font-weight: 700;
	font-size: 15px;
	transition: all .2s ease;
	cursor: pointer;
	display: inline-block;
	border: 0;
}

.fsw-root .btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.fsw-root .btn-secondary {
	padding: 16px 22px;
	border-radius: 14px;
	border: 0px;
	background: var(--accent);
	font-weight: 600;
	font-size: 15px;
	color: #111827;
	transition: all .2s ease;
	display: inline-block;
}

.fsw-root .btn-secondary:hover {
	background: #000000 !important;
	color: white !important;
	transform: translateY(-1px);
}

.fsw-hero .main-rating-wrapper {
	display: flex;
	align-items: center;
	width: 100%;
	margin-top: 16px;
}

.fsw-hero .main-rating-img {
	display: flex;
}

.fsw-hero .main-rating-img img {
	width: 36px;
	max-width: 36px;
	max-height: 36px;
	border-radius: 50%;
	border: 2px solid black;
}

.fsw-hero .main-rating-img img:not(:first-child) {
	margin-left: -17px;
}

.fsw-hero .main-rating {
	display: block;
	align-items: center;
	gap: 5px;
	margin-left: 8px;
}

.fsw-hero .main-stars {
	display: flex;
	align-items: center;
	gap: 2px;
	margin-bottom: -4px;
}

.fsw-hero .main-stars img {
	display: block;
	width: 13px;
	height: 13px;
}

.fsw-hero .main-rating .text-left {
	margin-top: 8px;
	font-size: 14px;
}

.fsw-hero .brands-track {
	display: flex;
	width: max-content;
	animation: fsw-scroll 20s linear infinite;
	margin-top: 30px;
}

.fsw-hero .brand {
	flex: 0 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

@keyframes fsw-scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

/* ---------------- CARD GRIDS (platform / execution / engine) ---------------- */

.fsw-card-grid {
	display: grid;
	gap: 22px;
}

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

.fsw-card-grid.fsw-cols-3 {
	grid-template-columns: repeat(3, 1fr);
}

.fsw-card-grid.fsw-cols-4 {
	grid-template-columns: repeat(4, 1fr);
}

.fsw-root .platform-card {
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: 26px;
	background: white;
	transition: all .2s ease;
}

.fsw-root .platform-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.fsw-root .platform-card h4 {
	margin: 0 0 10px;
	font-size: 18px;
	letter-spacing: -0.02em;
}

.fsw-root .platform-card p {
	font-size: 14px;
	color: #6b7280;
	margin: 0;
}

.fsw-root .platform-card.fsw-dark-card {
	background: black;
	padding: 40px 42px;
}

.fsw-root .platform-card.fsw-dark-card h4 {
	color: #a3e635;
	font-size: 18px;
}

.fsw-root .platform-card.fsw-dark-card h4 strong {
	font-size: 22px;
	display: block;
	margin-bottom: 2px;
}

.fsw-root .platform-card.fsw-dark-card p {
	color: white;
	font-size: 14px;
}

.fsw-root .engine-card {
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: 28px;
	background: white;
	transition: all .2s ease;
}

.fsw-root .engine-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
}

.fsw-root .engine-step {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #a3e635;
	margin-bottom: 8px;
}

.fsw-root .engine-card h4 {
	margin: 0 0 10px;
	font-size: 18px;
	letter-spacing: -0.02em;
}

.fsw-root .engine-card p {
	font-size: 14px;
	color: #6b7280;
	margin: 0;
}

/* ---------------- STATS / INSIGHTS ---------------- */

.fsw-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-top: 48px;
}

.fsw-root .stat {
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: 28px;
	background: black;
}

.fsw-root .stat strong {
	font-size: 36px;
	display: block;
	letter-spacing: -0.05em;
	color: #a3e635;
}

.fsw-root .stat strong span {
	font-size: 28px !important;
	color: #a3e635 !important;
}

.fsw-root .stat span {
	font-size: 14px;
	color: #fff;
	font-weight: 600;
}

/* ---------------- CTA ---------------- */

.fsw-cta {
	padding: 96px 0;
	text-align: center;
}

.fsw-cta .cta-box {
	width: 100%;
	margin: 0 auto;
	padding: 64px 48px 68px;
	border-radius: 28px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
	position: relative;
	overflow: hidden;
	border: 1px solid var(--line);
	text-align: left;
}

.fsw-cta .cta-box::after {
	content: "";
	position: absolute;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(124, 255, 91, 0.18), transparent 60%);
	top: -200px;
	right: -200px;
	pointer-events: none;
}

.fsw-cta .cta-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 48px;
	align-items: center;
}

.fsw-cta .cta-box h2 {
	font-size: clamp(28px, 4vw, 42px);
	letter-spacing: -0.02em;
	margin: 0px;
}

.fsw-cta .cta-box h3 {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin: 0px;
}

.fsw-cta .cta-box p {
	color: var(--muted);
	font-size: 17px;
	margin-bottom: 28px;
}

.fsw-cta .cta-form {
	display: grid;
	gap: 14px;
}

.fsw-cta .cta-form input {
	padding: 14px 16px;
	border-radius: 12px;
	border: 1px solid var(--line);
	font-size: 14px;
	width: 100%;
}

.fsw-cta .cta-form button {
	width: 100%;
}

.fsw-cta .cta-form .cta-note {
	font-size: 12px;
	color: var(--muted);
}

/* ---------------- SUMMITS ---------------- */

.fsw-summit-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.fsw-root .summit-card {
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	overflow: hidden;
	background: white;
	transition: all .2s ease;
}

.fsw-root .summit-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.fsw-root .summit-img {
	height: 140px;
	background: linear-gradient(135deg, #111827, #4b5563);
	background-size: cover;
	background-position: bottom;
	position: relative;
}

.fsw-root .summit-img span {
	position: absolute;
	bottom: 12px;
	left: 12px;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(8px);
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
}

.fsw-root .summit-body {
	padding: 18px 20px 22px;
}

.fsw-root .summit-body h4 {
	margin: 0 0 6px;
	font-size: 18px;
	letter-spacing: -0.02em;
}

.fsw-root .summit-body p {
	margin: 0;
	font-size: 14px;
	color: #6b7280;
}

.fsw-root .btn--apply {
	width: fit-content;
	padding: 4px 4px !important;
	background: transparent;
	color: black !important;
	border-radius: 8px;
	transition: .3s;
	font-weight: 700 !important;
	margin-top: 14px;
	display: block;
	font-size: 13px;
}

.fsw-root .btn--apply:hover {
	color: var(--accent) !important;
}

.fsw-summit-section.fsw-section-dark .btn--apply {
	color: black !important;
}

/* ---------------- AUDIENCE BREAKDOWN ---------------- */

.fsw-audience-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: stretch;
}

/* ---------------- NETWORK / PARTNERS ---------------- */

.fsw-network-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 38px 30px;
	max-width: 1200px;
}

.fsw-root .support.partner {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 138px;
}

.fsw-root .support.partner img {
	max-height: 60px !important;
	object-fit: contain;
}

/* ---------------- FOCUS AREAS ---------------- */

.fsw-focus-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.fsw-root .focus-block {
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 24px 20px;
	background: #ffffff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
	transition: box-shadow 0.3s ease;
}

.fsw-root .focus-block:hover {
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.fsw-root .focus-block h4 {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 600;
	color: #111827;
}

.fsw-root .focus-block ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 6px;
}

.fsw-root .focus-block li {
	font-size: 14px;
	color: var(--muted);
	padding-left: 18px;
	position: relative;
}

.fsw-root .focus-block li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--accent);
	font-weight: 900;
}

/* ---------------- TESTIMONIALS ---------------- */

.fsw-testimonial-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin-top: 12px;
	margin-bottom: 32px;
}

.fsw-reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.fsw-root .testimonial-card {
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 8px;
	background: rgba(255, 255, 255, 1);
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.fsw-root .testimonial-video-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 9/16;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--line);
	background: #000;
}

.fsw-root .testimonial-video-wrap video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fsw-root .testimonial-person {
	display: flex;
	gap: 12px;
	align-items: center;
	margin-top: auto;
	padding: 0 8px 8px;
}

.fsw-root .testimonial-avatar {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: linear-gradient(135deg, #7CFF5B, #9BFF7A);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	color: #061005;
	font-size: 12px;
	flex-shrink: 0;
}

.fsw-root .testimonial-meta {
	display: flex;
	flex-direction: column;
}

.fsw-root .testimonial-meta strong {
	display: block;
	font-size: 14px;
}

.fsw-root .testimonial-meta span {
	font-size: 12px;
	color: var(--muted);
}

.fsw-root .engine-card.testimonial-card {
	padding: 28px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-bottom: 24px;
	position: relative;
}

.fsw-root .testimonial-text {
	font-size: 15px;
	color: #374151;
	line-height: 1.5;
	margin-bottom: 16px !important;
}

.fsw-root .testimonial-footer {
	display: flex;
	align-items: center;
	gap: 14px;
	border-top: 1px solid var(--line);
	padding-top: 16px;
	margin-top: auto;
}

.fsw-root .testimonial-footer img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #e5e7eb;
}

.fsw-root .testimonial-footer strong {
	font-size: 15px;
	color: #111827;
}

.fsw-root .testimonial-footer span {
	font-size: 13px;
	color: #6b7280;
}

.fsw-testimonials .swiper {
	display: none;
}

@media (max-width: 772px) {
	.fsw-testimonials .fsw-testimonial-grid,
	.fsw-testimonials .fsw-reviews-grid {
		display: none;
	}

	.fsw-testimonials .swiper {
		display: block;
		padding: 12px 0 14px 0;
	}

	.fsw-testimonials .swiper-slide {
		width: 85%;
		max-height: 550px;
		padding-bottom: 14px;
		box-sizing: border-box;
		background: white;
		padding: 20px 20px;
	}

	.fsw-testimonials .swiper-slide .engine-card {
		border: 0;
		padding: 0;
		height: 230px;
	}

	.fsw-testimonials .swiper-slide video {
		max-height: 420px;
		border-radius: 8px;
	}

	.fsw-testimonials .swiper-pagination {
		display: none;
	}
}

/* ---------------- FAQ ---------------- */

.fsw-faq-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px 20px;
}

.fsw-root .faq-item {
	border-top: 1px solid #ddd;
	padding-top: 20px;
}

.fsw-root .faq-question {
	width: 100%;
	background: none;
	border: none;
	color: black;
	font-size: 18px;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding: 0px;
}

.fsw-root .faq-question .icon {
	background: #c6ff00;
	color: #000;
	font-weight: bold;
	max-width: 28px;
	min-width: 28px;
	width: 28px;
	max-height: 28px;
	min-height: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
	flex-shrink: 0;
}

.fsw-root .faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.fsw-root .faq-answer p {
	margin: 0;
}

.fsw-root .faq-item.active .faq-answer {
	max-height: 400px;
	margin-top: 15px;
}

.fsw-root .faq-item.active .icon {
	transform: rotate(45deg);
}

@media (max-width: 992px) {
	.fsw-faq-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

/* ---------------- FOOTER ---------------- */

.fsw-footer {
	border-top: 1px solid var(--line);
	padding: 80px 0 60px;
}

.fsw-footer .footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
}

.fsw-footer .footer-brand h4 {
	margin: 0 0 14px;
	font-size: 20px;
	font-weight: 900;
	letter-spacing: -0.04em;
}

.fsw-footer .footer-brand a {
	transition: .3s;
}

.fsw-footer .footer-brand a:hover {
	color: #a3e635;
}

.fsw-footer .footer-brand p {
	margin: 0;
	font-size: 14px;
	color: #6b7280;
	max-width: 360px;
}

.fsw-footer .footer-brand .navbar-brand img {
	width: 215px;
	max-height: 50px;
	object-fit: contain;
}

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

.fsw-footer .socials img {
	width: inherit;
	height: 17px;
	object-fit: contain;
}

.fsw-footer .socials a {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid var(--line);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 800;
	background: white;
	transition: all .2s ease;
}

.fsw-footer .socials a:hover {
	background: var(--accent);
	transform: translateY(-2px);
}

.fsw-footer .footer-col h5 {
	margin: 0 0 12px;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #6b7280;
	font-weight: 700;
}

.fsw-footer .footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.fsw-footer .footer-col li {
	width: fit-content;
	position: relative;
	margin-bottom: 10px;
	font-size: 14px;
	color: #111827;
	font-weight: 500;
}

.fsw-footer .footer-col li:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	background-color: var(--accent);
	width: 100%;
	height: 2.5px;
	border-radius: 8px;
	transform: scaleX(0);
	transition: .3s;
}

.fsw-footer .footer-col li:hover::before {
	transform: scaleX(1);
}

.fsw-footer .footer-bottom {
	margin-top: 60px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}

.fsw-footer .footer-bottom__list {
	display: flex;
	align-items: center;
	gap: 24px;
	list-style: none;
	padding: 0;
	margin: 0;
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 980px) {
	.fsw-hero .hero-grid {
		grid-template-columns: 1fr;
	}

	.fsw-card-grid.fsw-cols-4 {
		grid-template-columns: repeat(2, 1fr);
	}

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

	.fsw-network-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.fsw-footer .footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 560px) {
	.fsw-stats {
		grid-template-columns: 1fr;
	}

	.fsw-focus-grid {
		grid-template-columns: 1fr;
	}

	.fsw-footer .footer-grid {
		display: flex;
		flex-wrap: wrap;
		gap: 50px !important;
	}
}

@media (max-width: 772px) {
	.fsw-hero {
		padding: 60px 0 30px;
	}

	.fsw-hero .hero-cta a {
		flex: 1;
		width: auto;
		text-align: center;
	}

	.fsw-hero h1 span {
		font-size: 36px;
		line-height: 130%;
	}

	.fsw-hero h1 {
		font-size: 18px;
		line-height: 130%;
		margin: 0 0 14px;
	}

	.fsw-hero p {
		font-size: 16px;
	}

	.fsw-section {
		padding: 30px 0px;
	}

	.fsw-footer {
		padding: 40px 0px 20px;
	}

	.fsw-footer .footer-grid {
		gap: 16px !important;
	}

	.fsw-footer .footer-bottom {
		flex-direction: column;
		gap: 0px;
		align-items: baseline;
	}

	.fsw-footer .footer-bottom__list {
		flex-direction: column;
		gap: 10px;
		text-align: left;
		align-items: baseline;
		font-size: 14px;
	}

	.fsw-footer .footer-bottom {
		margin-top: 30px;
		justify-content: center;
	}

	.fsw-root .section-head {
		margin-bottom: 24px;
	}

	.fsw-reviews-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.fsw-audience-grid {
		grid-template-columns: 1fr !important;
		gap: 16px !important;
	}

	.fsw-stats {
		gap: 14px;
	}

	.fsw-root .stat {
		padding: 16px;
	}

	.fsw-root .stat strong {
		font-size: 30px;
	}

	.fsw-cta .cta-grid {
		grid-template-columns: 1fr !important;
		gap: 10px !important;
	}

	.fsw-cta .cta-box p {
		margin-bottom: 14px;
	}

	.fsw-cta .cta-box {
		padding: 40px 24px;
	}

	.fsw-root .stat span {
		font-size: 13px;
		line-height: 120%;
	}

	.fsw-summit-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.fsw-root .summit-img {
		height: 170px;
	}

	.fsw-focus-grid {
		gap: 12px;
	}

	.fsw-card-grid.fsw-cols-3,
	.fsw-card-grid.fsw-cols-4 {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.fsw-network-grid {
		grid-template-columns: 1fr 1fr;
		align-items: center;
		justify-content: space-around;
		padding: 10px 0px 40px;
	}

	.fsw-root .support.partner {
		width: auto;
		max-width: 22%;
	}

	.fsw-root h2 {
		font-size: 26px;
		margin: 0 0 12px;
	}

	.fsw-testimonial-grid {
		grid-template-columns: 1fr;
	}
}

.fsw-br-mobile {
	display: block;
}

@media (max-width: 772px) {
	.fsw-br-mobile {
		display: none;
	}
}
