:root {
	--fr-bg: #f4fbff;
	--fr-surface: #ffffff;
	--fr-surface-alt: #eaf7ff;
	--fr-text: #0e2438;
	--fr-muted: #5a7184;
	--fr-line: #cfe5f4;
	--fr-primary: #3aa7e8;
	--fr-primary-strong: #1888cc;
	--fr-primary-soft: #d7effd;
	--fr-radius-lg: 4px;
	--fr-radius-md: 4px;
	--fr-shadow: 0 20px 45px rgba(20, 91, 136, 0.08);
	--fr-shell: 1400px;
	--fr-page-gutter: 28px;
	--fr-font-body: "Mulish", Arial, Helvetica, sans-serif;
	--fr-font-heading: "Mulish", Arial, Helvetica, sans-serif;
	--fr-font-size-h1: clamp(2.1rem, 4.6vw, 3.6rem);
	--fr-font-size-h2: clamp(1.75rem, 3vw, 2.6rem);
	--fr-font-size-h3: clamp(1.35rem, 2.1vw, 1.95rem);
	--fr-font-size-h4: 1.22rem;
	--fr-font-size-h5: 1.02rem;
	--fr-font-size-h6: 0.95rem;
	--fr-font-size-p: 1rem;
	--fa-primary: #3aa7e8;
	--fa-primary-strong: #1888cc;
	--fa-secondary: #0e2438;
	--flowrage-adminbar-offset: 0px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at top left, rgba(58, 167, 232, 0.16), transparent 30%),
		linear-gradient(180deg, #f9fdff 0%, #eef8fd 100%);
	color: var(--fr-text);
	font-family: var(--fr-font-body);
	line-height: 1.65;
}

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

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

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

body.flowrage-menu-open {
	overflow: hidden;
}

.flowrage-header,
.flowrage-footer-clone .container {
	--flowrage-max-width: var(--fr-shell);
}

.flowrage-header {
	background: #fff;
	border-bottom: 1px solid #e3e3e3;
	position: relative;
	z-index: 120;
	padding: 0;
	box-shadow: none;
}

.flowrage-header.flowrage-header--sticky-enabled {
	position: relative;
}

.flowrage-header.flowrage-header--sticky-enabled .flowrage-header-top,
.flowrage-header.flowrage-header--sticky-enabled .flowrage-header-main,
.flowrage-header.flowrage-header--sticky-enabled .flowrage-header-main .flowrage-header-container,
.flowrage-header.flowrage-header--sticky-enabled .custom-logo,
.flowrage-header.flowrage-header--sticky-enabled .flowrage-primary-menu > li > a,
.flowrage-header.flowrage-header--sticky-enabled .header-cta {
	transition: 0.2s ease;
}

.flowrage-header.flowrage-header--sticky-enabled.is-stuck {
	padding-top: 72px;
}

.flowrage-header.flowrage-header--sticky-enabled .flowrage-header-main.is-stuck .flowrage-header-container {
	min-height: 72px;
}

.flowrage-header.flowrage-header--sticky-enabled .flowrage-header-main.is-stuck {
	position: fixed;
	top: var(--flowrage-adminbar-offset);
	left: 0;
	right: 0;
	z-index: 120;
	background: #ffffff;
	border-bottom: 1px solid #e3e3e3;
	box-shadow: 0 10px 28px rgba(14, 36, 56, 0.08);
}

.flowrage-header .site-branding {
	text-align: left;
	margin-bottom: 0;
}

.flowrage-header .site-branding > a {
	display: inline-block;
	max-width: 100%;
}

.flowrage-header .main-navigation {
	background: transparent;
	justify-content: flex-start;
}

.flowrage-header .main-navigation a {
	color: inherit;
	padding: 0;
	font-weight: inherit;
}

.flowrage-header-container {
	max-width: var(--flowrage-max-width);
	margin: 0 auto;
	padding: 0 var(--fr-page-gutter);
}

.flowrage-header-top {
	background: #f3f6fa;
	border-bottom: 1px solid #e3e3e3;
}

.flowrage-header-top .flowrage-header-container {
	min-height: 52px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.flowrage-header-social,
.flowrage-primary-menu,
.flowrage-primary-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.flowrage-header-social {
	display: flex;
	align-items: center;
	gap: 18px;
}

.flowrage-header-social a {
	color: #8a8a8a;
	font-size: 15px;
	line-height: 1;
}

.flowrage-header-social a:hover {
	color: var(--fa-secondary);
}

.flowrage-header-contact {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-left: auto;
	flex-wrap: wrap;
}

.header-whatsapp,
.flowrage-header-email {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	text-decoration: none;
}

.header-whatsapp {
	color: #25d366;
	font-weight: 500;
}

.flowrage-header-email {
	color: #2f2f2f;
}

.header-whatsapp i {
	font-size: 20px;
	line-height: 1;
}

.flowrage-header-main .flowrage-header-container {
	min-height: 100px;
	display: grid;
	grid-template-columns: 235px 1fr;
	align-items: center;
	column-gap: 40px;
}

.flowrage-header.flowrage-header--sticky-enabled .flowrage-header-main {
	position: relative;
	background: #ffffff;
	border-bottom: 1px solid #e3e3e3;
}

.flowrage-nav-toggle {
	display: none;
}

.custom-logo {
	max-height: 102px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
}

.flowrage-main-nav-wrap,
.flowrage-main-navigation,
.header-actions {
	display: flex;
	align-items: center;
}

.flowrage-main-nav-wrap {
	justify-content: space-between;
	gap: 24px;
	width: 100%;
}

.flowrage-main-navigation {
	gap: 20px;
	flex: 1 1 auto;
	min-width: 0;
}

.flowrage-main-navigation .flowrage-primary-menu-mobile {
	display: none;
}

.flowrage-primary-menu {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	flex-wrap: nowrap;
}

.flowrage-primary-menu > li {
	position: relative;
	display: flex;
	align-items: center;
}

.flowrage-primary-menu > li > a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0 12px;
	min-height: 34px;
	font-size: 16px;
	font-weight: 500;
	color: #0f0f0f;
	line-height: 1;
	white-space: nowrap;
	position: relative;
	letter-spacing: 0.2px;
}

.flowrage-primary-menu > li.menu-item-has-children > a::after {
	content: "\f078";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 10px;
	margin-left: 2px;
	color: #343434;
}

.flowrage-primary-menu > li > a:hover,
.flowrage-primary-menu > li.current-menu-item > a,
.flowrage-primary-menu > li.current-menu-ancestor > a {
	color: var(--fa-secondary);
}

.flowrage-primary-menu > li > .sub-menu {
	display: none;
	position: absolute;
	top: calc(100% + 12px);
	left: 0;
	min-width: 264px;
	padding: 10px 0;
	background: #ffffff;
	border: 1px solid #dfe4ea;
	box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
	border-radius: 4px;
	z-index: 90;
}

.flowrage-primary-menu > li > .sub-menu::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 100%;
	height: 12px;
}

.flowrage-primary-menu .sub-menu li {
	position: relative;
}

.flowrage-primary-menu .sub-menu a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 16px;
	font-size: 14px;
	color: #1a2a3d;
	line-height: 1.35;
}

.flowrage-primary-menu .sub-menu a:hover {
	background: #f2f7fb;
	color: var(--fa-primary-strong);
}

.flowrage-menu-item-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
}

.flowrage-menu-item-icon img {
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.flowrage-primary-menu li:hover > .sub-menu,
.flowrage-primary-menu li:focus-within > .sub-menu,
.flowrage-primary-menu li.is-open > .sub-menu {
	display: block;
}

.flowrage-primary-menu .sub-menu .sub-menu {
	top: -15px;
	left: 100%;
}

.flowrage-submenu-toggle,
.flowrage-panel-close {
	display: none;
}

.flowrage-panel-top,
.flowrage-panel-contact,
.flowrage-panel-meta,
.flowrage-panel-author-name,
.flowrage-panel-whatsapp {
	display: none;
}

.header-actions {
	gap: 12px;
}

.header-cta {
	position: relative;
	background: linear-gradient(135deg, var(--fr-primary) 0%, var(--fr-primary-strong) 100%);
	border: 0 !important;
	color: #ffffff;
	font-weight: 700;
	font-size: 13px;
	height: 34px;
	padding: 0 14px;
	text-decoration: none;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	border-radius: 2px;
}

.header-cta:hover {
	filter: brightness(0.96);
}

h1,
h2,
h3,
h4 {
	margin: 0 0 0.8rem;
	font-family: var(--fr-font-heading);
	line-height: 1.05;
	letter-spacing: -0.03em;
}

h1 {
	font-size: var(--fr-font-size-h1);
}

h2 {
	font-size: var(--fr-font-size-h2);
}

h3 {
	font-size: var(--fr-font-size-h3);
}

h4 {
	font-size: var(--fr-font-size-h4);
}

h5,
h6 {
	margin: 0 0 0.8rem;
	font-family: var(--fr-font-heading);
	line-height: 1.15;
}

h5 {
	font-size: var(--fr-font-size-h5);
}

h6 {
	font-size: var(--fr-font-size-h6);
}

p {
	margin: 0 0 1rem;
	font-size: var(--fr-font-size-p);
}

.fr-shell {
	width: min(calc(100% - (var(--fr-page-gutter) * 2)), var(--fr-shell));
	margin: 0 auto;
}

.fr-site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(249, 253, 255, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(207, 229, 244, 0.9);
}

.fr-site-header__inner,
.fr-site-header__nav,
.fr-menu,
.fr-button-row,
.fr-breadcrumbs,
.fr-site-footer__bottom {
	display: flex;
	align-items: center;
}

.fr-site-header__inner {
	justify-content: space-between;
	gap: 20px;
	padding: 18px 0;
}

.fr-brand__title {
	margin: 0;
	font-size: 1.35rem;
}

.fr-brand__tagline {
	margin: 4px 0 0;
	color: var(--fr-muted);
	font-size: 0.92rem;
}

.fr-site-header__nav,
.fr-menu {
	gap: 12px;
}

.fr-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.fr-menu a,
.fr-footer-menu a {
	padding: 10px 12px;
	border-radius: 4px;
	color: var(--fr-muted);
	font-weight: 600;
}

.fr-menu a:hover,
.fr-footer-menu a:hover,
.fr-text-link:hover {
	color: var(--fr-primary-strong);
}

.fr-nav-toggle {
	display: none;
	border: 1px solid var(--fr-line);
	background: var(--fr-surface);
	padding: 10px 14px;
	border-radius: 4px;
}

.fr-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 13px 18px;
	border-radius: 4px;
	border: 1px solid transparent;
	font-weight: 700;
	transition: 0.2s ease;
}

.fr-button--primary {
	background: linear-gradient(135deg, var(--fr-primary) 0%, var(--fr-primary-strong) 100%);
	color: #fff;
	box-shadow: var(--fr-shadow);
}

.fr-button--primary:hover {
	transform: translateY(-1px);
}

.fr-button--secondary {
	background: transparent;
	border-color: var(--fr-line);
	color: #fff;
}

.fr-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	color: var(--fr-primary-strong);
	font-weight: 700;
}

.fr-main {
	padding-bottom: 64px;
}

.fr-hero,
.fr-page-hero,
.fr-landing-hero,
.fr-section {
	padding: 28px 0;
}

.fr-hero {
	padding-top: 48px;
}

.fr-hero__grid,
.fr-two-column,
.fr-proof-grid,
.fr-site-footer__grid,
.fr-landing-hero__inner {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.fr-hero h1,
.fr-page-hero h1,
.fr-landing-hero h1 {
	font-size: var(--fr-font-size-h1);
	max-width: 12ch;
}

.fr-hero__text,
.fr-page-hero__text,
.fr-section-text,
.fr-entry-content > p,
.fr-entry-content li {
	color: var(--fr-muted);
	font-size: var(--fr-font-size-p);
}

.fr-eyebrow,
.fr-card__kicker {
	margin: 0 0 12px;
	color: var(--fr-primary-strong);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.fr-hero-card,
.fr-card,
.fr-content-panel,
.fr-inline-cta,
.fr-proof-panel {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid var(--fr-line);
	border-radius: var(--fr-radius-lg);
	box-shadow: var(--fr-shadow);
}

.fr-hero-card,
.fr-content-panel,
.fr-proof-panel,
.fr-inline-cta {
	padding: clamp(22px, 4vw, 32px);
}

.fr-check-list,
.fr-footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.fr-check-list {
	display: grid;
	gap: 12px;
}

.fr-check-list li {
	position: relative;
	padding-left: 24px;
}

.fr-check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.65em;
	width: 10px;
	height: 10px;
	border-radius: 4px;
	background: var(--fr-primary);
	transform: translateY(-50%);
}

.fr-stat-list,
.fr-button-row,
.fr-breadcrumbs {
	flex-wrap: wrap;
	gap: 12px;
}

.fr-stat-list {
	display: flex;
	margin-top: 24px;
}

.fr-stat {
	min-width: 140px;
	padding: 16px 18px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid var(--fr-line);
}

.fr-stat strong {
	display: block;
	font-size: 1.35rem;
}

.fr-stat span,
.fr-page-hero__meta,
.fr-breadcrumbs a,
.fr-breadcrumbs span {
	color: var(--fr-muted);
	font-size: 0.94rem;
}

.fr-card-grid,
.fr-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.fr-card {
	display: flex;
	flex-direction: column;
	padding: 24px;
}

.fr-card h3,
.fr-card h2 {
	font-size: var(--fr-font-size-h3);
}

.fr-section--accent {
	background: linear-gradient(180deg, rgba(215, 239, 253, 0.52) 0%, rgba(244, 251, 255, 0) 100%);
}

.fr-proof-panel {
	display: flex;
	flex-direction: column;
	justify-content: end;
	background: linear-gradient(180deg, #dff1ff 0%, #ffffff 100%);
}

.fr-page-hero__text {
	max-width: 62ch;
}

.fr-reading-shell {
	width: min(100% - 32px, 820px);
}

.fr-hero-homepage {
	padding-bottom: 0;
}

.fr-builder-hero {
	padding: 34px 0 18px;
	background:
		radial-gradient(circle at 77% 24%, rgba(58, 167, 232, 0.12), transparent 20%),
		linear-gradient(180deg, #ffffff 0%, #fefefe 100%);
}

.fr-builder-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
	gap: 22px;
	align-items: center;
}

.fr-builder-hero__content {
	padding: 10px 0 0;
}

.fr-builder-hero__eyebrow {
	margin: 0 0 24px;
	color: #2d3238;
	font-size: 1.02rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.fr-builder-hero__title {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin: 0;
	line-height: 0.9;
}

.fr-builder-hero__title-main,
.fr-builder-hero__title-accent {
	font-family: var(--fr-font-heading);
	font-size: clamp(3.2rem, 5.5vw, 5rem);
	font-weight: 900;
	letter-spacing: -0.06em;
	text-transform: uppercase;
}

.fr-builder-hero__title-main {
	color: #39a8e8;
}

.fr-builder-hero__title-accent {
	color: #e1842b;
}

.fr-builder-hero__cta-row {
	display: flex;
	align-items: center;
	gap: 22px;
	margin-top: 38px;
}

.fr-builder-hero__input-mock {
	display: inline-flex;
	align-items: center;
	min-width: 430px;
	min-height: 56px;
	padding: 0 22px;
	border: 1px solid #d8ddb6;
	border-radius: 14px;
	background: #fdfdf8;
}

.fr-builder-hero__input-mock span {
	color: #a6ac9e;
	font-size: 0.98rem;
}

.fr-builder-hero__cta.fr-button--primary {
	min-height: 56px;
	min-width: 314px;
	padding: 0 36px;
	border-radius: 14px;
	background: linear-gradient(135deg, #db7e23 0%, #ea8d2a 100%);
	box-shadow: none;
	font-size: 0.98rem;
	font-weight: 800;
	letter-spacing: 0.01em;
	white-space: nowrap;
	flex: 0 0 auto;
}

.fr-builder-hero__logo-strip {
	margin-top: 38px;
	max-width: 800px;
}

.fr-builder-hero__logo-strip img {
	width: 100%;
	max-height: 92px;
	object-fit: contain;
	object-position: left center;
}

.fr-builder-hero__visual,
.fr-builder-hero__visual-stage {
	position: relative;
	min-height: 560px;
}

.fr-builder-hero__quote {
	position: absolute;
	left: 34px;
	top: 128px;
	z-index: 4;
	width: 300px;
	padding: 18px 22px 14px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 26px 42px rgba(19, 72, 112, 0.12);
	text-align: center;
}

.fr-builder-hero__quote-top {
	display: flex;
	justify-content: flex-start;
	margin-bottom: 8px;
}

.fr-builder-hero__quote-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 999px;
	background: #ffd54a;
	color: #4f4310;
	font-size: 2rem;
	font-weight: 900;
	line-height: 1;
}

.fr-builder-hero__quote-text {
	margin: 0;
	color: #3f4039;
	font-size: 0.98rem;
	font-weight: 800;
	line-height: 1.45;
}

.fr-builder-hero__quote-author {
	margin: 10px 0 0;
	color: #39a8e8;
	font-size: 0.96rem;
	font-weight: 800;
}

.fr-builder-hero__orb {
	position: absolute;
	border-radius: 50%;
}

.fr-builder-hero__orb--outer {
	right: 42px;
	top: 18px;
	width: 470px;
	height: 470px;
	background: linear-gradient(135deg, #1594d6 0%, #a7def8 100%);
}

.fr-builder-hero__orb--inner {
	right: 88px;
	top: 68px;
	width: 392px;
	height: 392px;
	background: linear-gradient(135deg, rgba(42, 154, 220, 0.94) 0%, rgba(152, 220, 249, 0.88) 100%);
}

.fr-builder-hero__orb--soft {
	right: 6px;
	top: 82px;
	width: 330px;
	height: 330px;
	background: linear-gradient(135deg, rgba(122, 203, 244, 0.32) 0%, rgba(215, 244, 255, 0.7) 100%);
}

.fr-builder-hero__portrait {
	position: absolute;
	right: 28px;
	bottom: 0;
	z-index: 3;
	width: 470px;
}

.fr-builder-hero__portrait img {
	width: 100%;
	max-height: 520px;
	object-fit: contain;
	filter: drop-shadow(0 24px 30px rgba(60, 83, 24, 0.12));
}

.fr-builder-trust-strip {
	padding: 0 0 28px;
	background: #ffffff;
}

.fr-builder-trust-strip__grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1.28fr;
	gap: 18px;
	align-items: center;
	padding: 22px 34px;
	background: linear-gradient(180deg, #f8fcf1 0%, #fbfdf6 100%);
}

.fr-builder-trust-strip__item {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 104px;
}

.fr-builder-trust-strip__item--google,
.fr-builder-trust-strip__item--clutch {
	display: grid;
	grid-template-rows: auto auto;
	justify-items: center;
	gap: 6px;
}

.fr-builder-trust-strip__brand img {
	width: 100%;
	max-height: 74px;
	object-fit: contain;
}

.fr-builder-trust-strip__meta {
	display: flex;
	align-items: flex-end;
	gap: 14px;
}

.fr-builder-trust-strip__meta strong {
	color: #2f2f2a;
	font-size: 2.1rem;
	font-weight: 900;
	line-height: 1;
}

.fr-builder-trust-strip__reviews {
	display: grid;
	gap: 2px;
	padding-left: 14px;
	border-left: 1px solid rgba(229, 187, 234, 0.4);
}

.fr-builder-trust-strip__reviews span:last-child {
	color: #2d3238;
	font-size: 0.92rem;
	font-weight: 700;
}

.fr-builder-trust-strip__stars {
	color: #f3cb41;
	font-size: 0.98rem;
	letter-spacing: 0.12em;
	line-height: 1;
}

.fr-builder-trust-strip__item--wide {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 16px;
	align-items: center;
	justify-items: start;
}

.fr-builder-trust-strip__avatars img {
	width: 100%;
	max-height: 54px;
	object-fit: contain;
}

.fr-builder-trust-strip__client-copy {
	display: grid;
	gap: 10px;
}

.fr-builder-trust-strip__client-copy p {
	margin: 0;
	color: #2d3238;
	font-size: 0.98rem;
	font-weight: 500;
}

.fr-builder-trust-strip__stars--large {
	font-size: 2rem;
	letter-spacing: 0.2em;
}

.fr-home-hero {
	padding-top: 36px;
	padding-bottom: 10px;
	background:
		radial-gradient(circle at 78% 28%, rgba(148, 189, 78, 0.14), transparent 22%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 252, 245, 0.94) 100%);
}

.fr-home-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
	gap: 28px;
	align-items: stretch;
}

.fr-home-hero__copy {
	padding: 18px 0 10px;
}

.fr-home-hero__copy h1 {
	max-width: 9ch;
	font-size: clamp(3.4rem, 6.4vw, 5.9rem);
	line-height: 0.92;
	letter-spacing: -0.05em;
	margin-bottom: 20px;
	color: #7e9f33;
}

.fr-home-hero__copy .fr-hero__text {
	max-width: 58ch;
	font-size: 1.02rem;
	color: #52616f;
}

.fr-home-hero .fr-eyebrow {
	margin-bottom: 18px;
	color: #27313a;
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.fr-home-hero__cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	align-items: center;
	margin: 26px 0 18px;
}

.fr-home-hero__lead-input {
	display: flex;
	align-items: center;
	min-width: min(100%, 430px);
	padding: 16px 22px;
	border: 1px solid rgba(181, 192, 137, 0.7);
	border-radius: 14px;
	background: #fbfcf5;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.fr-home-hero__lead-input span {
	color: #9aa38f;
	font-size: 0.98rem;
}

.fr-home-hero__cta-row .fr-button--primary {
	min-height: 58px;
	padding: 0 30px;
	border-radius: 14px;
	background: linear-gradient(135deg, #d77a1d 0%, #ea922f 100%);
	box-shadow: none;
	font-size: 1rem;
}

.fr-home-hero__secondary-link {
	margin-bottom: 10px;
}

.fr-home-hero__logo-strip {
	margin: 8px 0 18px;
	max-width: 760px;
}

.fr-home-hero__logo-strip img {
	width: 100%;
	max-height: 82px;
	object-fit: contain;
	object-position: left center;
}

.fr-home-hero__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 10px;
}

.fr-home-hero__chips span {
	display: inline-flex;
	align-items: center;
	padding: 8px 12px;
	border-radius: 999px;
	border: 1px solid rgba(58, 167, 232, 0.22);
	background: rgba(255, 255, 255, 0.86);
	color: var(--fr-primary-strong);
	font-size: 0.9rem;
	font-weight: 700;
}

.fr-home-hero__visual {
	position: relative;
	display: grid;
	grid-template-rows: minmax(560px, 1fr);
	gap: 0;
}

.fr-home-hero__canvas {
	position: relative;
	overflow: hidden;
	min-height: 560px;
	border-radius: 0;
	background: transparent;
	padding: 0;
}

.fr-home-hero__canvas::before,
.fr-home-hero__canvas::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.fr-home-hero__canvas::before {
	width: 420px;
	height: 420px;
	right: 46px;
	top: 42px;
	background: linear-gradient(135deg, #6c9919 0%, #d3ec99 100%);
	opacity: 0.95;
}

.fr-home-hero__canvas::after {
	width: 344px;
	height: 344px;
	right: 8px;
	top: 98px;
	background: linear-gradient(135deg, rgba(113, 160, 22, 0.94) 0%, rgba(234, 245, 204, 0.84) 100%);
}

.fr-home-hero__portrait-ring {
	position: absolute;
	right: 58px;
	top: 40px;
	width: 430px;
	height: 430px;
	border-radius: 50%;
	border: 44px solid rgba(255, 255, 255, 0.24);
	z-index: 1;
}

.fr-home-hero__portrait {
	position: absolute;
	right: 30px;
	bottom: 0;
	width: 470px;
	z-index: 3;
}

.fr-home-hero__portrait img {
	width: 100%;
	max-height: 540px;
	object-fit: contain;
	filter: drop-shadow(0 28px 35px rgba(63, 88, 26, 0.18));
}

.fr-home-hero__quote-card {
	position: absolute;
	left: 28px;
	top: 150px;
	z-index: 4;
	width: 300px;
	padding: 22px 24px 18px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 22px 40px rgba(40, 58, 20, 0.16);
}

.fr-home-hero__quote-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin-bottom: 14px;
	border-radius: 999px;
	background: #ffd84e;
	color: #5d4b00;
	font-size: 2rem;
	font-weight: 900;
	line-height: 1;
}

.fr-home-hero__quote-title {
	margin: 0 0 8px;
	color: #2b3627;
	font-size: 1.02rem;
	font-weight: 800;
	line-height: 1.45;
}

.fr-home-hero__quote-text {
	margin: 0;
	color: #6a7a63;
	font-size: 0.92rem;
	line-height: 1.55;
}

.fr-home-trust {
	padding: 0 0 28px;
}

.fr-home-trust__inner {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 18px;
	align-items: center;
	padding: 18px 22px;
	border: 1px solid rgba(58, 167, 232, 0.16);
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 20px 40px rgba(17, 85, 134, 0.06);
}

.fr-home-trust__inner--media {
	grid-template-columns: 1.05fr 1.05fr 1.4fr;
	gap: 28px;
	padding: 24px 30px;
	border: 0;
	border-radius: 0;
	background: linear-gradient(180deg, #f4f8df 0%, #f7f9eb 100%);
	box-shadow: none;
}

.fr-home-trust__media-card {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 120px;
}

.fr-home-trust__media-card img {
	width: 100%;
	max-height: 120px;
	object-fit: contain;
}

.fr-home-trust__media-card--wide img {
	max-height: 128px;
}

.fr-home-trust__eyebrow {
	display: block;
	margin-bottom: 8px;
	color: var(--fr-muted);
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.fr-home-trust__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.fr-home-trust__badges span,
.fr-logo-cloud__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 14px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid rgba(58, 167, 232, 0.12);
	color: var(--fr-text);
	font-size: 0.9rem;
	font-weight: 700;
}

.fr-logo-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}

.fr-logo-cloud--compact {
	justify-content: flex-start;
}

.fr-home-problem__inner,
.fr-home-about__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 28px;
	align-items: center;
}

.fr-home-problem__copy h2,
.fr-home-about__content h2 {
	max-width: 13ch;
}

.fr-home-problem__panel {
	padding: 28px;
	border-radius: 4px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(236, 248, 255, 0.94) 100%);
	border: 1px solid rgba(58, 167, 232, 0.18);
	box-shadow: var(--fr-shadow);
}

.fr-home-about__media {
	position: relative;
}

.fr-home-about__image {
	overflow: hidden;
	border-radius: 4px;
	border: 1px solid rgba(58, 167, 232, 0.16);
	box-shadow: 0 28px 44px rgba(18, 80, 126, 0.12);
	background: #fff;
}

.fr-home-about__image img {
	width: 100%;
	height: 100%;
	min-height: 380px;
	object-fit: cover;
}

.fr-home-about__content {
	padding: 12px 0;
}

.fr-home-services-band {
	background: linear-gradient(180deg, rgba(19, 61, 100, 0.03) 0%, rgba(58, 167, 232, 0.06) 100%);
}

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

.fr-service-column {
	padding: 24px;
	border: 1px solid rgba(58, 167, 232, 0.14);
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 18px 40px rgba(18, 78, 121, 0.07);
}

.fr-service-column h3 {
	margin: 0 0 16px;
	font-size: 1.34rem;
}

.fr-service-column__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 12px;
}

.fr-service-column__list li {
	padding-bottom: 12px;
	border-bottom: 1px dashed rgba(58, 167, 232, 0.22);
	font-weight: 600;
}

.fr-service-column__list li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.fr-home-consult {
	margin-top: 26px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 20px;
	align-items: center;
	padding: 28px 30px;
	border-radius: 4px;
	background: linear-gradient(135deg, #1c88cd 0%, #2a58d9 100%);
	box-shadow: 0 28px 50px rgba(24, 90, 148, 0.22);
}

.fr-home-consult h3,
.fr-home-consult p {
	color: #fff;
}

.fr-home-consult h3 {
	margin: 0 0 8px;
	font-size: clamp(1.45rem, 2.8vw, 2rem);
}

.fr-home-consult p {
	margin: 0;
	max-width: 60ch;
	color: rgba(255, 255, 255, 0.84);
}

.fr-home-consult .fr-button--primary {
	background: #fff;
	color: #134a77;
	box-shadow: none;
}

.fr-home-process,
.fr-home-testimonials {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(234, 247, 255, 0.45) 100%);
}

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

.fr-process-card,
.fr-testimonial-card {
	padding: 24px;
	border: 1px solid rgba(58, 167, 232, 0.15);
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 18px 38px rgba(16, 74, 113, 0.07);
}

.fr-process-card__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-bottom: 16px;
	border-radius: 999px;
	background: var(--fr-primary-soft);
	color: var(--fr-primary-strong);
	font-size: 0.94rem;
	font-weight: 800;
}

.fr-process-card h3,
.fr-testimonial-card__name {
	margin: 0 0 10px;
}

.fr-testimonial-card__quote {
	margin: 0 0 18px;
	color: var(--fr-text);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.8;
}

.fr-testimonial-card__role {
	display: block;
	color: var(--fr-muted);
	font-size: 0.92rem;
}

.fr-card--post,
.fr-card--study {
	overflow: hidden;
	padding: 0;
}

.fr-card__media img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.fr-card__body {
	padding: 22px;
}

.fr-home-faq__list {
	display: grid;
	gap: 14px;
}

.fr-home-faq__item {
	padding: 0 20px;
	border: 1px solid rgba(58, 167, 232, 0.16);
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 18px 40px rgba(20, 81, 120, 0.06);
}

.fr-home-faq__item summary {
	position: relative;
	padding: 18px 28px 18px 0;
	font-size: 1.05rem;
	font-weight: 800;
	cursor: pointer;
	list-style: none;
}

.fr-home-faq__item summary::-webkit-details-marker {
	display: none;
}

.fr-home-faq__item summary::after {
	content: "+";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	color: var(--fr-primary-strong);
	font-size: 1.3rem;
	font-weight: 700;
}

.fr-home-faq__item[open] summary::after {
	content: "-";
}

.fr-home-faq__item p {
	margin: 0 0 18px;
	color: var(--fr-muted);
}

.fr-entry-content > * {
	max-width: 100%;
}

.fr-entry-content h2 {
	margin-top: 2.4rem;
	font-size: var(--fr-font-size-h2);
}

.fr-entry-content h3 {
	margin-top: 1.8rem;
	font-size: var(--fr-font-size-h3);
}

.fr-entry-content ul,
.fr-entry-content ol {
	padding-left: 20px;
}

.fr-entry-content blockquote {
	margin: 1.5rem 0;
	padding: 18px 22px;
	border-left: 4px solid var(--fr-primary);
	background: var(--fr-surface-alt);
}

.fr-inline-cta {
	margin-top: 32px;
	background: linear-gradient(135deg, #1d8fd0 0%, #5cbcf0 100%);
	color: #fff;
}

.fr-inline-cta p,
.fr-inline-cta h2 {
	color: inherit;
}

.fr-inline-cta .fr-button--primary {
	background: #fff;
	color: var(--fr-primary-strong);
}

.fr-contact-grid,
.fr-pricing-grid,
.fr-404-actions {
	display: grid;
	gap: 18px;
}

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

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

.fr-pricing-card,
.fr-contact-card,
.fr-404-card {
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid var(--fr-line);
	border-radius: var(--fr-radius-lg);
	box-shadow: var(--fr-shadow);
	padding: 24px;
}

.fr-pricing-card__price {
	font-size: 2rem;
	font-weight: 700;
	color: var(--fr-primary-strong);
}

.fr-pricing-card__label {
	display: inline-flex;
	padding: 6px 10px;
	border-radius: 4px;
	background: var(--fr-primary-soft);
	color: var(--fr-primary-strong);
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.flowrage-blog-archive {
	padding: 40px 0 0;
}

.flowrage-blog-archive__container {
	max-width: var(--fr-shell);
	margin: 0 auto;
	padding: 26px 16px 40px;
}

.flowrage-blog-archive__header {
	margin-bottom: 18px;
}

.flowrage-blog-archive__title {
	margin: 0;
	font-size: clamp(30px, 3vw, 46px);
	line-height: 1.2;
	color: #0f2f4d;
}

.flowrage-blog-archive__description {
	max-width: 760px;
	margin-top: 10px;
	font-size: 16px;
	line-height: 1.7;
	color: #4b6178;
}

.flowrage-blog-archive__description p {
	margin: 0;
}

.flowrage-blog-archive__layout {
	display: grid;
	grid-template-columns: minmax(0, 2.15fr) minmax(280px, 0.85fr);
	gap: 24px;
	align-items: start;
}

.flowrage-blog-archive__posts,
.flowrage-blog-archive__sidebar {
	min-width: 0;
}

.flowrage-blog-archive__sidebar {
	display: grid;
	gap: 18px;
	position: sticky;
	top: 100px;
}

.flowrage-blog-archive__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px 18px;
	grid-auto-rows: 1fr;
}

.flowrage-blog-archive__card {
	margin: 0;
	background: #fff;
	border: 1px solid #dce5ef;
	border-radius: 4px;
	overflow: visible;
	height: 100%;
	display: flex;
	flex-direction: column;
	box-shadow: 0 12px 30px rgba(24, 136, 204, 0.06);
	transition: transform 0.2s ease;
}

.flowrage-blog-archive__card:hover {
	transform: translateY(-3px);
}

.flowrage-blog-archive__thumb {
	display: block;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #dff3ff 0%, #f6fbff 100%);
	border-radius: 4px 4px 0 0;
}

.flowrage-blog-archive__thumb img,
.flowrage-blog-archive__thumb-fallback {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 11;
	object-fit: cover;
}

.flowrage-blog-archive__thumb-fallback {
	background: linear-gradient(135deg, #dff3ff 0%, #f6fbff 100%);
}

.flowrage-blog-archive__date-badge {
	position: absolute;
	right: 16px;
	bottom: 16px;
	min-width: 60px;
	padding: 8px 6px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid #dce5ef;
	border-radius: 4px;
	text-align: center;
}

.flowrage-blog-archive__date-month,
.flowrage-blog-archive__date-day {
	display: block;
}

.flowrage-blog-archive__date-month {
	font-size: 11px;
	font-weight: 700;
	color: var(--fr-primary-strong);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.flowrage-blog-archive__date-day {
	font-size: 22px;
	font-weight: 800;
	line-height: 1.05;
	color: #0f2f4d;
}

.flowrage-blog-archive__card-body {
	padding: 18px 22px 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.flowrage-blog-archive__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	color: #6d8398;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.flowrage-blog-archive__meta-item:first-child {
	color: var(--fr-primary-strong);
}

.flowrage-blog-archive__card-title {
	margin: 12px 0 0;
	font-size: clamp(28px, 2.1vw, 38px);
	font-weight: 700;
	line-height: 1.16;
}

.flowrage-blog-archive__card-title a {
	color: #0c2e4d;
}

.flowrage-blog-archive__card-title a:hover {
	color: var(--fr-primary-strong);
}

.flowrage-blog-archive__excerpt {
	margin: 12px 0 0;
	font-size: 16px;
	line-height: 1.65;
	color: #4b6178;
}

.flowrage-blog-archive__readmore {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 14px;
	margin-top: auto;
	align-self: flex-start;
	border: 1px solid #dce5ef;
	border-radius: 4px;
	color: var(--fr-primary-strong);
	font-size: 14px;
	font-weight: 700;
}

.flowrage-blog-archive__readmore:hover {
	border-color: var(--fr-primary);
	background: #f4fbff;
}

.flowrage-blog-archive__widget {
	background: #fff;
	border: 1px solid #dce5ef;
	border-radius: 4px;
	padding: 18px;
	box-shadow: 0 12px 30px rgba(24, 136, 204, 0.05);
}

.flowrage-blog-archive__widget h2 {
	margin: 0 0 12px;
	font-size: 30px;
	line-height: 1.2;
	color: #0e3659;
}

.flowrage-blog-archive__inquiry form p {
	margin: 0 0 10px;
}

.flowrage-blog-archive__inquiry label {
	display: block;
	margin-bottom: 6px;
	font-size: 14px;
	font-weight: 700;
	color: #173954;
}

.flowrage-blog-archive__inquiry input,
.flowrage-blog-archive__inquiry textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #cfe1ef;
	border-radius: 4px;
	font: inherit;
	color: #173954;
	background: #fff;
}

.flowrage-blog-archive__inquiry textarea {
	resize: vertical;
	min-height: 110px;
}

.flowrage-blog-archive__inquiry button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 18px;
	border: 0;
	border-radius: 4px;
	background: linear-gradient(135deg, var(--fr-primary) 0%, var(--fr-primary-strong) 100%);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}

.flowrage-blog-archive__expert {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.flowrage-blog-archive__expert img {
	width: 100%;
	max-width: 120px;
	border-radius: 4px;
	object-fit: cover;
}

.flowrage-blog-archive__expert-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.flowrage-blog-archive__expert-text strong {
	font-size: 14px;
	line-height: 1.35;
	color: #1c3043;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.flowrage-blog-archive__expert-text span {
	font-size: 14px;
	line-height: 1.4;
	color: #2f4c66;
}

.flowrage-blog-archive__expert-text a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #1fac55;
	font-size: 14px;
	font-weight: 700;
}

.flowrage-alert {
	padding: 10px 12px;
	margin: 0 0 12px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 4px;
	background: #fff;
	color: #0f172a;
	font-size: 14px;
	line-height: 1.4;
}

.flowrage-alert.success {
	border-color: rgba(16, 185, 129, 0.25);
	background: rgba(16, 185, 129, 0.08);
}

.flowrage-alert.warning {
	border-color: rgba(245, 158, 11, 0.25);
	background: rgba(245, 158, 11, 0.08);
}

.flowrage-blog-archive__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.flowrage-blog-archive__pagination {
	margin-top: 24px;
}

.flowrage-blog-archive__pagination ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.flowrage-info-single-page {
	padding-top: 18px;
	padding-bottom: 48px;
}

.flowrage-info-single__hero {
	margin-bottom: 24px;
	border-radius: 4px;
	overflow: hidden;
	border: 1px solid var(--fr-line);
	box-shadow: 0 18px 40px rgba(24, 136, 204, 0.08);
}

.flowrage-info-single__hero-image {
	width: 100%;
	height: clamp(240px, 34vw, 460px);
	object-fit: cover;
}

.flowrage-info-single__container {
	display: grid;
	gap: 22px;
}

.flowrage-info-single__header {
	padding: 0 2px;
}

.flowrage-info-single__title {
	margin: 0;
	font-size: clamp(2.1rem, 4vw, 3.4rem);
	line-height: 1.08;
	color: #0e2438;
}

.flowrage-info-single__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.8fr);
	gap: 22px;
	align-items: start;
}

.flowrage-info-single__content-card,
.flowrage-info-single__sidebar {
	min-width: 0;
}

.flowrage-info-single__content-card {
	padding: 28px;
	border: 1px solid #d9ecf8;
	border-radius: 4px;
	background: linear-gradient(180deg, #ffffff 0%, #f9fdff 100%);
	box-shadow: 0 16px 38px rgba(24, 136, 204, 0.06);
}

.flowrage-info-single__content-card > :first-child {
	margin-top: 0;
}

.flowrage-info-single__content-card > :last-child {
	margin-bottom: 0;
}

.flowrage-info-single__sidebar {
	display: grid;
	gap: 18px;
	position: sticky;
	top: calc(var(--flowrage-adminbar-offset) + 92px);
}

.flowrage-info-single__comments .comments-area {
	padding: 24px;
	border: 1px solid #d9ecf8;
	border-radius: 4px;
	background: #ffffff;
	box-shadow: 0 14px 32px rgba(24, 136, 204, 0.05);
}

.flowrage-portfolio-archive {
	padding-top: 18px;
	padding-bottom: 48px;
}

.flowrage-portfolio-archive__hero {
	margin-bottom: 22px;
}

.flowrage-portfolio-archive__hero .flowrage-seo-pricing__hero-inner {
	max-width: 760px;
}

.flowrage-portfolio-archive__intro,
.flowrage-portfolio-archive__intro p {
	font-size: 1rem;
	line-height: 1.75;
}

.flowrage-portfolio-archive__intro p:last-child {
	margin-bottom: 0;
}

.flowrage-portfolio-archive__toolbar {
	padding: 0 0 22px;
}

.flowrage-portfolio-archive__toolbar-inner {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
	gap: 18px;
	padding: 18px;
	border: 1px solid #d9ecf8;
	border-radius: 4px;
	background: linear-gradient(180deg, #ffffff 0%, #f7fcff 100%);
	box-shadow: 0 16px 36px rgba(24, 136, 204, 0.05);
}

.flowrage-portfolio-archive__filters {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(190px, 0.75fr) auto;
	gap: 12px;
	align-items: center;
}

.flowrage-portfolio-archive__filters input,
.flowrage-portfolio-archive__filters select {
	width: 100%;
	min-height: 46px;
	padding: 0 14px;
	border: 1px solid #cfe0ec;
	border-radius: 4px;
	background: #ffffff;
	color: #17324a;
	font: inherit;
}

.flowrage-portfolio-archive__filters button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 18px;
	border: 0;
	border-radius: 4px;
	background: linear-gradient(135deg, var(--fr-primary) 0%, var(--fr-primary-strong) 100%);
	color: #ffffff;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.flowrage-portfolio-archive__toolbar-cta {
	display: grid;
	align-content: center;
	gap: 12px;
	padding: 4px 0 4px 12px;
	border-left: 1px solid #dce9f2;
}

.flowrage-portfolio-archive__toolbar-cta p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.65;
	color: #5a7184;
}

.flowrage-portfolio-archive__body {
	padding-top: 2px;
}

.flowrage-portfolio-archive__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.flowrage-portfolio-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	border: 1px solid #d9ecf8;
	border-radius: 4px;
	background: #ffffff;
	overflow: hidden;
	box-shadow: 0 16px 36px rgba(24, 136, 204, 0.06);
}

.flowrage-portfolio-card__thumb {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, #d8eefc 0%, #eef8fd 100%);
	overflow: hidden;
}

.flowrage-portfolio-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.25s ease;
}

.flowrage-portfolio-card:hover .flowrage-portfolio-card__thumb img {
	transform: scale(1.03);
}

.flowrage-portfolio-card__thumb-fallback {
	display: block;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at top right, rgba(58, 167, 232, 0.26), transparent 32%),
		linear-gradient(135deg, #d7effd 0%, #eef8fd 100%);
}

.flowrage-portfolio-card__tag {
	position: absolute;
	left: 14px;
	bottom: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 0 10px;
	border-radius: 4px;
	background: rgba(14, 36, 56, 0.85);
	color: #ffffff;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.flowrage-portfolio-card__body {
	display: grid;
	gap: 12px;
	padding: 18px;
	flex: 1 1 auto;
}

.flowrage-portfolio-card__title {
	margin: 0;
	font-size: 1.45rem;
	line-height: 1.2;
	color: #0e2438;
}

.flowrage-portfolio-card__summary {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.7;
	color: #5a7184;
}

.flowrage-portfolio-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 6px;
}

.flowrage-portfolio-card__logo {
	display: block;
	max-width: 132px;
	max-height: 42px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.flowrage-portfolio-card__client {
	font-size: 0.9rem;
	font-weight: 700;
	color: #36526b;
}

.flowrage-portfolio-card__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 14px;
	border: 1px solid #dce5ef;
	border-radius: 4px;
	color: var(--fr-primary-strong);
	font-size: 0.88rem;
	font-weight: 700;
}

.flowrage-portfolio-card__cta:hover {
	background: #f4fbff;
	border-color: #cfe0ec;
}

.flowrage-portfolio-archive__empty {
	padding: 28px;
	border: 1px solid #d9ecf8;
	border-radius: 4px;
	background: #ffffff;
	box-shadow: 0 14px 30px rgba(24, 136, 204, 0.05);
}

.flowrage-portfolio-archive__empty h2 {
	margin: 0 0 10px;
}

.flowrage-portfolio-archive__empty p {
	margin: 0;
	color: #5a7184;
}

.flowrage-services-archive {
	padding-top: 8px;
	padding-bottom: 56px;
}

.flowrage-services-archive .fr-shell:first-child {
	padding-top: 0;
}

.flowrage-services-archive__hero .flowrage-seo-pricing__hero-inner {
	max-width: 860px;
}

.flowrage-services-archive__intro {
	max-width: 760px;
}

.flowrage-services-archive__toolbar {
	padding: 18px 0 8px;
}

.flowrage-services-archive__toolbar-inner {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
	gap: 18px;
	align-items: start;
}

.flowrage-services-archive__filters {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 200px auto;
	gap: 10px;
	padding: 16px;
	border: 1px solid #d9ecf8;
	border-radius: 4px;
	background: #ffffff;
}

.flowrage-services-archive__filters input,
.flowrage-services-archive__filters select {
	width: 100%;
	min-height: 46px;
	padding: 0 14px;
	border: 1px solid #c9dceb;
	border-radius: 4px;
	background: #fdfefe;
}

.flowrage-services-archive__filters button {
	min-height: 46px;
	padding: 0 18px;
	border: 0;
	border-radius: 4px;
	background: linear-gradient(135deg, #1587d8, #45ace8);
	color: #ffffff;
	font-weight: 700;
	cursor: pointer;
}

.flowrage-services-archive__toolbar-cta {
	padding: 16px 18px;
	border: 1px solid #d9ecf8;
	border-radius: 4px;
	background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
}

.flowrage-services-archive__toolbar-cta p {
	margin: 0 0 12px;
	color: #35526b;
	line-height: 1.7;
}

.flowrage-services-archive__body {
	padding-top: 16px;
}

.flowrage-services-archive__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.flowrage-services-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid #d9ecf8;
	border-radius: 4px;
	background: #ffffff;
	box-shadow: 0 20px 44px rgba(18, 50, 84, 0.08);
}

.flowrage-services-card__thumb {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	background: linear-gradient(145deg, #0f2337, #123d62);
}

.flowrage-services-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.flowrage-services-card__thumb-fallback {
	display: block;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at top right, rgba(90, 197, 255, 0.34), transparent 30%),
		linear-gradient(135deg, #0d2031, #1a5684);
}

.flowrage-services-card__tag {
	position: absolute;
	left: 14px;
	top: 14px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: #0f3557;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.flowrage-services-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 14px;
	padding: 18px;
}

.flowrage-services-card__title {
	margin: 0;
	font-size: 1.35rem;
	line-height: 1.2;
}

.flowrage-services-card__title a {
	color: #152f49;
	text-decoration: none;
}

.flowrage-services-card__summary {
	margin: 0;
	color: #49657d;
	line-height: 1.7;
}

.flowrage-services-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 6px;
}

.flowrage-services-card__keyword {
	display: inline-flex;
	align-items: center;
	padding: 7px 10px;
	border-radius: 4px;
	background: #eff8fe;
	color: #0f5d99;
	font-size: 0.82rem;
	font-weight: 700;
}

.flowrage-services-card__cta {
	color: #0f77bf;
	font-weight: 700;
	text-decoration: none;
}

.flowrage-services-archive__pagination {
	margin-top: 28px;
}

.flowrage-services-archive__empty {
	padding: 34px;
	border: 1px solid #d9ecf8;
	border-radius: 4px;
	background: #ffffff;
	text-align: center;
}

.flowrage-portfolio-archive__pagination {
	margin-top: 24px;
}

.flowrage-portfolio-archive__pagination ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.flowrage-blog-archive__pagination a,
.flowrage-blog-archive__pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	min-height: 40px;
	padding: 0 12px;
	border: 1px solid #dce5ef;
	border-radius: 4px;
	background: #fff;
	color: #173954;
	font-size: 14px;
	font-weight: 600;
}

.flowrage-blog-archive__pagination .current {
	background: var(--fr-primary);
	border-color: var(--fr-primary);
	color: #fff;
}

.flowrage-team-page {
	padding-top: 18px;
	padding-bottom: 56px;
}

.flowrage-team-hero-simple {
	padding: 22px 0 10px;
}

.flowrage-team-hero-simple__inner {
	padding: 34px 28px;
	border-radius: 4px;
	background: #171717;
	color: #ffffff;
	text-align: center;
}

.flowrage-team-hero-simple__eyebrow {
	margin: 0 0 10px;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
}

.flowrage-team-hero-simple h1 {
	margin: 0 0 14px;
	font-size: clamp(2.2rem, 5vw, 3.5rem);
	color: #ffffff;
}

.flowrage-team-hero-simple__subtitle {
	max-width: 760px;
	margin: 0 auto 22px;
	font-size: 1.02rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.8);
}

.flowrage-team-section {
	padding: 18px 0;
}

.flowrage-team-section__head {
	margin-bottom: 18px;
}

.flowrage-team-section__eyebrow {
	margin: 0 0 8px;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--fr-primary-strong);
}

.flowrage-team-section__head h2 {
	margin: 0;
	font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.flowrage-team-copy {
	max-width: 980px;
	color: #35526b;
	line-height: 1.85;
}

.flowrage-team-copy h3 {
	margin-top: 24px;
	margin-bottom: 10px;
	font-size: 1.35rem;
}

.flowrage-team-copy p:last-child {
	margin-bottom: 0;
}

.flowrage-team-grid-simple {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.flowrage-team-card-simple {
	border: 1px solid #d9ecf8;
	border-radius: 4px;
	background: #ffffff;
	overflow: hidden;
	box-shadow: 0 14px 32px rgba(24, 136, 204, 0.05);
}

.flowrage-team-card-simple__image {
	aspect-ratio: 1 / 1;
	background: linear-gradient(135deg, #d8eefc 0%, #eef8fd 100%);
}

.flowrage-team-card-simple__image img,
.flowrage-team-card-simple__placeholder {
	display: block;
	width: 100%;
	height: 100%;
}

.flowrage-team-card-simple__image img {
	object-fit: cover;
}

.flowrage-team-card-simple__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--fr-primary-strong);
}

.flowrage-team-card-simple__body {
	display: grid;
	gap: 8px;
	padding: 16px;
}

.flowrage-team-card-simple__dept {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--fr-primary-strong);
}

.flowrage-team-card-simple__body h3 {
	margin: 0;
	font-size: 1.3rem;
	line-height: 1.2;
}

.flowrage-team-card-simple__role {
	margin: 0;
	font-weight: 700;
	color: #36526b;
}

.flowrage-team-card-simple__summary {
	margin: 0;
	font-size: 0.94rem;
	line-height: 1.7;
	color: #5a7184;
}

.flowrage-team-card-simple__highlights {
	display: grid;
	gap: 6px;
	margin: 2px 0 0;
	padding-left: 16px;
	color: #36526b;
}

.flowrage-team-card-simple__highlights li {
	line-height: 1.55;
}

.flowrage-team-card-simple__links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 4px;
}

.flowrage-team-card-simple__links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 0 12px;
	border: 1px solid #dce5ef;
	border-radius: 4px;
	background: #ffffff;
	color: #174569;
	font-size: 0.88rem;
	font-weight: 700;
}

.flowrage-team-card-simple__links a:hover {
	background: #f4fbff;
}

.flowrage-team-expertise-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.flowrage-team-expertise-card {
	padding: 18px;
	border: 1px solid #d9ecf8;
	border-radius: 4px;
	background: #ffffff;
	box-shadow: 0 14px 30px rgba(24, 136, 204, 0.04);
}

.flowrage-team-expertise-card h3 {
	margin: 0 0 10px;
	font-size: 1.15rem;
}

.flowrage-team-expertise-card p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.7;
	color: #5a7184;
}

.flowrage-team-rich {
	padding: 24px;
	border: 1px solid #d9ecf8;
	border-radius: 4px;
	background: #ffffff;
	box-shadow: 0 14px 30px rgba(24, 136, 204, 0.04);
}

.flowrage-team-rich h2 {
	margin-top: 0;
	margin-bottom: 16px;
}

.flowrage-team-cta-simple {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 22px;
	align-items: center;
	padding: 24px;
	border: 1px solid #d9ecf8;
	border-radius: 4px;
	background: linear-gradient(180deg, #ffffff 0%, #f7fcff 100%);
	box-shadow: 0 16px 36px rgba(24, 136, 204, 0.05);
}

.flowrage-team-cta-simple__copy h2 {
	margin-bottom: 10px;
}

.flowrage-team-cta-simple__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: flex-end;
}

.flowrage-team-cta-simple__actions .fr-button--secondary {
	background: #ffffff;
	border-color: #b9d7ea;
	color: #17324d;
}

.flowrage-team-cta-simple__actions .fr-button--secondary:hover,
.flowrage-team-cta-simple__actions .fr-button--secondary:focus {
	background: #eef7fd;
	border-color: #89bfdc;
	color: #17324d;
}

.flowrage-blog-single {
	padding-top: 20px;
	padding-bottom: 56px;
}

.flowrage-blog-single__hero {
	max-width: var(--fr-shell);
	margin: 0 auto;
	padding: 24px 16px 0;
}

.flowrage-blog-single__hero img {
	display: block;
	width: 100%;
	height: clamp(180px, 30vw, 360px);
	object-fit: cover;
	border-radius: 4px;
}

.flowrage-blog-single__container,
.flowrage-blog-single__related-inner,
.flowrage-blog-single__comments-inner {
	max-width: var(--fr-shell);
	margin: 0 auto;
	padding: 30px 16px 24px;
}

.flowrage-blog-single__container {
	display: grid;
	grid-template-columns: minmax(0, 2.2fr) minmax(270px, 1fr);
	gap: 28px;
	align-items: start;
	overflow: visible;
}

.flowrage-blog-single__article {
	background: #fff;
	border: 1px solid #e7edf4;
	border-radius: 4px;
	padding: 26px;
}

.flowrage-blog-single__header {
	padding-bottom: 16px;
	margin-bottom: 18px;
	border-bottom: 1px solid #e8edf2;
}

.flowrage-blog-single__title {
	margin: 0;
	font-size: clamp(24px, 2.4vw, 34px);
	line-height: 1.2;
	font-weight: 700;
	color: #102335;
}

.flowrage-blog-single__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	margin-top: 12px;
	font-size: 14px;
	line-height: 1.5;
	color: #587086;
}

.flowrage-blog-single__meta span {
	display: inline-flex;
	align-items: center;
}

.flowrage-blog-single__content {
	font-size: 17px;
	line-height: 1.75;
	color: #203346;
}

.flowrage-blog-single__content > * {
	margin-top: 0;
	margin-bottom: 1.1em;
}

.flowrage-blog-single__content p,
.flowrage-blog-single__content li {
	line-height: 1.75;
}

.flowrage-blog-single__content h2,
.flowrage-blog-single__content h3,
.flowrage-blog-single__content h4 {
	color: #0f2d4b;
	line-height: 1.3;
	margin-top: 1.4em;
	margin-bottom: 0.6em;
}

.flowrage-blog-single__content img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 14px auto 20px;
	border-radius: 4px;
}

.flowrage-blog-single__content .wp-block-image,
.flowrage-blog-single__content figure {
	margin: 0 0 20px;
}

.flowrage-blog-single__content a {
	color: var(--fr-primary-strong);
}

.flowrage-blog-single__content blockquote,
.flowrage-blog-single__content .wp-block-quote {
	margin: 24px 0;
	padding: 20px 22px;
	border-left: 4px solid var(--fr-primary);
	border-radius: 4px;
	background: linear-gradient(180deg, #eef8ff 0%, #ffffff 100%);
	color: #173954;
	font-size: 18px;
	line-height: 1.7;
}

.flowrage-blog-single__content blockquote p:last-child,
.flowrage-blog-single__content .wp-block-quote p:last-child {
	margin-bottom: 0;
}

.flowrage-blog-single__content hr {
	border: 0;
	border-top: 1px solid #dfe5ec;
	margin: 28px 0;
}

.flowrage-blog-single__content ul,
.flowrage-blog-single__content ol {
	padding-left: 24px;
}

.flowrage-blog-single__content pre,
.flowrage-blog-single__content code,
.flowrage-blog-single__content kbd,
.flowrage-blog-single__content samp {
	font-family: Consolas, Monaco, "Courier New", monospace;
}

.flowrage-blog-single__content code,
.flowrage-blog-single__content kbd,
.flowrage-blog-single__content samp {
	padding: 2px 6px;
	border-radius: 4px;
	background: #eef6fb;
	color: #10355a;
	font-size: 0.92em;
}

.flowrage-blog-single__content pre {
	margin: 22px 0;
	padding: 18px;
	border: 1px solid #dfe5ec;
	border-radius: 4px;
	background: #0f2435;
	color: #f7fbff;
	overflow: auto;
	white-space: pre;
}

.flowrage-blog-single__content pre code {
	padding: 0;
	background: transparent;
	color: inherit;
}

.flowrage-blog-single__content .wp-block-table {
	width: 100%;
	max-width: 100%;
	margin: 22px 0;
	position: relative;
	border: 1px solid #dfe5ec;
	border-radius: 4px;
	background: #fff;
	overflow: hidden;
}

.flowrage-blog-single__content figure.wp-block-table {
	display: block !important;
	overflow-x: auto !important;
	max-width: 100%;
}

.flowrage-blog-single__content .wp-block-table::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--fr-primary) 0%, var(--fr-primary-strong) 100%);
}

.flowrage-blog-single__content .flowrage-table {
	width: 100%;
	max-width: 100%;
	margin: 22px 0;
	border: 1px solid #dfe5ec;
	border-radius: 4px;
	background: #fff;
	overflow-x: auto;
}

.flowrage-blog-single__content .flowrage-table__topline {
	height: 4px;
	background: linear-gradient(90deg, var(--fr-primary) 0%, var(--fr-primary-strong) 100%);
}

.flowrage-blog-single__content .flowrage-table table {
	border-collapse: collapse;
	width: 100%;
	margin: 0;
}

.flowrage-blog-single__content .wp-block-table table,
.flowrage-blog-single__content table {
	width: 100%;
	max-width: 100%;
	margin: 0;
	border-collapse: collapse;
}

.flowrage-blog-single__content .wp-block-table thead th,
.flowrage-blog-single__content thead th {
	background: #f3f8fc;
	color: #0f172a;
	font-weight: 800;
}

.flowrage-blog-single__content .wp-block-table th,
.flowrage-blog-single__content .wp-block-table td,
.flowrage-blog-single__content th,
.flowrage-blog-single__content td {
	border: 1px solid #dfe5ec;
	padding: 16px 18px;
	text-align: left;
	vertical-align: top;
	color: #203346;
	line-height: 1.65;
}

.flowrage-blog-single__sidebar {
	display: grid;
	gap: 18px;
	position: sticky;
	top: 84px;
	align-self: start;
}

.flowrage-blog-single__card--share,
.flowrage-blog-single__card--contact {
	position: static;
}

.flowrage-blog-single__card {
	background: #fff;
	border: 1px solid #e7edf4;
	border-radius: 4px;
	padding: 18px;
	box-shadow: 0 14px 34px rgba(24, 136, 204, 0.06);
}

.flowrage-blog-single__card-title {
	font-size: 16px;
	font-weight: 700;
	color: #10355a;
	margin-bottom: 12px;
}

.flowrage-blog-single__toc-card {
	position: relative;
	max-width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	padding-top: 26px;
	background: linear-gradient(180deg, rgba(239, 249, 255, 0.98) 0%, #ffffff 72%);
}

.flowrage-blog-single__toc-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 5px;
	background: linear-gradient(90deg, var(--fr-primary) 0%, var(--fr-primary-strong) 100%);
}

.flowrage-blog-single__toc-card--mobile {
	display: none;
	margin-bottom: 16px;
}

.flowrage-blog-single__toc-card .flowrage-blog-single__card-title {
	display: block;
	padding: 0;
	margin-bottom: 14px;
	background: transparent;
	color: #0f2d4b;
	box-shadow: none;
	font-size: 22px;
	line-height: 1.2;
	font-weight: 800;
}

.flowrage-blog-single__toc ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

.flowrage-blog-single__toc li {
	margin: 0;
	padding: 0;
	border-top: 1px solid #edf1f6;
}

.flowrage-blog-single__toc li:first-child {
	border-top: 0;
}

.flowrage-blog-single__toc a {
	display: block;
	padding: 12px 0 12px 14px;
	font-size: 14px;
	line-height: 1.45;
	color: #314a61;
	border-left: 2px solid transparent;
	transition: 0.18s ease;
}

.flowrage-blog-single__toc a:hover {
	color: var(--fr-primary-strong);
	border-left-color: var(--fr-primary);
	transform: translateX(2px);
}

.flowrage-blog-single__toc li.is-level-3 a {
	padding-left: 14px;
	font-size: 13px;
}

.flowrage-blog-single__toc li.is-level-4 a {
	padding-left: 26px;
	font-size: 13px;
}

.flowrage-blog-single__share {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.flowrage-blog-single__share a {
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #d6e2ef;
	border-radius: 4px;
	color: #305271;
	background: #fff;
}

.flowrage-blog-single__share a:hover {
	color: #fff;
	background: var(--fr-primary-strong);
	border-color: var(--fr-primary-strong);
}

.flowrage-blog-single__whatsapp {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	font-size: 15px;
	color: #1fac55;
}

.flowrage-blog-single__related {
	padding-bottom: 10px;
}

.flowrage-blog-single__related-title {
	color: #0f2d4b;
}

.flowrage-blog-single__related-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.flowrage-related-card {
	background: #fff;
	border: 1px solid #e7edf4;
	border-radius: 4px;
	overflow: hidden;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.flowrage-related-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
}

.flowrage-related-card__media {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #dff3ff;
}

.flowrage-related-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.flowrage-related-card__body {
	padding: 18px;
}

.flowrage-related-card__title {
	margin: 0 0 10px;
	font-size: 22px;
	line-height: 1.25;
	font-weight: 900;
	color: #0f172a;
}

.flowrage-related-card__meta-line {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 12px;
	font-size: 14px;
	color: #64748b;
}

.flowrage-related-card__meta-sep {
	color: #cbd5e1;
}

.flowrage-related-card__category,
.flowrage-related-card__readmore {
	color: var(--fr-primary-strong);
	font-weight: 700;
}

.flowrage-related-card__excerpt {
	margin: 0 0 10px;
	font-size: 15px;
	line-height: 1.65;
	color: #475569;
}

.flowrage-blog-single__comments {
	padding-bottom: 12px;
}

.flowrage-blog-single__comments .comments-area {
	background: #fff;
	border: 1px solid #e7edf4;
	border-radius: 4px;
	padding: 26px;
}

.flowrage-blog-single__comments .comments-title,
.flowrage-blog-single__comments .comment-reply-title {
	margin: 0 0 14px;
	font-size: 28px;
	line-height: 1.2;
	color: #0f2d4b;
}

.flowrage-blog-single__comments .comment-notes,
.flowrage-blog-single__comments .logged-in-as,
.flowrage-blog-single__comments .comment-form-cookies-consent,
.flowrage-blog-single__comments .form-submit {
	font-size: 14px;
	line-height: 1.6;
	color: #587086;
}

.flowrage-blog-single__comments .comment-form {
	display: grid;
	gap: 14px;
}

.flowrage-blog-single__comments .comment-form p {
	margin: 0;
}

.flowrage-blog-single__comments .comment-form label {
	display: block;
	margin-bottom: 6px;
	font-size: 14px;
	font-weight: 700;
	color: #173954;
}

.flowrage-blog-single__comments .comment-form input[type="text"],
.flowrage-blog-single__comments .comment-form input[type="email"],
.flowrage-blog-single__comments .comment-form input[type="url"],
.flowrage-blog-single__comments .comment-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #cfe1ef;
	border-radius: 4px;
	background: #fff;
	font: inherit;
	color: #173954;
}

.flowrage-blog-single__comments .comment-form textarea {
	min-height: 180px;
	resize: vertical;
}

.flowrage-blog-single__comments .comment-form input:focus,
.flowrage-blog-single__comments .comment-form textarea:focus {
	outline: none;
	border-color: var(--fr-primary);
	box-shadow: 0 0 0 3px rgba(58, 167, 232, 0.12);
}

.flowrage-blog-single__comments .form-submit .submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border: 0;
	border-radius: 4px;
	background: linear-gradient(135deg, var(--fr-primary) 0%, var(--fr-primary-strong) 100%);
	color: #fff;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.flowrage-blog-single__content-cta {
	margin: 26px 0 18px;
	overflow: hidden;
	background: linear-gradient(135deg, var(--fr-primary) 0%, var(--fr-primary-strong) 100%);
	color: #fff;
	border-radius: 4px;
}

.flowrage-blog-single__content-cta-inner {
	padding: 22px;
}

.flowrage-blog-single__content-cta-title {
	margin: 0 0 8px;
	font-size: 24px;
	line-height: 1.2;
	font-weight: 800;
	color: #fff;
}

.flowrage-blog-single__content-cta-text {
	margin: 0 0 16px;
	max-width: 62ch;
	color: rgba(255, 255, 255, 0.92);
	font-size: 16px;
	line-height: 1.5;
}

.flowrage-blog-single__content-cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 16px;
	background: #fff;
	color: var(--fr-primary-strong);
	border-radius: 4px;
	font-weight: 700;
}

.flowrage-blog-single__author-block {
	margin-top: 18px;
}

.flowrage-blog-single__author-heading {
	margin: 0 0 12px;
	font-size: 24px;
	line-height: 1.1;
	font-weight: 600;
	color: #0f172a;
}

.flowrage-blog-single__author-card {
	display: grid;
	grid-template-columns: 78px 1fr;
	gap: 16px;
	padding: 18px;
	border: 1px solid #e7edf4;
	border-radius: 4px;
	background: #fff;
}

.flowrage-blog-single__author-card-avatar {
	width: 78px;
	height: 78px;
	border-radius: 999px;
	object-fit: cover;
	border: 1px solid #e7edf4;
	background: #f3f6fa;
}

.flowrage-blog-single__author-card-label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #64748b;
	margin-bottom: 4px;
}

.flowrage-blog-single__author-card-name {
	font-size: 20px;
	font-weight: 600;
	color: #0f172a;
	margin-bottom: 8px;
}

.flowrage-blog-single__author-card-bio {
	font-size: 16px;
	line-height: 1.65;
	color: #0f172a;
}

.flowrage-blog-single__author-card-bio p {
	margin: 0 0 10px;
}

.flowrage-faq {
	margin: 28px 0 18px;
}

.flowrage-faq__title {
	margin: 0 0 14px;
	font-size: 24px;
	line-height: 1.2;
	color: #0f172a;
}

.flowrage-faq__list {
	display: grid;
	gap: 12px;
}

.flowrage-faq__item {
	border: 1px solid #e7edf4;
	border-radius: 4px;
	background: #fff;
	overflow: hidden;
}

.flowrage-faq__summary {
	display: flex;
	gap: 10px;
	padding: 16px 18px;
	cursor: pointer;
	list-style: none;
	font-weight: 700;
	color: #10355a;
}

.flowrage-faq__summary::-webkit-details-marker {
	display: none;
}

.flowrage-faq__a {
	padding: 0 18px 16px;
	color: #4b6178;
}

.fr-404 {
	background: #f4fbff;
	padding: 40px 0 80px;
}

.fr-404-shell {
	max-width: 1180px;
	margin: 0 auto;
}

.fr-404-content {
	background: #fff;
	border: 1px solid #d9ecf8;
	padding: clamp(28px, 4vw, 56px);
	text-align: center;
	border-radius: 4px;
	box-shadow: 0 18px 40px rgba(24, 136, 204, 0.08);
}

.fr-404-image {
	width: min(520px, 90%);
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto 24px;
}

.fr-404-title {
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 700;
	color: #0e2438;
	margin: 0 0 12px;
}

.fr-404-subtitle {
	font-size: 16px;
	color: #5a7184;
	margin: 0 0 22px;
}

.fr-404-links {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	color: #1888cc;
	font-weight: 700;
}

.fr-404-links a {
	color: #1888cc;
	text-decoration: none;
}

.fr-404-links a:hover {
	text-decoration: underline;
}

.fr-contact-list,
.fr-price-list {
	margin: 0;
	padding-left: 18px;
	color: var(--fr-muted);
}

.fr-contact-list li,
.fr-price-list li {
	margin-bottom: 10px;
}

.fr-page-hero--pricing h1 {
	max-width: 14ch;
}

.fr-contact-card--info h2,
.fr-contact-card--form h2 {
	font-size: clamp(1.6rem, 2vw, 2.1rem);
}

.fr-contact-info-list,
.fr-contact-social {
	display: grid;
	gap: 12px;
	margin-top: 20px;
}

.fr-contact-info-item {
	display: grid;
	gap: 4px;
	padding: 14px 16px;
	border: 1px solid var(--fr-line);
	background: var(--fr-surface-alt);
	border-radius: 4px;
}

.fr-contact-info-item strong,
.fr-contact-social strong {
	color: var(--fr-text);
	font-size: 0.95rem;
}

.fr-contact-info-item span {
	color: var(--fr-muted);
	font-size: 0.98rem;
}

.fr-contact-social__links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.fr-contact-social__links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 12px;
	border: 1px solid var(--fr-line);
	background: #fff;
	border-radius: 4px;
	color: var(--fr-primary-strong);
	font-weight: 700;
}

.fr-contact-social__links a:hover {
	background: var(--fr-primary-soft);
}

.flowrage-contact {
	padding-top: 28px;
}

.flowrage-contact__hero {
	padding: 20px 0 20px;
}

.flowrage-contact__title {
	font-size: clamp(34px, 4vw, 54px);
	line-height: 1.08;
	color: #0e2438;
	margin: 0;
}

.flowrage-contact__subtitle {
	margin-top: 14px;
	max-width: 62ch;
	font-size: 17px;
	line-height: 1.7;
	color: #5a7184;
}

.flowrage-contact__section {
	padding: 6px 0 0;
	overflow-x: clip;
}

.flowrage-contact__panel {
	position: relative;
	padding: 26px;
	border: 1px solid #d9ecf8;
	border-radius: 4px;
	background: linear-gradient(180deg, #ffffff 0%, #f7fcff 100%);
	box-shadow: 0 18px 40px rgba(24, 136, 204, 0.08);
}

.flowrage-contact__panel::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 4px;
	background: linear-gradient(90deg, #3aa7e8 0%, #1888cc 100%);
	border-radius: 4px 4px 0 0;
}

.flowrage-contact__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
	gap: 22px;
	align-items: start;
}

.flowrage-contact__grid > * {
	min-width: 0;
}

.flowrage-contact__form-card,
.flowrage-contact__info-card,
.flowrage-contact__mode-card {
	position: relative;
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
	background: #ffffff;
}

.flowrage-contact__form-card {
	overflow: hidden;
}

.flowrage-contact__form-head {
	display: grid;
	gap: 8px;
	margin-bottom: 18px;
}

.flowrage-contact__form-title {
	margin: 0;
	font-size: 30px;
	line-height: 1.15;
	color: #0e2438;
}

.flowrage-contact__form-note {
	margin: 0;
	color: #5a7184;
	font-size: 15px;
	line-height: 1.65;
}

.flowrage-contact__notice {
	padding: 12px 14px;
	margin: 0 0 14px;
	border: 1px solid #d9ecf8;
	background: #f4fbff;
	color: #0e2438;
	font-size: 14px;
}

.flowrage-contact__form {
	display: grid;
	gap: 14px;
	min-width: 0;
}

.flowrage-contact__honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.flowrage-contact__fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	min-width: 0;
}

.flowrage-contact__field {
	min-width: 0;
}

.flowrage-contact__field--full {
	grid-column: 1 / -1;
}

.flowrage-contact__field label {
	display: block;
	margin-bottom: 6px;
	font-size: 14px;
	font-weight: 700;
	color: #17324a;
}

.flowrage-contact__field input,
.flowrage-contact__field select,
.flowrage-contact__field textarea {
	display: block;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 13px 14px;
	border: 1px solid #cfe0ec;
	background: #ffffff;
	color: #0e2438;
	font-family: var(--fr-font-body);
	font-size: 15px;
	border-radius: 4px;
}

.flowrage-contact__field textarea {
	min-height: 128px;
	resize: vertical;
}

.flowrage-contact__field input:focus,
.flowrage-contact__field select:focus,
.flowrage-contact__field textarea:focus {
	outline: none;
	border-color: #3aa7e8;
	box-shadow: 0 0 0 3px rgba(58, 167, 232, 0.12);
}

.flowrage-contact__recaptcha {
	display: flex;
	min-width: 0;
}

.flowrage-contact__recaptcha-box {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	border: 1px dashed #cfe0ec;
	border-radius: 4px;
	background: #f7fcff;
	overflow: hidden;
}

.flowrage-contact__recaptcha-placeholder {
	color: #5a7184;
	font-size: 14px;
}

.flowrage-contact__recaptcha-box .g-recaptcha {
	max-width: 100%;
	transform-origin: left top;
}

.flowrage-contact__recaptcha-box iframe {
	max-width: 100%;
}

.flowrage-contact__form-footer {
	display: grid;
	gap: 14px;
}

.flowrage-contact__consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: #5a7184;
	font-size: 14px;
	line-height: 1.6;
}

.flowrage-contact__consent input {
	margin-top: 4px;
}

.flowrage-contact__consent a {
	color: #1888cc;
}

.flowrage-contact__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 20px;
	border: 0;
	border-radius: 4px;
	background: linear-gradient(90deg, #3aa7e8 0%, #1888cc 100%);
	color: #ffffff;
	font-size: 15px;
	font-weight: 800;
	cursor: pointer;
}

.flowrage-contact__submit:hover {
	filter: brightness(0.98);
}

.flowrage-contact__info-card {
	padding: 24px;
	background: linear-gradient(180deg, #eff9ff 0%, #ffffff 100%);
}

.flowrage-contact__info-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #3aa7e8 0%, #1888cc 100%);
	border-radius: 4px 4px 0 0;
}

.flowrage-contact__info-card > * {
	position: relative;
	z-index: 1;
}

.flowrage-contact__info-head {
	display: grid;
	gap: 10px;
}

.flowrage-contact__info-title {
	margin: 0;
	font-size: 28px;
	line-height: 1.15;
	color: #0e2438;
}

.flowrage-contact__info-sub {
	margin: 0;
	color: #5a7184;
	font-size: 15px;
	line-height: 1.7;
}

.flowrage-contact__info-items {
	display: grid;
	gap: 12px;
	margin-top: 18px;
}

.flowrage-contact__info-item {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	padding: 14px;
	border: 1px solid #d9ecf8;
	background: #ffffff;
	border-radius: 4px;
}

.flowrage-contact__info-item:hover {
	background: #f7fcff;
}

.flowrage-contact__info-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 4px;
	background: #e7f5fe;
	color: #1888cc;
	font-size: 18px;
}

.flowrage-contact__info-kicker {
	display: block;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #5a7184;
}

.flowrage-contact__info-value {
	display: block;
	margin-top: 4px;
	font-size: 15px;
	font-weight: 700;
	color: #0e2438;
	line-height: 1.5;
}

.flowrage-contact__social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.flowrage-contact__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid #d9ecf8;
	background: #ffffff;
	border-radius: 4px;
	color: #1888cc;
}

.flowrage-contact__social a:hover {
	background: #e7f5fe;
}

.flowrage-contact__modes {
	padding: 30px 0 16px;
}

.flowrage-contact__modes-inner {
	padding: 28px;
	border: 1px solid #d9ecf8;
	border-radius: 4px;
	background: linear-gradient(180deg, #f7fcff 0%, #ffffff 100%);
}

.flowrage-contact__modes-title {
	margin: 0;
	font-size: 32px;
	line-height: 1.15;
	color: #0e2438;
}

.flowrage-contact__modes-sub {
	margin-top: 12px;
	max-width: 70ch;
	color: #5a7184;
	font-size: 16px;
	line-height: 1.7;
}

.flowrage-contact__modes-actions {
	margin-top: 18px;
}

.flowrage-contact__modes-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border-radius: 4px;
	background: #1888cc;
	color: #ffffff;
	font-weight: 800;
}

.flowrage-contact__modes-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin-top: 22px;
}

.flowrage-contact__mode-card {
	padding: 18px;
}

.flowrage-contact__mode-card h3 {
	margin: 0 0 10px;
	font-size: 20px;
	line-height: 1.25;
	color: #0e2438;
}

.flowrage-contact__mode-card p {
	margin: 0;
	color: #5a7184;
	font-size: 15px;
	line-height: 1.7;
}

.flowrage-contact__map {
	padding-top: 16px;
}

.flowrage-contact__map--inline {
	padding: 30px 0 0;
}

.flowrage-contact__map-title {
	margin: 0 0 14px;
	font-size: 28px;
	color: #0e2438;
}

.flowrage-agency-template__map {
	border: 1px solid #d9ecf8;
	border-radius: 4px;
	overflow: hidden;
	background: #ffffff;
}

.flowrage-agency-template__map iframe {
	display: block;
	width: 100%;
	min-height: 360px;
	border: 0;
}

.fr-site-footer {
	padding: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	background:
		radial-gradient(circle at top right, rgba(58, 167, 232, 0.16), transparent 30%),
		linear-gradient(180deg, #0e2742 0%, #15385d 100%);
	overflow: hidden;
}

.fr-site-footer--seo .fr-shell {
	width: 100%;
	max-width: var(--fr-shell);
	margin: 0 auto;
	padding-left: var(--fr-page-gutter);
	padding-right: var(--fr-page-gutter);
	box-sizing: border-box;
	padding-top: 34px;
	padding-bottom: 18px;
}

.fr-site-footer__top {
	display: grid;
	grid-template-columns: minmax(250px, 1.08fr) minmax(0, 3.92fr);
	gap: 34px;
	align-items: start;
}

.fr-site-footer__brand-name {
	margin: 0 0 18px;
	font-size: 2rem;
	line-height: 1;
	letter-spacing: -0.03em;
}

.fr-site-footer__brand-mark {
	margin: 0 0 18px;
	max-width: 100%;
}

.fr-site-footer__brand-logo {
	display: block;
	width: auto;
	max-width: min(100%, 290px);
	max-height: 90px;
	filter: brightness(0) invert(1);
}

.fr-site-footer__brand-summary {
	max-width: 260px;
	margin: 0 0 28px;
	font-size: 14px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.84);
}

.fr-site-footer__contact-list {
	display: grid;
	gap: 14px;
}

.fr-site-footer__contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 13px;
	line-height: 1.55;
}

.fr-site-footer__contact-item i {
	margin-top: 3px;
	color: #7fd1ff;
	font-size: 18px;
}

.fr-site-footer__contact-item strong {
	display: block;
	font-size: 14px;
	color: #fff;
}

.fr-site-footer__contact-item small {
	display: block;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.62);
}

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

.fr-site-footer__column h3,
.fr-site-footer__proof h4 {
	margin: 0 0 18px;
	font-size: 1rem;
	line-height: 1.2;
	color: #fff;
}

.fr-site-footer__subhead {
	margin-top: 28px;
	margin-bottom: 18px;
}

.fr-site-footer__menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 11px;
}

.fr-site-footer__menu a {
	color: rgba(255, 255, 255, 0.84);
	font-size: 13px;
	line-height: 1.45;
}

.fr-site-footer__menu a:hover,
.fr-site-footer__contact-item:hover {
	color: #7fd1ff;
}

.fr-site-footer__hours {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.84);
}

.fr-site-footer__hours li {
	display: flex;
	justify-content: space-between;
	gap: 12px;
}

.fr-site-footer__hours strong {
	color: #fff;
}

.fr-site-footer__hours .is-closed {
	color: #ff4d5c;
}

.fr-site-footer__timezone {
	margin: 18px 0 0;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.62);
}

.fr-site-footer__social {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 12px;
}

.fr-site-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	color: #7fd1ff;
	font-size: 18px;
}

.fr-site-footer__social a:hover {
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
}

.fr-site-footer__proof {
	margin-top: 22px;
	padding: 16px 18px;
	border: 1px solid rgba(127, 209, 255, 0.18);
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.05);
	max-width: 100%;
}

.fr-site-footer__proof h4 {
	font-size: 0.95rem;
}

.fr-site-footer__proof ul {
	margin: 0;
	padding-left: 18px;
	display: grid;
	gap: 8px;
	font-size: 13px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.82);
}

.fr-site-footer__column--company {
	display: grid;
	align-content: start;
}

.fr-site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding-top: 20px;
	margin-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 13px;
}

.fr-site-footer__bottom p {
	margin: 0;
	color: rgba(255, 255, 255, 0.76);
}

.fr-site-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 26px;
}

.fr-site-footer__legal a {
	color: rgba(255, 255, 255, 0.76);
}

.fr-site-footer__legal a:hover {
	color: #7fd1ff;
}

.fr-pagination .nav-links {
	display: flex;
	gap: 8px;
	margin-top: 24px;
}

.fr-pagination .page-numbers {
	padding: 10px 14px;
	border-radius: 4px;
	border: 1px solid var(--fr-line);
	background: var(--fr-surface);
}

.flowrage-seo-pricing {
	padding: 8px 0 64px;
}

.flowrage-seo-pricing__hero,
.flowrage-seo-pricing__intro,
.flowrage-seo-pricing__included-inner,
.flowrage-seo-pricing__faq-inner {
	position: relative;
	border: 1px solid var(--fr-line);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: var(--fr-shadow);
	border-radius: 4px;
	overflow: hidden;
}

.flowrage-seo-pricing__hero {
	margin-bottom: 20px;
	min-height: 390px;
	display: grid;
	align-items: end;
}

.flowrage-seo-pricing__plan::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--fr-primary), var(--fr-primary-strong));
}

.flowrage-seo-pricing__hero-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.flowrage-seo-pricing__hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(10,33,54,0.78));
}

.flowrage-industry-hero {
	min-height: 430px;
}

.flowrage-industry-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(10, 28, 44, 0.84) 0%, rgba(10, 28, 44, 0.72) 45%, rgba(10, 28, 44, 0.34) 100%),
		linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(10,33,54,0.16) 100%);
}

.flowrage-industry-hero::after {
	display: none;
}

.flowrage-industry-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
	gap: 26px;
	align-items: end;
	padding: 30px;
}

.flowrage-industry-hero__content {
	max-width: 720px;
	color: #fff;
}

.flowrage-industry-hero__panel {
	border: 1px solid rgba(255,255,255,0.16);
	background: rgba(255,255,255,0.1);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-radius: 4px;
	padding: 18px;
	color: #fff;
	box-shadow: 0 18px 40px rgba(7, 22, 36, 0.22);
}

.flowrage-industry-hero__panel-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	border-radius: 4px;
	background: rgba(255,255,255,0.12);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #dff3ff;
}

.flowrage-industry-hero__panel-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #9be1c3;
}

.flowrage-industry-hero__panel-title {
	margin: 16px 0 0;
	font-size: clamp(1.05rem, 1.6vw, 1.4rem);
	line-height: 1.25;
	color: #fff;
}

.flowrage-industry-hero__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 18px;
}

.flowrage-industry-hero__stat {
	padding: 12px;
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 4px;
	background: rgba(8, 24, 38, 0.24);
}

.flowrage-industry-hero__stat-label {
	display: block;
	margin-bottom: 6px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(223, 243, 255, 0.76);
}

.flowrage-industry-hero__stat strong {
	display: block;
	font-size: 0.95rem;
	line-height: 1.2;
	color: #fff;
}

.flowrage-seo-pricing__hero-inner {
	position: relative;
	z-index: 1;
	padding: 34px;
	max-width: 680px;
	color: #fff;
}

.flowrage-seo-pricing__eyebrow {
	margin: 0 0 12px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #d7effd;
}

.flowrage-seo-pricing__title {
	margin: 0 0 14px;
	font-size: clamp(1.6rem, 2.7vw, 2.45rem);
	line-height: 1.05;
	color: #fff;
}

.flowrage-seo-pricing__subtitle {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: rgba(255,255,255,0.92);
}

.flowrage-seo-pricing__hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 22px;
}

.flowrage-seo-pricing__intro {
	padding: 28px 30px;
	margin-bottom: 24px;
}

.flowrage-industry-snapshot {
	margin: 0 0 24px;
}

.flowrage-industry-snapshot__inner {
	position: relative;
	border: 1px solid var(--fr-line);
	border-radius: 4px;
	background: rgba(255,255,255,0.96);
	box-shadow: 0 18px 42px rgba(25, 115, 194, 0.06);
	padding: 24px 26px;
	overflow: hidden;
}

.flowrage-industry-snapshot__badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	border: 1px solid rgba(33, 150, 243, 0.18);
	background: rgba(255,255,255,0.88);
	border-radius: 4px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--fr-primary-strong);
}

.flowrage-industry-snapshot__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #2f7f67;
}

.flowrage-industry-snapshot__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: 22px;
	margin-top: 18px;
}

.flowrage-industry-snapshot__title {
	margin: 0 0 12px;
	font-size: clamp(1.3rem, 2vw, 1.9rem);
	line-height: 1.12;
}

.flowrage-industry-snapshot__text {
	margin: 0;
	color: var(--fr-text-muted);
	line-height: 1.7;
}

.flowrage-industry-snapshot__points {
	display: grid;
	gap: 12px;
}

.flowrage-industry-snapshot__point {
	display: grid;
	grid-template-columns: 12px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	padding: 14px 15px;
	border: 1px solid rgba(33, 150, 243, 0.12);
	border-radius: 4px;
	background: rgba(248, 252, 255, 0.9);
}

.flowrage-industry-snapshot__point p {
	margin: 0;
	line-height: 1.65;
	color: var(--fr-text);
}

.flowrage-industry-snapshot__point-mark {
	width: 12px;
	height: 12px;
	margin-top: 6px;
	border-radius: 999px;
	background: linear-gradient(180deg, var(--fr-primary), var(--fr-primary-strong));
	box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.1);
}

.flowrage-seo-pricing__plans,
.flowrage-seo-pricing__content-grid,
.flowrage-seo-pricing__included-grid {
	display: grid;
	gap: 20px;
}

.flowrage-seo-pricing__plans {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-bottom: 24px;
}

.flowrage-seo-pricing__plan,
.flowrage-seo-pricing__content-card,
.flowrage-seo-pricing__included-card,
.flowrage-seo-pricing__faq-item {
	position: relative;
	border: 1px solid var(--fr-line);
	border-radius: 4px;
	background: rgba(255,255,255,0.96);
	box-shadow: var(--fr-shadow);
}

.flowrage-seo-pricing__plan {
	padding: 20px 18px 16px;
	display: flex;
	flex-direction: column;
}

.flowrage-seo-pricing__plan.is-featured {
	background: linear-gradient(180deg, #ffffff 0%, #eef8ff 100%);
}

.flowrage-seo-pricing__badge {
	position: absolute;
	top: -14px;
	right: 18px;
	padding: 6px 10px;
	border-radius: 999px;
	background: linear-gradient(90deg, #dff0ff 0%, #f4faff 100%);
	color: var(--fr-primary-strong);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	box-shadow: 0 10px 24px rgba(25, 115, 194, 0.12);
}

.flowrage-seo-pricing__plan-name,
.flowrage-seo-pricing__included-title,
.flowrage-seo-pricing__content-title,
.flowrage-seo-pricing__faq-title,
.flowrage-seo-pricing__text-title {
	margin: 0;
	font-size: clamp(1.2rem, 1.8vw, 1.65rem);
	line-height: 1.08;
}

.flowrage-seo-pricing__plan-price {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin: 10px 0 8px;
}

.flowrage-seo-pricing__plan-amount {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--fr-primary-strong);
}

.flowrage-seo-pricing__plan-period,
.flowrage-seo-pricing__plan-kicker,
.flowrage-seo-pricing__included-sub,
.flowrage-seo-pricing__content-sub,
.flowrage-seo-pricing__faq-sub {
	color: var(--fr-muted);
}

.flowrage-seo-pricing__plan-period {
	font-size: 0.95rem;
}

.flowrage-seo-pricing__plan-kicker,
.flowrage-seo-pricing__included-sub,
.flowrage-seo-pricing__content-sub,
.flowrage-seo-pricing__faq-sub,
.flowrage-seo-pricing__text-inner p {
	font-size: 13px;
	line-height: 1.6;
}

.flowrage-seo-pricing__feature-title {
	margin-bottom: 12px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #5c7287;
}

.flowrage-seo-pricing__feature-list,
.flowrage-seo-pricing__included-points {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
}

.flowrage-seo-pricing__feature-list li,
.flowrage-seo-pricing__included-points li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: #1f3146;
	font-size: 14px;
	line-height: 1.55;
}

.flowrage-seo-pricing__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 4px;
	background: var(--fr-primary-soft);
	color: var(--fr-primary-strong);
	flex: 0 0 auto;
}

.flowrage-seo-pricing__plan-foot {
	margin-top: auto;
	padding-top: 18px;
}

.flowrage-seo-pricing__plan-note {
	margin: 10px 0 0;
	font-size: 13px;
	color: var(--fr-muted);
}

.flowrage-seo-pricing__plan-cta {
	width: 100%;
	justify-content: center;
}

.flowrage-seo-pricing__included {
	margin-bottom: 24px;
}

.flowrage-seo-pricing__included-inner,
.flowrage-seo-pricing__faq-inner {
	padding: 32px;
}

.flowrage-seo-pricing__included-head,
.flowrage-seo-pricing__content-head,
.flowrage-seo-pricing__faq-head {
	max-width: 760px;
	margin-bottom: 22px;
}

.flowrage-seo-pricing__included-grid,
.flowrage-seo-pricing__content-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.flowrage-seo-pricing__included-card,
.flowrage-seo-pricing__content-card {
	padding: 18px;
}

.flowrage-seo-pricing__included-media,
.flowrage-seo-pricing__content-icon {
	width: 58px;
	height: 58px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	border-radius: 4px;
	background: #eef8ff;
	color: var(--fr-primary-strong);
}

.flowrage-seo-pricing__included-card-title,
.flowrage-seo-pricing__content-card-title {
	margin: 0 0 12px;
	font-size: 1rem;
}

.flowrage-seo-pricing__included-desc,
.flowrage-seo-pricing__content-card-desc {
	margin: 14px 0 0;
	color: var(--fr-muted);
	font-size: 12px;
	line-height: 1.6;
}

.flowrage-seo-pricing__text-block {
	margin: 24px 0;
}

.flowrage-seo-pricing__text-inner {
	position: relative;
	padding: 24px;
	border: 1px solid var(--fr-line);
	border-radius: 4px;
	background: rgba(255,255,255,0.95);
	box-shadow: 0 22px 50px rgba(25, 115, 194, 0.08);
}

.flowrage-seo-pricing__text-title {
	margin-bottom: 14px;
}

.flowrage-seo-pricing__text-inner p:last-child {
	margin-bottom: 0;
}

.flowrage-seo-pricing__faq {
	margin: 24px 0;
}

.flowrage-seo-pricing__faq-list {
	display: grid;
	gap: 14px;
}

.flowrage-seo-pricing__faq-item {
	overflow: hidden;
}

.flowrage-seo-pricing__faq-q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 18px;
	cursor: pointer;
	font-weight: 700;
	font-size: 14px;
	list-style: none;
}

.flowrage-seo-pricing__faq-q::-webkit-details-marker {
	display: none;
}

.flowrage-seo-pricing__faq-icon {
	position: relative;
	width: 18px;
	height: 18px;
}

.flowrage-seo-pricing__faq-icon::before,
.flowrage-seo-pricing__faq-icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 2px;
	background: var(--fr-primary-strong);
	transform: translate(-50%, -50%);
}

.flowrage-seo-pricing__faq-icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.flowrage-seo-pricing__faq-item[open] .flowrage-seo-pricing__faq-icon::after {
	transform: translate(-50%, -50%) rotate(0);
}

.flowrage-seo-pricing__faq-a {
	padding: 0 18px 18px;
	color: var(--fr-muted);
	font-size: 13px;
	line-height: 1.6;
}

@media (max-width: 1280px) {
	.fr-builder-hero__grid {
		grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
	}

	.fr-builder-hero__orb--outer {
		width: 410px;
		height: 410px;
		right: 12px;
	}

	.fr-builder-hero__orb--inner {
		width: 340px;
		height: 340px;
		right: 48px;
	}

	.fr-builder-hero__orb--soft {
		width: 280px;
		height: 280px;
	}

	.fr-builder-hero__portrait {
		width: 405px;
		right: 0;
	}

	.fr-builder-hero__quote {
		left: 0;
	}

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

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

	.fr-home-hero__grid {
		grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
	}

	.fr-home-hero__portrait-ring {
		right: 24px;
		width: 360px;
		height: 360px;
	}

	.fr-home-hero__portrait {
		right: 6px;
		width: 390px;
	}

	.fr-home-hero__quote-card {
		left: 0;
		top: 142px;
	}

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

@media (max-width: 960px) {
	.fr-builder-hero {
		padding-top: 20px;
	}

	.fr-builder-hero__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.fr-builder-hero__title-main,
	.fr-builder-hero__title-accent {
		font-size: clamp(2.6rem, 10vw, 4rem);
	}

	.fr-builder-hero__cta-row {
		flex-direction: column;
		align-items: stretch;
	}

	.fr-builder-hero__input-mock {
		min-width: 0;
		width: 100%;
	}

	.fr-builder-hero__cta.fr-button--primary {
		width: 100%;
		min-width: 0;
	}

	.fr-builder-hero__logo-strip {
		margin-top: 26px;
	}

	.fr-builder-hero__visual,
	.fr-builder-hero__visual-stage {
		min-height: 440px;
	}

	.fr-builder-hero__quote {
		top: 40px;
		left: 0;
		width: min(72%, 280px);
		padding: 16px 18px 14px;
	}

	.fr-builder-hero__orb--outer {
		width: 330px;
		height: 330px;
		right: 18px;
		top: 26px;
	}

	.fr-builder-hero__orb--inner {
		width: 270px;
		height: 270px;
		right: 52px;
		top: 66px;
	}

	.fr-builder-hero__orb--soft {
		width: 220px;
		height: 220px;
		right: 0;
		top: 92px;
	}

	.fr-builder-hero__portrait {
		width: min(82%, 310px);
		right: 8px;
	}

	.fr-builder-trust-strip__grid {
		grid-template-columns: 1fr;
		gap: 14px;
		padding: 18px 16px;
	}

	.fr-builder-trust-strip__item--wide {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
	}

	.fr-builder-trust-strip__brand img {
		max-height: 62px;
	}

	.fr-builder-trust-strip__avatars img {
		max-height: 46px;
	}

	.fr-builder-trust-strip__meta {
		justify-content: center;
	}

	.fr-builder-trust-strip__stars--large {
		font-size: 1.6rem;
	}

	.fr-main {
		padding-bottom: 48px;
	}

	.fr-hero,
	.fr-page-hero,
	.fr-landing-hero,
	.fr-section {
		padding: 22px 0;
	}

	.fr-home-hero {
		padding-top: 24px;
	}

	.fr-home-hero__copy {
		padding-top: 0;
	}

	.fr-home-hero__copy h1 {
		max-width: none;
		font-size: clamp(2.9rem, 11vw, 4.6rem);
	}

	.fr-home-hero__visual {
		order: -1;
		grid-template-rows: minmax(430px, 1fr);
	}

	.fr-home-hero__canvas {
		min-height: 430px;
		padding: 0;
	}

	.fr-home-hero__cta-row {
		flex-direction: column;
		align-items: stretch;
	}

	.fr-home-hero__lead-input {
		min-width: 0;
		width: 100%;
	}

	.fr-home-trust__inner {
		padding: 16px;
	}

	.fr-home-trust__badges,
	.fr-logo-cloud {
		justify-content: flex-start;
	}

	.fr-home-problem__panel,
	.fr-service-column,
	.fr-process-card,
	.fr-testimonial-card,
	.fr-home-consult {
		padding: 20px;
	}

	.fr-home-about__image img {
		min-height: 240px;
	}

	.fr-home-hero__portrait-ring {
		right: 28px;
		top: 38px;
		width: 280px;
		height: 280px;
		border-width: 24px;
	}

	.fr-home-hero__portrait {
		right: 0;
		width: min(84%, 310px);
	}

	.fr-home-hero__quote-card {
		top: 30px;
		left: 8px;
		width: min(72%, 250px);
		padding: 18px;
	}

	.fr-home-hero__quote-title {
		font-size: 1rem;
	}

	.fr-home-consult {
		gap: 16px;
	}

	.fr-home-consult .fr-button--primary {
		width: 100%;
	}

	.flowrage-seo-pricing__plans,
	.flowrage-seo-pricing__included-grid,
	.flowrage-seo-pricing__content-grid {
		grid-template-columns: 1fr;
	}

	.flowrage-services-archive__toolbar-inner,
	.flowrage-services-archive__filters,
	.flowrage-services-archive__grid {
		grid-template-columns: 1fr;
	}

	.flowrage-services-archive {
		padding-top: 18px;
	}

	.fr-home-hero__grid,
	.fr-home-trust__inner,
	.fr-home-problem__inner,
	.fr-home-about__grid,
	.fr-service-columns,
	.fr-home-consult,
	.fr-process-grid,
	.fr-testimonial-grid,
	.flowrage-team-cta-simple {
		grid-template-columns: 1fr;
	}

	.fr-home-trust__inner--media {
		gap: 18px;
		padding: 18px 16px;
	}

	.flowrage-industry-snapshot__grid {
		grid-template-columns: 1fr;
	}

	.flowrage-industry-hero__inner,
	.flowrage-industry-hero__stats {
		grid-template-columns: 1fr;
	}

	.flowrage-seo-pricing__hero-inner,
	.flowrage-seo-pricing__included-inner,
	.flowrage-seo-pricing__faq-inner,
	.flowrage-seo-pricing__intro,
	.flowrage-seo-pricing__text-inner {
		padding: 24px;
	}

	.flowrage-industry-snapshot__inner {
		padding: 24px;
	}

	:root {
		--flowrage-adminbar-offset: 46px;
	}

	.fr-card-grid,
	.fr-post-grid,
	.fr-contact-grid,
	.fr-pricing-grid,
	.fr-pricing-grid--plans,
	.fr-404-actions,
	.fr-hero__grid,
	.fr-two-column,
	.fr-proof-grid,
	.fr-site-footer__grid,
	.fr-landing-hero__inner,
	.flowrage-team-grid-simple,
	.flowrage-team-expertise-grid {
		grid-template-columns: 1fr;
	}

	.fr-site-footer__top,
	.fr-site-footer__links {
		grid-template-columns: 1fr;
	}

	.fr-site-footer__brand-summary {
		max-width: none;
	}

	.fr-site-footer--seo .fr-shell {
		padding-left: 16px;
		padding-right: 16px;
	}

	.fr-site-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.fr-page-hero__text,
	.fr-hero__text,
	.fr-section-text {
		max-width: none;
	}

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

	.fr-stat {
		min-width: 0;
	}

	.fr-pricing-card,
	.fr-contact-card,
	.fr-404-card {
		padding: 20px;
	}

	.fr-reading-shell {
		width: min(calc(100% - (var(--fr-page-gutter) * 2)), 820px);
	}

	.fr-site-header__inner {
		align-items: start;
	}

	.fr-nav-toggle {
		display: inline-flex;
	}

	.fr-site-header__nav {
		display: none;
		width: 100%;
		flex-direction: column;
		align-items: start;
	}

	.fr-site-header__nav.is-open {
		display: flex;
	}

	.fr-menu {
		flex-direction: column;
		align-items: start;
		width: 100%;
	}

	.fr-hero h1,
	.fr-page-hero h1,
	.fr-landing-hero h1 {
		max-width: none;
	}

	.flowrage-header-top .flowrage-header-container {
		min-height: 40px;
		padding-top: 6px;
		padding-bottom: 6px;
	}

	.flowrage-header-contact {
		gap: 12px;
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.flowrage-header-main .flowrage-header-container {
		min-height: 74px;
		grid-template-columns: auto auto;
		justify-content: space-between;
		column-gap: 12px;
	}

	.flowrage-header.flowrage-header--sticky-enabled {
		padding-top: 0;
	}

	.flowrage-header.flowrage-header--sticky-enabled.is-stuck {
		padding-top: 0;
	}

	.flowrage-header.flowrage-header--sticky-enabled .flowrage-header-main,
	.flowrage-header.flowrage-header--sticky-enabled .flowrage-header-main.is-stuck {
		position: sticky;
		top: 0;
		left: auto;
		right: auto;
		z-index: 240;
		box-shadow: 0 10px 24px rgba(14, 36, 56, 0.08);
	}

	.custom-logo {
		max-height: 58px;
	}

	.flowrage-nav-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		border: 1px solid #d2d9df;
		background: #fff;
		border-radius: 4px;
		font-size: 17px;
		color: #222;
	}

	.flowrage-main-nav-wrap {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 380;
		width: 100vw;
		max-width: 100vw;
		background: #ffffff;
		padding: calc(18px + env(safe-area-inset-top, 0px)) 20px calc(22px + env(safe-area-inset-bottom, 0px));
		overflow-y: auto;
		box-shadow: none;
		transform: translateX(102%);
		transition: transform 0.24s ease;
		visibility: hidden;
		opacity: 0;
		pointer-events: none;
	}

	.flowrage-header.nav-open::after {
		display: none;
	}

	.flowrage-header.nav-open .flowrage-main-nav-wrap {
		transform: translateX(0);
		visibility: visible;
		opacity: 1;
		pointer-events: auto;
	}

	.flowrage-main-navigation {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		width: 100%;
	}

	.flowrage-panel-close {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 38px;
		height: 38px;
		border: 1px solid #d4dee7;
		background: #f8fbff;
		color: #0e2438;
		border-radius: 4px;
		cursor: pointer;
	}

	.flowrage-panel-top {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		margin: 0 0 14px;
		padding: 0 0 12px;
		border-bottom: 1px solid #e5edf4;
	}

	.flowrage-panel-contact,
	.flowrage-panel-meta,
	.flowrage-panel-author-name {
		display: flex;
	}

	.flowrage-panel-contact {
		display: flex;
		flex: 1 1 auto;
		min-width: 0;
	}

	.flowrage-panel-contact,
	.flowrage-panel-meta {
		align-items: center;
		gap: 10px;
	}

	.flowrage-panel-meta {
		flex-direction: column;
		align-items: flex-start;
		min-width: 0;
	}

	.flowrage-panel-author-name {
		color: #0e2438;
		font-size: 13px;
		font-weight: 700;
		line-height: 1.35;
	}

	.flowrage-panel-whatsapp {
		display: inline-flex;
		align-items: center;
		gap: 6px;
		color: #25d366;
		font-size: 13px;
		font-weight: 600;
		line-height: 1.35;
		word-break: break-word;
	}

	.flowrage-primary-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		width: 100%;
		flex: 1 1 auto;
	}

	.flowrage-main-navigation .flowrage-primary-menu-desktop {
		display: none;
	}

	.flowrage-main-navigation .flowrage-primary-menu-mobile {
		display: flex;
	}

	.flowrage-primary-menu > li {
		border-top: 1px solid #e7edf4;
		min-height: 52px;
		padding: 0 6px;
	}

	.flowrage-primary-menu > li:first-child {
		border-top: 0;
	}

	.flowrage-primary-menu > li > a {
		padding: 14px 10px;
		justify-content: space-between;
		font-size: 18px;
		font-weight: 600;
		line-height: 1.3;
		min-height: 52px;
		color: #0f172a;
		border-radius: 4px;
	}

	.flowrage-primary-menu > li.menu-item-has-children > a::after {
		display: none;
	}

	.flowrage-primary-menu li.menu-item-has-children {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 34px;
		align-items: center;
		column-gap: 10px;
	}

	.flowrage-primary-menu li.menu-item-has-children > .flowrage-submenu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 34px;
		height: 34px;
		margin-right: 8px;
		border: 0;
		background: #eef2f5;
		color: #1a2330;
		border-radius: 4px;
		cursor: pointer;
	}

	.flowrage-primary-menu li.menu-item-has-children > .sub-menu {
		grid-column: 1 / -1;
	}

	.flowrage-primary-menu > li > .sub-menu,
	.flowrage-primary-menu .sub-menu .sub-menu {
		position: static;
		min-width: 0;
		box-shadow: none;
		padding: 8px 8px 0 18px;
		margin: 0 0 12px;
		border: 0;
		border-left: 1px solid #e2e8ef;
		background: transparent;
	}

	.flowrage-primary-menu .sub-menu a {
		padding: 10px 12px;
		font-size: 14px;
		line-height: 1.5;
		color: #41566b;
		border-radius: 4px;
	}

	.flowrage-primary-menu > li > a:hover,
	.flowrage-primary-menu > li > a:focus-visible,
	.flowrage-primary-menu .sub-menu a:hover,
	.flowrage-primary-menu .sub-menu a:focus-visible {
		background: #f2f7fb;
	}

	.flowrage-header .flowrage-primary-menu li:not(.is-open):hover > .sub-menu,
	.flowrage-header .flowrage-primary-menu li:not(.is-open):focus-within > .sub-menu {
		display: none;
	}

	.flowrage-primary-menu li.is-open > .sub-menu {
		display: block;
	}

	.flowrage-primary-menu .sub-menu li.menu-item-has-children {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 34px;
		align-items: start;
		column-gap: 10px;
	}

	.flowrage-primary-menu .sub-menu li.menu-item-has-children > a {
		padding-right: 0;
		min-height: 44px;
		font-size: 15px;
		font-weight: 500;
	}

	.flowrage-primary-menu .sub-menu .flowrage-submenu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 30px;
		height: 30px;
		margin-top: 7px;
		border: 0;
		border-radius: 4px;
		background: #eef5fb;
		color: #1a2330;
	}

	.flowrage-primary-menu .sub-menu .sub-menu {
		padding-top: 8px;
		padding-left: 14px;
		margin-top: 2px;
		border-left: 1px solid #dbe9f4;
	}

	.flowrage-primary-menu .sub-menu .sub-menu a {
		font-size: 14px;
		color: #536a80;
	}

	.header-actions {
		width: 100%;
		justify-content: stretch;
		padding-top: 14px;
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
		margin-top: auto;
		border-top: 1px solid #e5edf4;
	}

	.header-cta {
		width: 100%;
		height: 42px;
		font-size: 14px;
	}

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

	.flowrage-contact__grid,
	.flowrage-contact__modes-grid,
	.flowrage-contact__fields {
		grid-template-columns: 1fr;
	}

	.flowrage-contact__panel,
	.flowrage-contact__modes-inner {
		padding: 18px;
	}

	.flowrage-contact__hero {
		padding-top: 8px;
	}

	.flowrage-contact__form-footer {
		flex-direction: column;
		align-items: stretch;
	}

	.flowrage-contact__submit,
	.flowrage-contact__modes-button {
		width: 100%;
		justify-content: center;
	}

	.flowrage-contact__social {
		justify-content: flex-start;
	}

	.flowrage-contact__map iframe,
	.flowrage-agency-template__map iframe {
		height: 360px;
	}

	.flowrage-blog-archive__layout {
		grid-template-columns: 1fr;
	}

	.flowrage-blog-archive__sidebar {
		position: static;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.flowrage-blog-single__container {
		grid-template-columns: 1fr;
	}

	.flowrage-blog-single__sidebar {
		position: static;
		max-height: none;
		overflow: visible;
		padding-right: 0;
		gap: 14px;
	}

	.flowrage-blog-single__card--share,
	.flowrage-blog-single__card--contact {
		position: static;
	}

	.flowrage-blog-single__related-grid {
		grid-template-columns: 1fr;
	}

	.flowrage-info-single__layout {
		grid-template-columns: 1fr;
	}

	.flowrage-info-single__sidebar {
		position: static;
	}

	.flowrage-portfolio-archive__toolbar-inner,
	.flowrage-portfolio-archive__grid {
		grid-template-columns: 1fr;
	}

	.flowrage-portfolio-archive__toolbar-cta {
		padding: 14px 0 0;
		border-left: 0;
		border-top: 1px solid #dce9f2;
	}

	.flowrage-blog-single__toc-card--sidebar {
		display: none;
	}

	.flowrage-blog-single__toc-card--mobile {
		display: block;
	}

	.flowrage-blog-single__card--share {
		order: 1;
	}

	.flowrage-blog-single__card--contact {
		order: 2;
	}
}

@media (max-width: 640px) {
	:root {
		--fr-page-gutter: 16px;
	}

	.fr-main {
		padding-bottom: 36px;
	}

	.flowrage-seo-pricing {
		padding-top: 8px;
		padding-bottom: 44px;
	}

	.flowrage-seo-pricing__hero {
		min-height: 320px;
	}

	.flowrage-industry-hero {
		min-height: 0;
	}

	.flowrage-seo-pricing__hero-inner,
	.flowrage-seo-pricing__included-inner,
	.flowrage-seo-pricing__faq-inner,
	.flowrage-seo-pricing__intro {
		padding: 18px;
	}

	.flowrage-services-archive__filters {
		padding: 14px;
	}

	.flowrage-services-card__body,
	.flowrage-services-archive__toolbar-cta {
		padding: 16px;
	}

	.flowrage-services-card__footer {
		flex-direction: column;
		align-items: flex-start;
	}

	.flowrage-industry-snapshot__inner {
		padding: 18px;
	}

	.flowrage-seo-pricing__hero-actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.flowrage-industry-hero__inner {
		padding: 18px;
		grid-template-columns: 1fr;
		align-items: start;
	}

	.flowrage-industry-hero__panel {
		padding: 16px;
	}

	.flowrage-seo-pricing__title,
	.flowrage-seo-pricing__included-title,
	.flowrage-seo-pricing__content-title,
	.flowrage-seo-pricing__faq-title,
	.flowrage-seo-pricing__text-title {
		font-size: 1.8rem;
	}

	.flowrage-header-top {
		display: none;
	}

	.flowrage-header.flowrage-header--sticky-enabled {
		padding-top: 0;
	}

	.flowrage-header.flowrage-header--sticky-enabled.is-stuck {
		padding-top: 0;
	}

	.flowrage-header.flowrage-header--sticky-enabled .flowrage-header-main,
	.flowrage-header.flowrage-header--sticky-enabled .flowrage-header-main.is-stuck {
		position: sticky;
		top: 0;
		left: auto;
		right: auto;
		box-shadow: 0 10px 24px rgba(14, 36, 56, 0.08);
	}

	.fr-shell,
	.fr-reading-shell {
		width: min(calc(100% - (var(--fr-page-gutter) * 2)), var(--fr-shell));
	}

	.fr-site-footer__brand-logo {
		max-width: min(100%, 250px);
	}

	.fr-card,
	.fr-hero-card,
	.fr-content-panel,
	.fr-proof-panel,
	.fr-inline-cta,
	.flowrage-team-card-simple,
	.flowrage-team-rich,
	.flowrage-team-cta-simple,
	.flowrage-team-hero-simple__inner,
	.flowrage-team-expertise-card {
		border-radius: 4px;
	}

	.fr-hero,
	.fr-page-hero,
	.fr-landing-hero,
	.fr-section {
		padding: 18px 0;
	}

	.fr-hero h1,
	.fr-page-hero h1,
	.fr-landing-hero h1 {
		font-size: clamp(2rem, 11vw, 3.1rem);
		line-height: 1.05;
	}

	.fr-page-hero__text,
	.fr-hero__text,
	.fr-section-text,
	.fr-entry-content > p,
	.fr-entry-content li {
		font-size: 0.98rem;
	}

	.fr-stat-list {
		grid-template-columns: 1fr;
	}

	.fr-stat,
	.fr-card,
	.fr-pricing-card,
	.fr-contact-card,
	.fr-404-card {
		padding: 18px;
	}

	.flowrage-header-top .flowrage-header-container {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
		min-height: 0;
		padding-top: 8px;
		padding-bottom: 8px;
	}

	.flowrage-header-contact {
		margin-left: 0;
		flex-wrap: wrap;
		gap: 8px 14px;
		font-size: 13px;
	}

	.flowrage-header-social {
		gap: 14px;
	}

	.flowrage-header-email,
	.header-whatsapp {
		font-size: 13px;
		line-height: 1.35;
		word-break: break-word;
	}

	.flowrage-header-main .flowrage-header-container {
		min-height: 70px;
	}

	.custom-logo {
		max-height: 44px;
	}

	.flowrage-contact__social a {
		width: 46px;
		height: 46px;
	}

	.flowrage-team-card-simple__body {
		padding: 18px;
	}

	.flowrage-contact__info-item {
		grid-template-columns: 42px minmax(0, 1fr);
		padding: 14px;
	}

	.flowrage-contact__modes-grid {
		gap: 14px;
	}

	.flowrage-contact__modes-inner,
	.flowrage-contact__panel,
	.flowrage-contact__form-card,
	.flowrage-contact__info-card,
	.flowrage-contact__mode-card {
		padding: 18px;
	}

	.flowrage-contact__section,
	.flowrage-contact__panel,
	.flowrage-contact__form-card,
	.flowrage-contact__form,
	.flowrage-contact__fields,
	.flowrage-contact__field,
	.flowrage-contact__recaptcha,
	.flowrage-contact__recaptcha-box {
		min-width: 0;
		max-width: 100%;
	}

	.flowrage-contact__recaptcha-box {
		padding: 10px;
	}

	.flowrage-contact__recaptcha-box .g-recaptcha {
		transform: scale(0.82);
		width: 304px;
	}

	.flowrage-contact__recaptcha-box iframe {
		max-width: none;
	}

	.flowrage-contact__title {
		font-size: clamp(2rem, 10vw, 3rem);
	}

	.flowrage-info-single-page {
		padding-top: 12px;
		padding-bottom: 38px;
	}

	.flowrage-info-single__hero {
		margin-bottom: 18px;
	}

	.flowrage-info-single__hero-image {
		height: 180px;
	}

	.flowrage-portfolio-archive {
		padding-top: 12px;
		padding-bottom: 38px;
	}

	.flowrage-portfolio-archive__hero {
		margin-bottom: 18px;
	}

	.flowrage-portfolio-archive__filters {
		grid-template-columns: 1fr;
	}

	.flowrage-portfolio-archive__toolbar-inner {
		padding: 16px;
	}

	.flowrage-portfolio-card__body {
		padding: 16px;
	}

	.flowrage-portfolio-card__footer {
		flex-direction: column;
		align-items: flex-start;
	}

	.flowrage-info-single__content-card,
	.flowrage-info-single__comments .comments-area {
		padding: 18px;
	}

	.flowrage-info-single__title {
		font-size: clamp(1.9rem, 10vw, 2.6rem);
	}

	.flowrage-contact__subtitle,
	.flowrage-contact__modes-sub,
	.flowrage-contact__form-note,
	.flowrage-contact__info-sub {
		font-size: 15px;
	}

	.flowrage-contact__map iframe,
	.flowrage-agency-template__map iframe {
		height: 280px;
	}

	.flowrage-blog-archive__container {
		padding-top: 18px;
	}

	.flowrage-blog-archive__grid,
	.flowrage-blog-archive__sidebar {
		grid-template-columns: 1fr;
	}

	.flowrage-blog-archive__card {
		height: auto;
	}

	.flowrage-blog-archive__title {
		font-size: 32px;
	}

	.flowrage-blog-archive__card-title {
		font-size: 30px;
	}

	.flowrage-blog-archive__card-body {
		padding: 16px 16px 18px;
	}

	.flowrage-blog-archive__date-badge {
		right: 12px;
		bottom: 12px;
		min-width: 56px;
	}

	.flowrage-blog-archive__widget h2 {
		font-size: 26px;
	}

	.flowrage-blog-archive__sidebar .flowrage-blog-archive__widget,
	.flowrage-blog-archive__sidebar .flowrage-blog-archive__expert,
	.flowrage-blog-archive__sidebar .flowrage-blog-archive__inquiry {
		padding: 18px;
	}

	.flowrage-blog-single {
		padding-top: 12px;
		padding-bottom: 40px;
	}

	.flowrage-blog-single__hero,
	.flowrage-blog-single__container,
	.flowrage-blog-single__related-inner,
	.flowrage-blog-single__comments-inner {
		padding-left: 12px;
		padding-right: 12px;
	}

	.flowrage-blog-single__article,
	.flowrage-blog-single__comments .comments-area {
		padding: 18px;
	}

	.flowrage-blog-single__sidebar {
		margin-top: -6px;
	}

	.flowrage-blog-single__card {
		padding: 16px;
	}

	.flowrage-blog-single__meta {
		gap: 6px 12px;
		font-size: 13px;
	}

	.flowrage-blog-single__toc-card,
	.flowrage-blog-single__content-cta,
	.flowrage-blog-single__author-card {
		padding-left: 16px;
		padding-right: 16px;
	}

	.flowrage-blog-single__toc-card {
		padding-top: 20px;
	}

	.flowrage-blog-single__toc-card .flowrage-blog-single__card-title {
		font-size: 20px;
		margin-bottom: 12px;
	}

	.flowrage-blog-single__toc a {
		padding: 10px 0 10px 10px;
		font-size: 13px;
	}

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

	.flowrage-blog-single__share a {
		width: 100%;
	}

	.flowrage-blog-single__contact {
		padding-top: 18px;
		padding-bottom: 18px;
	}

	.flowrage-blog-single__whatsapp {
		font-size: 14px;
		line-height: 1.5;
		flex-wrap: wrap;
	}

	.flowrage-blog-single__content {
		font-size: 16px;
	}

	.flowrage-blog-single__content h2,
	.flowrage-blog-single__content h3 {
		font-size: 24px;
	}

	.flowrage-blog-single__content blockquote,
	.flowrage-blog-single__content .wp-block-quote {
		padding: 16px;
		font-size: 16px;
	}

	.flowrage-blog-single__content .wp-block-table,
	.flowrage-blog-single__content .flowrage-table,
	.flowrage-blog-single__content figure.wp-block-table {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		margin-left: -4px;
		margin-right: -4px;
		padding-left: 4px;
		padding-right: 4px;
	}

	.flowrage-blog-single__content .wp-block-table table,
	.flowrage-blog-single__content .flowrage-table table,
	.flowrage-blog-single__content table {
		min-width: 560px;
		width: max-content;
		max-width: none;
	}

	.flowrage-blog-single__content .wp-block-table th,
	.flowrage-blog-single__content .wp-block-table td,
	.flowrage-blog-single__content th,
	.flowrage-blog-single__content td {
		padding: 12px 14px;
		font-size: 14px;
		line-height: 1.55;
	}

	.flowrage-blog-single__author-card {
		grid-template-columns: 1fr;
	}

	.flowrage-blog-single__hero img {
		height: 200px;
	}

	.flowrage-blog-single__title {
		font-size: 28px;
	}

	.flowrage-related-card__body {
		padding: 16px 16px 18px;
	}

	.flowrage-related-card__title {
		font-size: 18px;
	}
}

@media (max-width: 380px) {
	.flowrage-contact__recaptcha-box .g-recaptcha {
		transform: scale(0.76);
	}
}

.fr-button--ghost {
	background: transparent;
	border: 1px solid #cfe5f4;
	color: var(--fr-primary-strong);
	box-shadow: none;
}

.fr-button--ghost:hover {
	border-color: var(--fr-primary);
	background: rgba(58, 167, 232, 0.08);
}

.fr-section-heading,
.fr-portfolio-home__section-head {
	display: grid;
	gap: 10px;
	max-width: 760px;
	margin: 0 auto 34px;
	text-align: center;
}

.fr-portfolio-homepage {
	padding-bottom: 0;
}

.fr-portfolio-home__hero {
	padding: 42px 0 30px;
	background:
		radial-gradient(circle at 82% 18%, rgba(58, 167, 232, 0.18), transparent 22%),
		radial-gradient(circle at 8% 8%, rgba(58, 167, 232, 0.08), transparent 18%),
		linear-gradient(180deg, #fbfeff 0%, #eef8fd 100%);
}

.fr-portfolio-home__hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
	gap: 34px;
	align-items: start;
}

.fr-portfolio-home__hero-copy {
	display: grid;
	gap: 22px;
	padding-top: 16px;
}

.fr-portfolio-home__hero-eyebrow {
	margin: 0;
	color: var(--fr-primary-strong);
	font-size: 0.96rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.fr-portfolio-home__hero-title {
	margin: 0;
	font-size: clamp(3rem, 7vw, 6.1rem);
	line-height: 0.92;
	letter-spacing: -0.065em;
	max-width: 8ch;
}

.fr-portfolio-home__hero-text {
	max-width: 58ch;
	color: var(--fr-muted);
}

.fr-portfolio-home__hero-text p:last-child {
	margin-bottom: 0;
}

.fr-portfolio-home__hero-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.fr-portfolio-home__hero-chips span {
	padding: 9px 14px;
	border-radius: 999px;
	background: rgba(58, 167, 232, 0.1);
	border: 1px solid rgba(58, 167, 232, 0.18);
	color: var(--fr-primary-strong);
	font-size: 0.92rem;
	font-weight: 700;
}

.fr-portfolio-home__hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.fr-portfolio-home__hero-form {
	padding: 24px;
	border: 1px solid #d8eaf6;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 28px 55px rgba(24, 136, 204, 0.12);
	backdrop-filter: blur(10px);
}

.fr-portfolio-home__hero-form-head {
	display: grid;
	gap: 6px;
	margin-bottom: 16px;
}

.fr-portfolio-home__hero-form-head h2 {
	margin: 0;
	font-size: 1.45rem;
}

.fr-portfolio-home__hero-form-head p,
.fr-portfolio-home__hero-notice {
	margin: 0;
	color: var(--fr-muted);
	font-size: 0.95rem;
}

.fr-portfolio-home__hero-notice {
	margin-bottom: 14px;
	padding: 12px 14px;
	border-radius: 16px;
	background: rgba(58, 167, 232, 0.08);
	border: 1px solid rgba(58, 167, 232, 0.12);
}

.fr-portfolio-home__mini-form,
.fr-portfolio-home__mini-grid,
.fr-portfolio-home__mini-footer {
	display: grid;
}

.fr-portfolio-home__mini-form {
	gap: 16px;
}

.fr-portfolio-home__mini-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.fr-portfolio-home__mini-grid-full {
	grid-column: 1 / -1;
}

.fr-portfolio-home__mini-form label {
	display: block;
	margin: 0 0 7px;
	font-size: 0.84rem;
	font-weight: 800;
	color: var(--fr-text);
}

.fr-portfolio-home__mini-form input,
.fr-portfolio-home__mini-form select,
.fr-portfolio-home__mini-form textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid #d4e6f2;
	border-radius: 16px;
	background: #ffffff;
	color: var(--fr-text);
	font: inherit;
}

.fr-portfolio-home__mini-form textarea {
	resize: vertical;
	min-height: 120px;
}

.fr-portfolio-home__mini-form input:focus,
.fr-portfolio-home__mini-form select:focus,
.fr-portfolio-home__mini-form textarea:focus {
	outline: none;
	border-color: var(--fr-primary);
	box-shadow: 0 0 0 4px rgba(58, 167, 232, 0.12);
}

.fr-portfolio-home__mini-recaptcha {
	overflow-x: auto;
}

.fr-portfolio-home__mini-footer {
	gap: 14px;
}

.fr-portfolio-home__mini-consent {
	display: flex;
	align-items: start;
	gap: 10px;
	font-size: 0.9rem;
	color: var(--fr-muted);
}

.fr-portfolio-home__mini-consent input {
	width: 18px;
	height: 18px;
	margin: 2px 0 0;
	padding: 0;
	flex: 0 0 18px;
}

.fr-portfolio-home__mini-consent a {
	color: var(--fr-primary-strong);
}

.fr-portfolio-home__mini-footer .fr-button {
	width: 100%;
}

.fr-portfolio-home__hero-media {
	display: grid;
	gap: 16px;
}

.fr-portfolio-home__hero-stage {
	position: relative;
	min-height: 690px;
	border-radius: 36px;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(236, 248, 254, 0.9) 100%);
}

.fr-portfolio-home__hero-shape {
	position: absolute;
	border-radius: 50%;
}

.fr-portfolio-home__hero-shape--one {
	right: 42px;
	top: 38px;
	width: 420px;
	height: 420px;
	background: linear-gradient(135deg, #32a6ea 0%, #a6ddfb 100%);
}

.fr-portfolio-home__hero-shape--two {
	right: 92px;
	top: 98px;
	width: 340px;
	height: 340px;
	background: linear-gradient(135deg, rgba(45, 154, 219, 0.9) 0%, rgba(165, 223, 251, 0.88) 100%);
}

.fr-portfolio-home__hero-shape--three {
	right: 0;
	top: 114px;
	width: 286px;
	height: 286px;
	background: linear-gradient(135deg, rgba(126, 211, 248, 0.34) 0%, rgba(220, 245, 255, 0.86) 100%);
}

.fr-portfolio-home__hero-quote {
	position: absolute;
	left: 26px;
	top: 122px;
	z-index: 3;
	width: min(320px, 52%);
	padding: 24px 24px 18px;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 30px 55px rgba(16, 72, 109, 0.14);
}

.fr-portfolio-home__hero-quote-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin-bottom: 14px;
	border-radius: 999px;
	background: #ffd54a;
	color: #534300;
	font-size: 2rem;
	font-weight: 900;
	line-height: 1;
}

.fr-portfolio-home__hero-quote p {
	margin: 0;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.45;
	color: #23303d;
}

.fr-portfolio-home__hero-quote strong {
	display: block;
	margin-top: 14px;
	color: var(--fr-primary-strong);
	font-size: 0.96rem;
}

.fr-portfolio-home__hero-image {
	position: absolute;
	right: 30px;
	bottom: 0;
	z-index: 2;
	width: min(75%, 470px);
}

.fr-portfolio-home__hero-image img {
	width: 100%;
	max-height: 620px;
	object-fit: contain;
	filter: drop-shadow(0 26px 34px rgba(17, 80, 122, 0.12));
}

.fr-portfolio-home__hero-logos {
	padding: 16px 18px;
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid #d8eaf6;
}

.fr-portfolio-home__hero-logos img {
	width: 100%;
	max-height: 88px;
	object-fit: contain;
	object-position: left center;
}

.fr-portfolio-home__stats {
	padding: 0 0 26px;
}

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

.fr-portfolio-home__stat-card {
	padding: 22px 18px;
	border-radius: 24px;
	background: #ffffff;
	border: 1px solid #d7e8f3;
	box-shadow: 0 18px 40px rgba(17, 84, 128, 0.08);
	text-align: center;
}

.fr-portfolio-home__stat-card strong {
	display: block;
	margin-bottom: 6px;
	font-size: clamp(1.7rem, 2.6vw, 2.4rem);
	line-height: 1;
}

.fr-portfolio-home__stat-card span {
	color: var(--fr-muted);
	font-size: 0.95rem;
}

.fr-portfolio-home__support {
	padding: 0 0 40px;
}

.fr-portfolio-home__support-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1.2fr;
	gap: 18px;
	align-items: center;
	padding: 18px 24px;
	border: 1px solid #e2efd6;
	border-radius: 32px;
	background: linear-gradient(180deg, #fbfdf4 0%, #f7fbe9 100%);
}

.fr-portfolio-home__support-item {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 94px;
}

.fr-portfolio-home__support-item img {
	width: 100%;
	max-height: 96px;
	object-fit: contain;
}

.fr-portfolio-home__section {
	padding: 64px 0;
}

.fr-portfolio-home__section--about,
.fr-portfolio-home__section--testimonials {
	background: linear-gradient(180deg, rgba(234, 247, 255, 0.38) 0%, rgba(255, 255, 255, 0) 100%);
}

.fr-portfolio-home__split {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	gap: 24px;
	align-items: start;
}

.fr-portfolio-home__section-copy,
.fr-portfolio-home__feature-panel {
	padding: clamp(24px, 3vw, 34px);
	border-radius: 30px;
	border: 1px solid #d8eaf6;
	background: #ffffff;
	box-shadow: 0 22px 42px rgba(18, 89, 136, 0.08);
}

.fr-portfolio-home__feature-panel h3 {
	margin-bottom: 12px;
	font-size: clamp(1.45rem, 2vw, 2rem);
}

.fr-portfolio-home__feature-panel > p {
	color: var(--fr-muted);
}

.fr-portfolio-home__feature-groups {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 20px;
}

.fr-portfolio-home__feature-group {
	padding: 18px;
	border-radius: 22px;
	background: #f5fbff;
	border: 1px solid #d4e9f6;
}

.fr-portfolio-home__feature-group h4 {
	margin-bottom: 10px;
	font-size: 1rem;
}

.fr-portfolio-home__feature-group ul,
.fr-portfolio-home__faq-answer p {
	margin: 0;
}

.fr-portfolio-home__feature-group ul {
	padding-left: 18px;
	color: var(--fr-muted);
}

.fr-portfolio-home__feature-group li + li {
	margin-top: 8px;
}

.fr-portfolio-home__timeline {
	display: grid;
	gap: 18px;
}

.fr-portfolio-home__timeline-item {
	display: grid;
	grid-template-columns: 86px minmax(0, 1fr);
	gap: 18px;
	align-items: stretch;
}

.fr-portfolio-home__timeline-number {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 26px;
	background: linear-gradient(135deg, var(--fr-primary) 0%, var(--fr-primary-strong) 100%);
	color: #ffffff;
	font-size: 1.35rem;
	font-weight: 900;
}

.fr-portfolio-home__timeline-card {
	padding: 24px 24px 22px;
	border-radius: 28px;
	border: 1px solid #d8eaf6;
	background: #ffffff;
	box-shadow: 0 22px 42px rgba(18, 89, 136, 0.08);
}

.fr-portfolio-home__timeline-card h3 {
	margin-bottom: 10px;
	font-size: clamp(1.2rem, 1.8vw, 1.6rem);
}

.fr-portfolio-home__timeline-card p,
.fr-portfolio-home__faq-answer,
.fr-portfolio-home__portfolio-side span {
	color: var(--fr-muted);
}

.fr-portfolio-home__section-head--inline {
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	max-width: none;
	text-align: left;
}

.fr-portfolio-home__portfolio-side {
	display: grid;
	gap: 4px;
	padding: 18px 20px;
	border-radius: 22px;
	background: rgba(58, 167, 232, 0.08);
	border: 1px solid rgba(58, 167, 232, 0.16);
}

.fr-portfolio-home__portfolio-side strong {
	font-size: 1.08rem;
}

.fr-portfolio-home__section .fr-card-grid,
.fr-portfolio-home__section .fr-testimonial-grid {
	gap: 20px;
}

.fr-portfolio-home__section .fr-card {
	padding: 28px;
	border-radius: 28px;
	border-color: #d8eaf6;
	box-shadow: 0 22px 42px rgba(18, 89, 136, 0.08);
}

.fr-portfolio-home__section .fr-card__kicker {
	color: var(--fr-primary-strong);
}

.fr-portfolio-home__section .fr-card h3 {
	font-size: 1.35rem;
}

.fr-portfolio-home__section .fr-check-list {
	margin-top: 16px;
}

.fr-portfolio-home__section .fr-testimonial-card {
	padding: 28px;
	border: 1px solid #d8eaf6;
	border-radius: 28px;
	background: #ffffff;
	box-shadow: 0 22px 42px rgba(18, 89, 136, 0.08);
}

.fr-portfolio-home__section .fr-testimonial-card__quote {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--fr-text);
}

.fr-portfolio-home__section .fr-testimonial-card__name {
	display: block;
	margin-top: 16px;
}

.fr-portfolio-home__section-cta {
	display: flex;
	justify-content: center;
	margin-top: 28px;
}

.fr-portfolio-home__faq-list {
	display: grid;
	gap: 16px;
	max-width: 900px;
	margin: 0 auto;
}

.fr-portfolio-home__faq-item {
	border: 1px solid #d8eaf6;
	border-radius: 24px;
	background: #ffffff;
	box-shadow: 0 16px 36px rgba(18, 89, 136, 0.06);
	overflow: hidden;
}

.fr-portfolio-home__faq-item summary {
	padding: 22px 24px;
	cursor: pointer;
	list-style: none;
	font-size: 1.02rem;
	font-weight: 800;
}

.fr-portfolio-home__faq-item summary::-webkit-details-marker {
	display: none;
}

.fr-portfolio-home__faq-answer {
	padding: 0 24px 22px;
}

.fr-portfolio-home__section--contact .flowrage-contact__panel {
	background: transparent;
	border: 0;
	padding: 0;
}

.fr-portfolio-home__section--contact .flowrage-contact__form-card,
.fr-portfolio-home__section--contact .flowrage-contact__info-card {
	border-radius: 30px;
	border-color: #d8eaf6;
	box-shadow: 0 22px 42px rgba(18, 89, 136, 0.08);
}

@media (max-width: 1180px) {
	.fr-portfolio-home__hero-grid,
	.fr-portfolio-home__split,
	.fr-portfolio-home__section-head--inline {
		grid-template-columns: 1fr;
	}

	.fr-portfolio-home__stats-grid,
	.fr-portfolio-home__support-grid,
	.fr-portfolio-home__feature-groups {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 991px) {
	.fr-portfolio-home__hero-stage {
		min-height: 560px;
	}

	.fr-portfolio-home__hero-quote {
		top: 42px;
		left: 18px;
		width: min(280px, 60%);
	}

	.fr-portfolio-home__hero-image {
		width: min(76%, 390px);
	}

	.fr-portfolio-home__timeline-item,
	.fr-portfolio-home__mini-grid,
	.fr-portfolio-home__stats-grid,
	.fr-portfolio-home__support-grid,
	.fr-portfolio-home__feature-groups {
		grid-template-columns: 1fr;
	}

	.fr-portfolio-home__timeline-number {
		min-height: 72px;
	}
}

@media (max-width: 767px) {
	.fr-portfolio-home__hero {
		padding-top: 26px;
	}

	.fr-portfolio-home__hero-title {
		max-width: none;
		font-size: clamp(2.35rem, 12vw, 4rem);
	}

	.fr-portfolio-home__hero-form,
	.fr-portfolio-home__section-copy,
	.fr-portfolio-home__feature-panel,
	.fr-portfolio-home__timeline-card,
	.fr-portfolio-home__section .fr-card,
	.fr-portfolio-home__section .fr-testimonial-card {
		padding: 20px;
	}

	.fr-portfolio-home__hero-stage {
		min-height: 470px;
		border-radius: 28px;
	}

	.fr-portfolio-home__hero-shape--one {
		right: 18px;
		top: 16px;
		width: 280px;
		height: 280px;
	}

	.fr-portfolio-home__hero-shape--two {
		right: 48px;
		top: 58px;
		width: 220px;
		height: 220px;
	}

	.fr-portfolio-home__hero-shape--three {
		width: 180px;
		height: 180px;
		top: 84px;
	}

	.fr-portfolio-home__hero-quote {
		position: relative;
		left: auto;
		top: auto;
		width: auto;
		margin: 18px;
	}

	.fr-portfolio-home__hero-image {
		right: 10px;
		width: min(82%, 300px);
	}

	.fr-portfolio-home__support-grid {
		padding: 18px;
	}

	.fr-portfolio-home__support-item {
		min-height: 76px;
	}

	.fr-portfolio-home__support-item img {
		max-height: 72px;
	}
}

/* Home template cleanup: make the reused travel structure feel native to the SEO portfolio brand. */
.flowrage-home-builder-template {
	background:
		radial-gradient(circle at top left, rgba(84, 189, 230, 0.16), transparent 34%),
		linear-gradient(180deg, #f7fbfe 0%, #ffffff 22%, #f8fbff 100%);
}

.flowrage-home-builder-template .flowrage-home-hero,
.flowrage-home-builder-template .flowrage-home-about,
.flowrage-home-builder-template .flowrage-home-latest-treks,
.flowrage-home-builder-template .flowrage-home-journey,
.flowrage-home-builder-template .flowrage-home-deals,
.flowrage-home-builder-template .flowrage-home-reviews,
.flowrage-home-builder-template .flowrage-home-blog {
	max-width: 1240px;
	margin: 0 auto;
}

.flowrage-home-builder-template .flowrage-home-hero-shell,
.flowrage-home-builder-template .flowrage-home-about-shell,
.flowrage-home-builder-template .flowrage-home-latest-treks-shell,
.flowrage-home-builder-template .flowrage-home-journey-shell,
.flowrage-home-builder-template .flowrage-home-deals-shell,
.flowrage-home-builder-template .flowrage-home-reviews-shell,
.flowrage-home-builder-template .flowrage-home-blog-shell {
	padding-left: 24px;
	padding-right: 24px;
}

.flowrage-home-builder-template .flowrage-home-hero-shell {
	padding-top: 44px;
	padding-bottom: 54px;
}

.flowrage-home-builder-template .flowrage-home-hero {
	align-items: center;
	gap: 42px;
}

.flowrage-home-builder-template .flowrage-home-hero__copy {
	max-width: 640px;
}

.flowrage-home-builder-template .flowrage-home-hero__title {
	max-width: 11ch;
	font-size: clamp(3rem, 5.5vw, 5.8rem);
	line-height: 0.94;
	letter-spacing: -0.05em;
	text-transform: none;
}

.flowrage-home-builder-template .flowrage-home-hero__description {
	max-width: 56ch;
	font-size: 1.05rem;
	line-height: 1.75;
}

.flowrage-home-builder-template .flowrage-home-hero__search {
	position: relative;
	gap: 0;
	max-width: 620px;
	margin-top: 28px;
	border: 1px solid rgba(24, 136, 204, 0.18);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 22px 48px rgba(20, 48, 86, 0.08);
	overflow: visible;
}

.flowrage-home-builder-template .flowrage-home-hero__search input[type="search"] {
	min-height: 64px;
	padding: 0 22px;
	border: 0;
	background: transparent;
}

.flowrage-home-builder-template .flowrage-home-hero__search button {
	min-width: 164px;
	margin: 7px;
	border-radius: 14px;
	font-weight: 700;
}

.flowrage-home-builder-template .flowrage-home-hero__results {
	top: calc(100% + 12px);
	left: 0;
	right: 0;
	border-radius: 20px;
	box-shadow: 0 24px 60px rgba(8, 33, 63, 0.16);
}

.flowrage-home-custom-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	max-width: 620px;
	margin-top: 26px;
}

.flowrage-home-custom-stat {
	padding: 18px 18px 16px;
	border: 1px solid rgba(84, 189, 230, 0.18);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.76);
	backdrop-filter: blur(6px);
}

.flowrage-home-custom-stat strong {
	display: block;
	margin-bottom: 6px;
	color: #133659;
	font-size: 1.45rem;
	line-height: 1;
}

.flowrage-home-custom-stat span {
	display: block;
	color: #59738b;
	font-size: 0.92rem;
	line-height: 1.45;
}

.flowrage-home-builder-template .flowrage-home-hero__featured {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.flowrage-home-builder-template .flowrage-home-hero__featured-card {
	border-radius: 28px;
	box-shadow: 0 28px 70px rgba(14, 42, 72, 0.15);
	transform: translateY(0);
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.flowrage-home-builder-template .flowrage-home-hero__featured-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 34px 82px rgba(14, 42, 72, 0.2);
}

.flowrage-home-builder-template .flowrage-home-hero__featured-content em {
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.flowrage-home-builder-template .flowrage-home-about {
	gap: 52px;
	padding-top: 40px;
	padding-bottom: 30px;
}

.flowrage-home-builder-template .flowrage-home-about__copy,
.flowrage-home-builder-template .flowrage-home-journey__region-card,
.flowrage-home-builder-template .flowrage-home-review-card__bubble {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(6px);
}

.flowrage-home-builder-template .flowrage-home-about__copy {
	padding: 12px 0;
}

.flowrage-home-builder-template .flowrage-home-about__title,
.flowrage-home-builder-template .flowrage-home-latest-treks__title,
.flowrage-home-builder-template .flowrage-home-journey__title,
.flowrage-home-builder-template .flowrage-home-deals__title,
.flowrage-home-builder-template .flowrage-home-reviews__title,
.flowrage-home-builder-template .flowrage-home-blog__title strong {
	letter-spacing: -0.04em;
}

.flowrage-home-builder-template .flowrage-home-about__experience {
	min-height: 112px;
	padding: 24px 30px 24px 108px;
	border: 1px solid rgba(84, 189, 230, 0.18);
	border-radius: 24px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(222, 243, 251, 0.82));
}

.flowrage-home-builder-template .flowrage-home-about__experience-label a {
	color: inherit;
	text-decoration: none;
}

.flowrage-home-builder-template .flowrage-home-latest-treks-shell,
.flowrage-home-builder-template .flowrage-home-journey-shell,
.flowrage-home-builder-template .flowrage-home-reviews-shell,
.flowrage-home-builder-template .flowrage-home-blog-shell {
	background: transparent !important;
}

.flowrage-home-builder-template .flowrage-home-latest-treks,
.flowrage-home-builder-template .flowrage-home-journey,
.flowrage-home-builder-template .flowrage-home-reviews,
.flowrage-home-builder-template .flowrage-home-blog {
	padding-top: 36px;
	padding-bottom: 36px;
}

.flowrage-home-builder-template .flowrage-home-latest-treks__grid,
.flowrage-home-builder-template .flowrage-home-deals__grid,
.flowrage-home-builder-template .flowrage-home-blog__grid {
	gap: 22px;
}

.flowrage-home-builder-template .flowrage-home-latest-trek-card,
.flowrage-home-builder-template .flowrage-home-deal-card,
.flowrage-home-builder-template .flowrage-home-blog-card {
	border: 1px solid rgba(28, 80, 126, 0.08);
	border-radius: 26px;
	background: #ffffff;
	box-shadow: 0 18px 42px rgba(13, 42, 71, 0.08);
	overflow: hidden;
}

.flowrage-home-builder-template .flowrage-home-latest-trek-card__image,
.flowrage-home-builder-template .flowrage-home-deal-card__image,
.flowrage-home-builder-template .flowrage-home-blog-card__image {
	background: linear-gradient(135deg, rgba(84, 189, 230, 0.2), rgba(20, 63, 109, 0.12));
}

.flowrage-home-builder-template .flowrage-home-latest-trek-card__image-placeholder,
.flowrage-home-builder-template .flowrage-home-deal-card__image-placeholder,
.flowrage-home-builder-template .flowrage-home-blog-card__image-placeholder,
.flowrage-home-builder-template .flowrage-home-about__placeholder {
	background:
		linear-gradient(135deg, rgba(84, 189, 230, 0.26), rgba(20, 63, 109, 0.08)),
		repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.34) 0 16px, rgba(255, 255, 255, 0.1) 16px 32px);
}

.flowrage-home-builder-template .flowrage-home-latest-trek-card__body,
.flowrage-home-builder-template .flowrage-home-deal-card__body {
	padding: 24px;
}

.flowrage-home-builder-template .flowrage-home-latest-trek-card__meta strong,
.flowrage-home-builder-template .flowrage-home-deal-card__price-values strong {
	line-height: 1.45;
}

.flowrage-home-builder-template .flowrage-home-journey__top {
	gap: 32px;
	align-items: start;
}

.flowrage-home-builder-template .flowrage-home-journey__region-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flowrage-home-builder-template .flowrage-home-journey__region-card {
	min-height: 220px;
	border: 1px solid rgba(28, 80, 126, 0.08);
	border-radius: 24px;
	box-shadow: 0 18px 42px rgba(13, 42, 71, 0.08);
}

.flowrage-home-builder-template .flowrage-home-journey__style-grid {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.flowrage-home-builder-template .flowrage-home-journey__style-card {
	border: 1px solid rgba(28, 80, 126, 0.08);
	border-radius: 20px;
	background: #ffffff;
	box-shadow: 0 14px 30px rgba(13, 42, 71, 0.06);
}

.flowrage-home-builder-template .flowrage-home-deals-shell {
	background: linear-gradient(180deg, #133659 0%, #0f2c4d 100%) !important;
}

.flowrage-home-builder-template .flowrage-home-deals {
	padding-top: 42px;
	padding-bottom: 44px;
}

.flowrage-home-builder-template .flowrage-home-deal-card {
	box-shadow: none;
}

.flowrage-home-builder-template .flowrage-home-reviews__sources {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-bottom: 24px;
}

.flowrage-home-builder-template .flowrage-home-reviews__source {
	justify-content: space-between;
	padding: 14px 18px;
	border: 1px solid rgba(84, 189, 230, 0.18);
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 14px 30px rgba(13, 42, 71, 0.06);
}

.flowrage-home-builder-template .flowrage-home-reviews__source img {
	max-height: 32px;
	width: auto;
}

.flowrage-home-builder-template .flowrage-home-reviews__panel {
	padding: 0;
	background: transparent;
	box-shadow: none;
}

.flowrage-home-builder-template .flowrage-home-reviews__track {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.flowrage-home-builder-template .flowrage-home-review-card {
	padding: 0;
}

.flowrage-home-builder-template .flowrage-home-review-card__bubble {
	border: 1px solid rgba(28, 80, 126, 0.08);
	border-radius: 24px;
	box-shadow: 0 18px 42px rgba(13, 42, 71, 0.08);
}

.flowrage-home-builder-template .flowrage-home-review-card__author {
	padding: 0 8px;
}

.flowrage-home-builder-template .flowrage-home-blog-card.is-featured {
	transform: none;
}

.flowrage-home-builder-template .flowrage-home-builder-content {
	padding-top: 18px;
}

@media (max-width: 1024px) {
	.flowrage-home-custom-stats,
	.flowrage-home-builder-template .flowrage-home-reviews__sources,
	.flowrage-home-builder-template .flowrage-home-reviews__track {
		grid-template-columns: 1fr;
	}

	.flowrage-home-builder-template .flowrage-home-journey__style-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.flowrage-home-builder-template .flowrage-home-hero-shell,
	.flowrage-home-builder-template .flowrage-home-about-shell,
	.flowrage-home-builder-template .flowrage-home-latest-treks-shell,
	.flowrage-home-builder-template .flowrage-home-journey-shell,
	.flowrage-home-builder-template .flowrage-home-deals-shell,
	.flowrage-home-builder-template .flowrage-home-reviews-shell,
	.flowrage-home-builder-template .flowrage-home-blog-shell {
		padding-left: 16px;
		padding-right: 16px;
	}

	.flowrage-home-builder-template .flowrage-home-hero__search {
		display: block;
	}

	.flowrage-home-builder-template .flowrage-home-hero__search button {
		width: calc(100% - 14px);
	}

	.flowrage-home-builder-template .flowrage-home-journey__region-grid,
	.flowrage-home-builder-template .flowrage-home-journey__style-grid {
		grid-template-columns: 1fr 1fr;
	}
}
