:root {
	--devfl-primary: #FF7A45;
	--devfl-primary-light: #FFC9A8;
	/* Darker variant of --devfl-primary for use as *text* on light
	   backgrounds. #FF7A45 on white is only 2.59:1 contrast, failing WCAG
	   AA's 4.5:1 minimum for normal text — this shade gives 4.77:1 while
	   staying in the same orange/brand hue. Found in the 2026-07-03
	   accessibility audit. Never use for backgrounds/borders — those keep
	   the brighter --devfl-primary, which already has enough contrast
	   against the dark ink/white text placed on top of it. */
	--devfl-primary-text: #BF5115;
	--devfl-dark: #0E2A3D;
	--devfl-dark-2: #163B52;
	--devfl-ink: #0E2A3D;
	--devfl-muted: #55677D;
	--devfl-line: rgba(255, 255, 255, 0.16);
	--devfl-border: rgba(14, 42, 61, 0.16);
	--devfl-radius: 18px;
	--devfl-font-heading: "Sora", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--devfl-font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: #F6F5F2;
	color: var(--devfl-ink);
	font-family: var(--devfl-font-body);
	line-height: 1.5;
}

h1,
h2,
h3,
.devfl-page-kicker {
	font-family: var(--devfl-font-heading);
}

body.admin-bar .devfl-header {
	top: 32px;
}

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

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

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

.devfl-container {
	width: min(1180px, calc(100% - 40px));
	margin-inline: auto;
}

.devfl-header {
	position: fixed;
	z-index: 1000;
	top: 0;
	right: 0;
	left: 0;
	background: rgba(14, 42, 61, 0.94);
	border-bottom: 1px solid rgba(255, 122, 69, 0.2);
}

.devfl-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 72px;
	gap: 24px;
}

.devfl-brand {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 10px;
	color: #fff;
	font-weight: 800;
	letter-spacing: 0;
}

.devfl-brand img,
.devfl-brand__logo {
	width: auto;
	max-width: 132px;
	max-height: 46px;
	object-fit: contain;
}

.devfl-nav {
	display: flex;
	align-items: center;
	gap: 22px;
}

.devfl-menu {
	display: flex;
	align-items: center;
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.devfl-menu a {
	color: rgba(255, 255, 255, 0.84);
	font-size: 0.94rem;
	font-weight: 650;
	transition: color 180ms ease;
}

.devfl-menu a:hover,
.devfl-menu a:focus-visible {
	color: var(--devfl-primary);
}

.devfl-language-switcher {
	display: flex;
	align-items: center;
	gap: 2px;
	margin: 0;
	padding: 3px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	list-style: none;
}

.devfl-language-switcher .lang-item {
	display: inline-flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.devfl-language-switcher a,
.devfl-language-switcher span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 30px;
	height: 26px;
	padding: 0 10px;
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	transition: background 160ms ease, color 160ms ease;
}

.devfl-language-switcher a:hover {
	color: #fff;
}

.devfl-language-switcher .current-lang a,
.devfl-language-switcher .current-lang span {
	background: var(--devfl-primary);
	color: #0E2A3D;
}

.devfl-menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid rgba(255, 122, 69, 0.24);
	border-radius: 12px;
	background: rgba(255, 122, 69, 0.08);
	cursor: pointer;
}

.devfl-menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	border-radius: 999px;
	background: var(--devfl-primary);
}

.devfl-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 20px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--devfl-primary), #FFC9A8);
	color: #0E2A3D;
	font-size: 0.92rem;
	font-weight: 800;
	border: 1px solid var(--devfl-border);
	transition: transform 180ms ease, border-color 180ms ease;
}

.devfl-button:hover,
.devfl-button:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(14, 42, 61, 0.3);
}

/**
 * Opt-in "radar ping" treatment for exactly one primary hero CTA per
 * page (2026-07-12, requested by Aristides after seeing it on another
 * site) — deliberately a modifier, not baked into the base .devfl-button,
 * since that class is reused by every CTA on the site including the
 * sticky header button; an infinite pulse on every instance at once
 * would be noisy rather than premium. position:relative + isolation
 * keep the ::after ring contained to this button without affecting
 * layout of siblings.
 */
.devfl-button--radar {
	position: relative;
	isolation: isolate;
	box-shadow: 0 6px 20px -4px rgba(255, 122, 69, 0.55);
}

.devfl-button--radar::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	border: 2px solid var(--devfl-primary);
	border-radius: inherit;
	animation: devfl-radar-ping 2.2s cubic-bezier(0, 0, 0.2, 1) infinite;
	pointer-events: none;
}

@keyframes devfl-radar-ping {
	0% {
		transform: scale(1);
		opacity: 0.65;
	}
	100% {
		transform: scale(1.6);
		opacity: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.devfl-button--radar::after {
		animation: none;
		display: none;
	}
}

.devfl-button--small {
	min-height: 38px;
	padding-inline: 17px;
	font-size: 0.84rem;
}

.devfl-button--ghost {
	background: #fff;
	color: #0E2A3D;
	border: 1px solid var(--devfl-border);
}

.devfl-site-main {
	overflow: hidden;
	padding-top: 72px;
}

.devfl-hero {
	position: relative;
	min-height: clamp(560px, 74vh, 760px);
	padding: 92px 0 100px;
	background:
		linear-gradient(90deg, rgba(255, 236, 226, 0.96) 0%, rgba(255, 236, 226, 0.9) 31%, rgba(255, 236, 226, 0.48) 54%, rgba(255, 255, 255, 0.12) 100%),
		radial-gradient(circle at 13% 17%, rgba(255, 122, 69, 0.34), transparent 28%),
		var(--devfl-hero-image),
		linear-gradient(135deg, #F8F7F4 0%, #FDECE2 45%, #ffffff 100%);
	background-position: center, center, center right, center;
	background-repeat: no-repeat;
	background-size: cover, cover, cover, cover;
}

.devfl-hero::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 120px;
	background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.72));
	content: "";
	pointer-events: none;
}

.devfl-hero__inner {
	position: relative;
	z-index: 1;
	min-height: clamp(390px, 54vh, 560px);
	display: flex;
	align-items: center;
}

.devfl-hero h1 {
	max-width: 520px;
	margin: 0 0 18px;
	color: #0E2A3D;
	font-size: clamp(3rem, 4.2vw, 4.65rem);
	font-weight: 900;
	line-height: 0.98;
	letter-spacing: 0;
	overflow-wrap: normal;
}

.devfl-hero p {
	max-width: 560px;
	margin: 0;
	color: #43546d;
	font-size: clamp(1rem, 1.4vw, 1.18rem);
}

/**
 * .devfl-hero p (class+element, specificity 0,1,1) was beating
 * .devfl-trust-badge's own margin-top (class only, 0,1,0) and forcing it
 * back to 0 — the trust badge is a <p> inside .devfl-hero, so the two
 * "28px" edits earlier never actually rendered on production (confirmed
 * via getComputedStyle: marginTop was "0px"). Needs the extra
 * .devfl-hero prefix to win on specificity instead of guessing at
 * higher margin values that would've been overridden just the same.
 */
.devfl-hero .devfl-trust-badge {
	margin-top: 28px;
}

.devfl-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.devfl-actions--center {
	justify-content: center;
}

.devfl-section {
	padding: 72px 0;
}

.devfl-page-hero {
	padding: 88px 0 74px;
	background:
		radial-gradient(circle at 50% 0%, rgba(255, 122, 69, 0.16), transparent 32%),
		linear-gradient(180deg, var(--devfl-dark) 0%, #0E2A3D 100%);
	color: #fff;
	text-align: center;
}

.devfl-page-kicker {
	margin: 0 0 12px;
	color: var(--devfl-primary);
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.devfl-page-hero h1 {
	margin: 0;
	font-size: clamp(2.8rem, 6vw, 5.4rem);
	font-weight: 900;
	line-height: 0.98;
}

.devfl-page-hero p:not(.devfl-page-kicker) {
	max-width: 690px;
	margin: 18px auto 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 1.05rem;
}

.devfl-related-projects {
	padding: 64px 0;
	background: #fff;
}

.devfl-services-catalog {
	padding: 64px 0 76px;
	background:
		linear-gradient(180deg, #F8F7F4 0%, #F5F3EF 100%);
}

.devfl-services-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	max-width: 920px;
	margin-inline: auto;
}

.devfl-service-tile {
	position: relative;
	overflow: hidden;
	min-height: 250px;
	padding: 32px;
	border: 1px solid var(--devfl-line);
	border-radius: 18px;
	background:
		radial-gradient(circle at 18% 8%, rgba(255, 122, 69, 0.16), transparent 28%),
		linear-gradient(145deg, #0E2A3D 0%, #163B52 100%);
	color: #fff;
}

.devfl-service-tile:nth-child(4n + 1),
.devfl-service-tile:nth-child(4n) {
	background:
		radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.22), transparent 28%),
		linear-gradient(145deg, #FF7A45 0%, #FFC9A8 100%);
	color: #0E2A3D;
}

.devfl-service-tile .devfl-icon {
	margin-bottom: 22px;
}

.devfl-service-tile:nth-child(4n + 1) .devfl-icon,
.devfl-service-tile:nth-child(4n) .devfl-icon {
	background: rgba(14, 42, 61, 0.12);
	color: #0E2A3D;
	box-shadow: none;
}

.devfl-service-tile h2 {
	margin: 0 0 12px;
	font-size: 1.35rem;
	line-height: 1.12;
}

.devfl-service-tile p {
	margin: 0;
	max-width: 38rem;
	color: rgba(255, 255, 255, 0.72);
}

.devfl-service-tile:nth-child(4n + 1) p,
.devfl-service-tile:nth-child(4n) p {
	color: rgba(14, 42, 61, 0.72);
}

.devfl-service-tile__link {
	display: inline-flex;
	margin-top: 24px;
	color: inherit;
	font-size: 0.86rem;
	font-weight: 900;
}

.devfl-process-section {
	padding: 70px 0 82px;
	background: #fff;
	text-align: center;
}

.devfl-process-section h2 {
	margin: 0;
	color: #0E2A3D;
	font-size: clamp(2rem, 4vw, 3.35rem);
	line-height: 1;
}

.devfl-process-section > .devfl-container > p {
	max-width: 720px;
	margin: 16px auto 42px;
	color: #5d6d78;
}

.devfl-process-steps {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 26px;
	max-width: 1000px;
	margin-inline: auto;
}

.devfl-process-steps::before {
	position: absolute;
	top: 28px;
	right: 12%;
	left: 12%;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(14, 42, 61, 0.24), transparent);
	content: "";
}

.devfl-process-steps article {
	position: relative;
	z-index: 1;
	display: grid;
	justify-items: center;
}

.devfl-process-step__icon {
	display: grid;
	width: 58px;
	height: 58px;
	margin-bottom: 18px;
	place-items: center;
	border: 1px solid var(--devfl-border);
	border-radius: 50%;
	background: linear-gradient(135deg, var(--devfl-primary), #FFC9A8);
	color: #0E2A3D;
}

.devfl-process-step__icon svg {
	width: 27px;
	height: 27px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.devfl-process-steps h3 {
	margin: 0 0 8px;
	color: #0E2A3D;
	font-size: 1.03rem;
}

.devfl-process-steps p {
	margin: 0;
	color: #667783;
	font-size: 0.9rem;
}

.devfl-section--dark {
	background:
		radial-gradient(circle at 12% 22%, rgba(255, 122, 69, 0.16), transparent 24%),
		linear-gradient(180deg, var(--devfl-dark) 0%, var(--devfl-dark-2) 100%);
	color: #fff;
}

.devfl-section--light {
	background: #fff;
}

.devfl-section-subtitle {
	max-width: 640px;
	margin: -20px auto 38px;
	color: rgba(255, 255, 255, 0.72);
	text-align: center;
}

.devfl-section-title {
	margin: 0 0 38px;
	color: #fff;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 900;
	line-height: 1.05;
	text-align: center;
}

.devfl-section-title--dark {
	color: #0E2A3D;
}

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

.devfl-slider {
	--devfl-slider-gap: 26px;
	--devfl-slider-visible: 3;
	position: relative;
	padding-inline: 58px;
}

.devfl-slider__viewport {
	overflow: hidden;
	padding: 2px;
}

.devfl-slider__track {
	display: flex;
	gap: var(--devfl-slider-gap);
	scroll-behavior: smooth;
	transition: transform 320ms ease;
	will-change: transform;
}

.devfl-slider__slide {
	flex: 0 0 calc((100% - (var(--devfl-slider-gap) * (var(--devfl-slider-visible) - 1))) / var(--devfl-slider-visible));
	min-width: 0;
}

.devfl-slider__slide > * {
	height: 100%;
}

.devfl-slider-arrow {
	position: absolute;
	z-index: 2;
	top: 50%;
	display: grid;
	width: 46px;
	height: 46px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	font-size: 2rem;
	font-weight: 900;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
	transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.devfl-slider-arrow--prev {
	left: 0;
}

.devfl-slider-arrow--next {
	right: 0;
}

.devfl-slider-arrow:hover,
.devfl-slider-arrow:focus-visible {
	border-color: rgba(255, 255, 255, 0.3);
	background: rgba(255, 122, 69, 0.22);
	transform: translateY(-50%) scale(1.04);
}

.devfl-slider-arrow:disabled {
	opacity: 0.35;
	cursor: default;
}

.devfl-slider-dots {
	display: flex;
	justify-content: center;
	gap: 4px;
	margin-top: 30px;
}

/*
 * The visible dot is only 9px (26px when active), well under the 24x24px
 * minimum tap-target size Lighthouse's accessibility audit checks for —
 * flagged 2026-07-03. Kept the small visual dot but moved it to a
 * ::before pseudo-element and expanded the actual <button> (the tappable
 * area) to 24x24, centered on the same spot, so the design doesn't change
 * but the hit target does.
 */
.devfl-slider-dot {
	position: relative;
	width: 24px;
	height: 24px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.devfl-slider-dot::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.32);
	transform: translate(-50%, -50%);
	transition: width 180ms ease, background 180ms ease;
}

.devfl-slider-dot.is-active::before {
	width: 26px;
	background: var(--devfl-primary);
}

.devfl-slider.is-static .devfl-slider-arrow,
.devfl-slider.is-static .devfl-slider-dots {
	display: none;
}

.devfl-card {
	position: relative;
	overflow: hidden;
	min-height: 260px;
	padding: 30px;
	border: 1px solid var(--devfl-line);
	border-radius: var(--devfl-radius);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
		rgba(255, 255, 255, 0.08);
}

.devfl-card::before {
	position: absolute;
	inset: -1px;
	background: radial-gradient(circle at 28% 0%, rgba(255, 122, 69, 0.23), transparent 34%);
	content: "";
	pointer-events: none;
}

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

.devfl-icon,
.devfl-icon-image {
	display: grid;
	width: 50px;
	height: 50px;
	margin-bottom: 18px;
	border: 1px solid var(--devfl-border);
	border-radius: 15px;
}

.devfl-icon {
	place-items: center;
	background: linear-gradient(135deg, var(--devfl-primary), #FFC9A8);
	color: #0E2A3D;
	font-weight: 900;
}

.devfl-icon svg {
	width: 27px;
	height: 27px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.devfl-icon-image {
	object-fit: cover;
	background: rgba(255, 255, 255, 0.16);
}

.devfl-icon--hero {
	width: 64px;
	height: 64px;
	margin: 0 auto 22px;
}

.devfl-icon--hero svg {
	width: 32px;
	height: 32px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.devfl-card h3,
.devfl-project-card h3,
.devfl-testimonial h3 {
	margin: 0 0 10px;
	font-size: 1.14rem;
	line-height: 1.15;
}

.devfl-card p,
.devfl-project-card p,
.devfl-testimonial p {
	margin: 0;
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.94rem;
}

.devfl-card-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	margin-top: 24px;
	padding: 0 15px;
	border-radius: 999px;
	background: rgba(255, 122, 69, 0.95);
	color: #0E2A3D;
	font-size: 0.78rem;
	font-weight: 800;
}

.devfl-testimonials {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
	align-items: stretch;
}

.devfl-google-reviews {
	max-width: 1180px;
	margin-inline: auto;
}

.devfl-google-reviews iframe,
.devfl-google-reviews img {
	max-width: 100%;
}

.devfl-testimonial {
	padding: 28px 24px;
	border: 1px solid #ECE9E3;
	border-radius: var(--devfl-radius);
	background: linear-gradient(180deg, #ffffff, #FBFAF8);
	text-align: center;
}

.devfl-testimonial p {
	color: #546176;
}

.devfl-testimonial strong {
	display: block;
	margin-top: 15px;
	color: #0E2A3D;
	font-size: 0.88rem;
}

.devfl-avatar,
.devfl-avatar-image {
	width: 58px;
	height: 58px;
	margin: 0 auto 16px;
	border: 4px solid #F6F5F2;
	border-radius: 50%;
}

.devfl-avatar {
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, var(--devfl-primary), #FFC9A8);
	color: #0E2A3D;
	font-weight: 900;
}

.devfl-avatar-image {
	object-fit: cover;
}

.devfl-project-card {
	display: flex;
	height: 100%;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--devfl-line);
	border-radius: var(--devfl-radius);
	background: rgba(255, 255, 255, 0.11);
}

.devfl-project-card__image {
	display: block;
	aspect-ratio: 16 / 10;
	width: 100%;
	height: 224px;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.05)),
		linear-gradient(135deg, #F8F7F4, #FF9466 52%, #0E2A3D);
}

.devfl-project-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.devfl-project-card__image--placeholder::before {
	display: block;
	width: 72%;
	height: 58%;
	margin: 10% auto 0;
	border: 1px solid var(--devfl-border);
	border-radius: 10px;
	background:
		linear-gradient(90deg, rgba(14, 42, 61, 0.7) 10%, transparent 10% 18%, rgba(14, 42, 61, 0.7) 18% 58%, transparent 58%),
		linear-gradient(#fff, #F0E4DA);
	content: "";
}

.devfl-project-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: 20px;
}

.devfl-project-card p {
	color: rgba(255, 255, 255, 0.75);
}

.devfl-project-tech {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	min-height: 30px;
}

.devfl-project-tech img {
	width: 30px;
	height: 30px;
	padding: 5px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 9px;
	background: rgba(255, 255, 255, 0.1);
	object-fit: contain;
}

.devfl-project-tech--single {
	justify-content: center;
	max-width: 760px;
	margin: 0 auto 32px;
}

.devfl-project-tech--single img {
	border-color: var(--devfl-border);
	background: #F8F7F4;
}

.devfl-project-card__footer {
	display: grid;
	gap: 18px;
	margin-top: auto;
}

.devfl-cta-section {
	padding: 64px 0 82px;
	background: #F7F6F3;
}

.devfl-cta {
	position: relative;
	overflow: hidden;
	padding: clamp(38px, 6vw, 72px) 24px;
	border-radius: 20px;
	background:
		radial-gradient(circle at 85% 50%, rgba(255, 122, 69, 0.22), transparent 32%),
		linear-gradient(135deg, #0E2A3D 0%, #163B52 100%);
	color: #fff;
	border: 1px solid var(--devfl-line);
	text-align: center;
}

.devfl-cta h2 {
	margin: 0 0 10px;
	font-size: clamp(2rem, 4vw, 3.6rem);
	line-height: 1;
}

.devfl-cta p {
	max-width: 650px;
	margin: 0 auto 26px;
	color: rgba(255, 255, 255, 0.76);
}

.devfl-footer {
	padding: 66px 0 26px;
	background:
		radial-gradient(circle at 16% 0%, rgba(255, 122, 69, 0.14), transparent 28%),
		linear-gradient(180deg, #0E2A3D 0%, #081A26 100%);
	color: rgba(255, 255, 255, 0.72);
}

.devfl-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr 1fr;
	gap: 48px;
	padding-bottom: 42px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.devfl-footer h2 {
	margin: 0 0 16px;
	color: #fff;
	font-size: 1rem;
	font-weight: 900;
	line-height: 1.1;
}

.devfl-footer__logo-link {
	display: inline-block;
	margin-bottom: 16px;
}

.devfl-footer__logo {
	display: block;
	width: auto;
	height: auto;
	max-width: 170px;
	max-height: 52px;
}

.devfl-footer p {
	margin: 0;
}

.devfl-footer__brand p {
	max-width: 420px;
	color: rgba(255, 255, 255, 0.68);
}

.devfl-footer__rss {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	margin-top: 22px;
	padding: 0 15px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	color: #fff;
	font-size: 0.88rem;
	font-weight: 800;
}

.devfl-footer-menu,
.devfl-footer__contact ul {
	display: grid;
	gap: 11px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.devfl-footer-menu a,
.devfl-footer__contact a {
	color: rgba(255, 255, 255, 0.72);
	font-weight: 700;
	transition: color 180ms ease;
}

.devfl-footer-menu a:hover,
.devfl-footer-menu a:focus-visible,
.devfl-footer__contact a:hover,
.devfl-footer__contact a:focus-visible,
.devfl-footer__rss:hover,
.devfl-footer__rss:focus-visible {
	color: #fff;
}

.devfl-footer__contact li {
	display: grid;
	gap: 3px;
}

.devfl-footer__contact span {
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.devfl-footer__whatsapp-handle {
	color: rgba(255, 255, 255, 0.72);
	font-size: 1rem;
	font-weight: 700;
	text-transform: none;
}

.devfl-footer__contact address {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-style: normal;
	font-weight: 700;
}

.devfl-footer__partners {
	padding: 28px 0;
	background: linear-gradient(135deg, #fdece2 0%, var(--devfl-primary-light) 100%);
	text-align: center;
}

.devfl-footer__partners-label {
	margin: 0 0 16px;
	color: rgba(14, 42, 61, 0.55);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.devfl-footer__partners-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 32px;
}

.devfl-footer__partners-list a {
	display: inline-flex;
	align-items: center;
	transition: transform 180ms ease, opacity 180ms ease;
}

.devfl-footer__partners-list a:hover,
.devfl-footer__partners-list a:focus-visible {
	transform: translateY(-2px);
	opacity: 0.85;
}

.devfl-footer__partners-list img {
	max-width: 150px;
	max-height: 34px;
	width: auto;
	height: auto;
}

.devfl-footer__bottom {
	padding: 24px 0;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.9rem;
	text-align: center;
}

.devfl-contact-section {
	padding: 72px 0 90px;
	background: #fff;
}

.devfl-contact-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 48px;
	align-items: start;
}

.devfl-contact-info {
	padding: 30px 26px;
	border: 1px solid var(--devfl-border);
	border-radius: var(--devfl-radius);
	background: #F8F7F4;
}

.devfl-contact-info h2 {
	margin: 0 0 18px;
	font-size: 1.2rem;
}

.devfl-contact-info__list {
	display: grid;
	gap: 16px;
	margin: 0 0 22px;
	padding: 0;
	list-style: none;
}

.devfl-contact-info__list li {
	display: grid;
	gap: 3px;
}

.devfl-contact-info__list span {
	color: var(--devfl-muted);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.devfl-contact-info__list a,
.devfl-contact-info__list address,
.devfl-contact-info__value {
	color: var(--devfl-ink);
	font-style: normal;
	font-weight: 700;
}

.devfl-contact-testimonial {
	max-width: 680px;
	margin: 48px auto 0;
	padding: 32px 36px;
	border-left: 4px solid var(--devfl-primary);
	background: #F8F7F4;
	border-radius: 0 var(--devfl-radius) var(--devfl-radius) 0;
}

.devfl-contact-testimonial p {
	margin: 0 0 16px;
	color: var(--devfl-ink);
	font-size: 1.05rem;
	line-height: 1.65;
}

.devfl-contact-testimonial footer {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px;
	color: var(--devfl-muted);
	font-size: 0.85rem;
}

.devfl-contact-testimonial footer strong {
	color: var(--devfl-ink);
}

.devfl-review-quotes {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	max-width: 900px;
	margin: 0 auto 40px;
}

.devfl-review-quote {
	padding: 28px 32px;
	border-left: 4px solid var(--devfl-primary);
	background: #F8F7F4;
	border-radius: 0 var(--devfl-radius) var(--devfl-radius) 0;
}

.devfl-review-quote p {
	margin: 0 0 14px;
	color: var(--devfl-ink);
	font-size: 0.98rem;
	line-height: 1.6;
}

.devfl-review-quote footer {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px;
	color: var(--devfl-muted);
	font-size: 0.82rem;
}

.devfl-review-quote footer strong {
	color: var(--devfl-ink);
}

@media (max-width: 700px) {
	.devfl-review-quotes {
		grid-template-columns: 1fr;
	}
}

.devfl-contact-info__note {
	margin: 0;
	padding-top: 18px;
	border-top: 1px solid var(--devfl-border);
	color: var(--devfl-muted);
	font-size: 0.88rem;
}

.devfl-form-hp {
	position: absolute;
	overflow: hidden;
	width: 1px;
	height: 1px;
	margin: -1px;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

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

.devfl-form-group {
	display: grid;
	gap: 6px;
	margin-bottom: 18px;
}

.devfl-form-group label {
	color: var(--devfl-ink);
	font-size: 0.88rem;
	font-weight: 800;
}

.devfl-form-required {
	color: var(--devfl-primary-text);
}

.devfl-form-group input,
.devfl-form-group select,
.devfl-form-group textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--devfl-border);
	border-radius: 10px;
	background: #fff;
	color: var(--devfl-ink);
	font-family: var(--devfl-font-body);
	font-size: 0.95rem;
	transition: border-color 180ms ease;
}

.devfl-form-group textarea {
	resize: vertical;
}

.devfl-form-group input:focus,
.devfl-form-group select:focus,
.devfl-form-group textarea:focus {
	outline: none;
	border-color: var(--devfl-primary);
}

.devfl-form-notice {
	margin-bottom: 22px;
	padding: 14px 18px;
	border: 1px solid;
	border-radius: 10px;
	font-size: 0.92rem;
}

.devfl-form-notice ul {
	margin: 0;
	padding-left: 18px;
}

.devfl-form-notice--success {
	border-color: rgba(34, 139, 87, 0.4);
	background: rgba(34, 139, 87, 0.08);
	color: #1c6b45;
}

.devfl-form-notice--error {
	border-color: rgba(214, 69, 44, 0.4);
	background: rgba(214, 69, 44, 0.08);
	color: #a8341c;
}

.devfl-form-submit {
	position: relative;
	gap: 10px;
}

.devfl-form-submit__spinner {
	display: none;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(14, 42, 61, 0.25);
	border-top-color: #0e2a3d;
	border-radius: 50%;
	animation: devfl-spin 700ms linear infinite;
}

.devfl-form-submit.is-loading {
	pointer-events: none;
	opacity: 0.85;
}

.devfl-form-submit.is-loading .devfl-form-submit__spinner {
	display: inline-block;
}

@keyframes devfl-spin {
	to {
		transform: rotate(360deg);
	}
}

/* Sitewide contact modal (footer.php) — every CTA that used to link
   straight to /contact-us/ now opens this instead when JS is available,
   falling back to the real link (progressive enhancement) otherwise. */
.devfl-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.devfl-modal.is-open {
	display: flex;
}

.devfl-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(14, 42, 61, 0.6);
}

.devfl-modal__dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 560px;
	max-height: calc(100vh - 48px);
	overflow-y: auto;
	padding: 36px;
	border-radius: var(--devfl-radius);
	background: #fff;
}

.devfl-modal__dialog h2 {
	margin: 0 0 8px;
	font-size: 1.5rem;
}

.devfl-modal__dialog > p {
	margin: 0 0 24px;
	color: var(--devfl-muted);
}

.devfl-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border: 1px solid var(--devfl-border);
	border-radius: 50%;
	background: #fff;
	color: var(--devfl-ink);
	font-size: 1.3rem;
	line-height: 1;
	cursor: pointer;
}

.devfl-modal__close:hover,
.devfl-modal__close:focus-visible {
	border-color: var(--devfl-primary);
	color: var(--devfl-primary);
}

body.devfl-modal-open {
	overflow: hidden;
}

@media (max-width: 600px) {
	.devfl-modal__dialog {
		padding: 28px 22px;
	}
}

.devfl-blog-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--devfl-border);
	border-radius: var(--devfl-radius);
	background: #fff;
}

.devfl-blog-card__image {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #F0EDE7;
}

.devfl-blog-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.devfl-blog-card__image--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #fdece2 0%, var(--devfl-primary-light) 100%);
}

.devfl-blog-card__image--placeholder svg {
	width: 64px;
	height: 64px;
}

.devfl-blog-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 22px;
}

.devfl-blog-card__meta {
	margin: 0 0 10px;
	color: var(--devfl-muted);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.devfl-blog-card h2 {
	margin: 0 0 10px;
	font-size: 1.2rem;
	line-height: 1.2;
}

.devfl-blog-card p {
	margin: 0 0 18px;
	color: var(--devfl-muted);
	font-size: 0.92rem;
}

.devfl-blog-card__link {
	margin-top: auto;
	color: var(--devfl-primary-text);
	font-size: 0.86rem;
	font-weight: 900;
}

.devfl-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 48px;
}

.devfl-pagination a,
.devfl-pagination span {
	display: inline-flex;
	min-width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	border: 1px solid var(--devfl-border);
	border-radius: 8px;
	color: var(--devfl-ink);
	font-size: 0.9rem;
	font-weight: 800;
}

.devfl-pagination a:hover {
	border-color: var(--devfl-primary);
}

.devfl-pagination .current {
	border-color: var(--devfl-primary);
	background: var(--devfl-primary);
	color: #0E2A3D;
}

.devfl-single-post {
	padding: 64px 0 90px;
}

.devfl-single-post__header {
	max-width: 760px;
	margin: 0 auto 32px;
	text-align: center;
}

.devfl-single-post__meta {
	margin: 0 0 10px;
	color: var(--devfl-muted);
	font-size: 0.85rem;
	font-weight: 800;
	text-transform: uppercase;
}

.devfl-single-post__image {
	max-width: 960px;
	margin: 0 auto 40px;
	overflow: hidden;
	border-radius: var(--devfl-radius);
}

.devfl-single-post__image img {
	display: block;
	width: 100%;
}

.devfl-single-post__image--placeholder {
	display: flex;
	aspect-ratio: 16 / 7;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #fdece2 0%, var(--devfl-primary-light) 100%);
}

.devfl-single-post__image--placeholder svg {
	width: 96px;
	height: 96px;
}

.devfl-single-post__content {
	max-width: 760px;
	margin: 0 auto;
	color: var(--devfl-ink);
	line-height: 1.75;
}

.devfl-single-post__content p {
	margin: 0 0 20px;
}

.devfl-single-post__content h2,
.devfl-single-post__content h3 {
	margin: 36px 0 16px;
}

.devfl-single-post__content img {
	border-radius: 12px;
}

.devfl-single-post__content a {
	color: var(--devfl-primary-text);
	text-decoration: underline;
}

.devfl-single-post__content blockquote {
	margin: 28px 0;
	padding: 18px 22px;
	border-left: 3px solid var(--devfl-primary);
	background: #F8F7F4;
	font-style: italic;
}

.devfl-single-post__footer {
	max-width: 760px;
	margin: 44px auto 0;
}

.devfl-founder-section {
	padding: 64px 0;
	background: #F8F7F4;
}

.devfl-founder {
	display: flex;
	gap: 40px;
	align-items: center;
	max-width: 860px;
	margin: 0 auto;
}

.devfl-founder__photo {
	flex: 0 0 auto;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #fff;
	box-shadow: 0 4px 16px rgba(14, 42, 61, 0.12);
}

.devfl-founder__kicker {
	margin: 0 0 6px;
	color: var(--devfl-primary-text);
	font-size: 0.8rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.devfl-founder__name {
	margin: 0;
	font-family: var(--devfl-font-heading);
	font-size: 1.4rem;
}

.devfl-founder__title {
	margin: 4px 0 14px;
	color: var(--devfl-muted);
	font-weight: 600;
}

.devfl-founder__bio {
	margin: 0 0 20px;
	color: var(--devfl-ink);
	line-height: 1.65;
}

.devfl-founder__stats {
	display: flex;
	gap: 32px;
	margin-bottom: 18px;
}

.devfl-founder__stat {
	display: flex;
	flex-direction: column;
}

.devfl-founder__stat-number {
	font-family: var(--devfl-font-heading);
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--devfl-dark);
}

.devfl-founder__stat-label {
	color: var(--devfl-muted);
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.devfl-founder__linkedin {
	color: var(--devfl-primary-text);
	font-weight: 700;
	text-decoration: none;
}

.devfl-founder__linkedin:hover {
	text-decoration: underline;
}

@media (max-width: 640px) {
	.devfl-founder {
		flex-direction: column;
		text-align: center;
	}

	.devfl-founder__stats {
		justify-content: center;
	}
}

.devfl-author-box {
	display: flex;
	gap: 20px;
	max-width: 760px;
	margin: 48px auto 0;
	padding: 24px;
	border: 1px solid var(--devfl-border);
	border-radius: var(--devfl-radius);
	background: #F8F7F4;
}

.devfl-author-box__photo {
	flex: 0 0 auto;
	width: 88px;
	height: 88px;
	border-radius: 50%;
	object-fit: cover;
	border: 1px solid var(--devfl-border);
}

.devfl-author-box__kicker {
	margin: 0 0 4px;
	color: var(--devfl-muted);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.devfl-author-box__name {
	margin: 0;
	font-family: var(--devfl-font-heading);
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--devfl-ink);
}

.devfl-author-box__title {
	margin: 2px 0 10px;
	color: var(--devfl-muted);
	font-size: 0.9rem;
}

.devfl-author-box__bio {
	margin: 0 0 10px;
	color: var(--devfl-ink);
	font-size: 0.92rem;
	line-height: 1.6;
}

.devfl-author-box__linkedin {
	color: var(--devfl-primary-text);
	font-weight: 700;
	font-size: 0.9rem;
	text-decoration: none;
}

.devfl-author-box__linkedin:hover {
	text-decoration: underline;
}

@media (max-width: 600px) {
	.devfl-author-box {
		flex-direction: column;
		align-items: flex-start;
	}
}

.devfl-faq {
	display: grid;
	max-width: 820px;
	gap: 16px;
	margin-inline: auto;
}

/**
 * Native <details>/<summary> accordion (2026-07-12, requested by
 * Aristides — the previous version showed every answer at once, a wall
 * of text with no scanning aid on longer FAQ lists). Deliberately native
 * HTML instead of a JS-toggled component: works with JS disabled, is
 * keyboard-operable and announces expanded/collapsed state to screen
 * readers for free, and — the reason this doesn't touch SEO/AEO/GEO at
 * all — the full question+answer text stays in the HTML at all times
 * (collapsed just means visually hidden, not absent), and the FAQPage
 * JSON-LD in dev_fl_output_schema() is built straight from the same
 * $faqs PHP array independent of this markup either way.
 */
.devfl-faq__item {
	overflow: hidden;
	border: 1px solid var(--devfl-border);
	border-radius: var(--devfl-radius);
	background: #fff;
	transition: border-color 180ms ease;
}

.devfl-faq__item[open] {
	border-color: rgba(255, 122, 69, 0.4);
}

.devfl-faq__item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 20px 26px;
	list-style: none;
	font-family: var(--devfl-font-heading);
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--devfl-ink);
	cursor: pointer;
}

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

.devfl-faq__item summary:hover,
.devfl-faq__item summary:focus-visible {
	color: var(--devfl-primary-text);
}

.devfl-faq__item summary::after {
	flex-shrink: 0;
	width: 11px;
	height: 11px;
	border-right: 2px solid var(--devfl-primary);
	border-bottom: 2px solid var(--devfl-primary);
	content: "";
	transform: rotate(45deg);
	transition: transform 200ms ease;
}

.devfl-faq__item[open] summary::after {
	transform: rotate(-135deg);
}

.devfl-faq__item p {
	margin: 0;
	padding: 0 26px 22px;
	color: var(--devfl-muted);
}

.devfl-faq__item .devfl-faq__link {
	margin: -10px 26px 22px;
}

.devfl-error-content {
	max-width: 640px;
	text-align: center;
}

.search-form {
	display: flex;
	max-width: 480px;
	margin: 0 auto 30px;
	gap: 10px;
}

.search-form .search-field {
	flex: 1;
	padding: 12px 14px;
	border: 1px solid var(--devfl-border);
	border-radius: 10px;
	background: #fff;
	font-family: var(--devfl-font-body);
	font-size: 0.95rem;
}

.search-form .search-field:focus {
	outline: none;
	border-color: var(--devfl-primary);
}

.search-submit {
	padding: 0 22px;
	border: 1px solid var(--devfl-border);
	border-radius: 10px;
	background: var(--devfl-primary);
	color: #0E2A3D;
	font-weight: 800;
	font-size: 0.92rem;
	cursor: pointer;
}

@media (max-width: 1200px) {
	.devfl-hero {
		background-position: center, center, 58% center, center;
	}

	.devfl-hero h1 {
		max-width: 490px;
		font-size: clamp(2.7rem, 4vw, 4.15rem);
	}
}

@media (max-width: 900px) {
	body.admin-bar .devfl-header {
		top: 46px;
	}

	.devfl-container {
		width: min(100% - 28px, 760px);
	}

	.devfl-menu-toggle {
		display: block;
	}

	.devfl-nav {
		position: absolute;
		top: calc(100% + 1px);
		right: 14px;
		left: 14px;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 18px;
		padding: 22px;
		border: 1px solid rgba(255, 255, 255, 0.12);
		border-radius: 18px;
		background: rgba(14, 42, 61, 0.98);
	}

	.devfl-nav.is-open {
		display: flex;
	}

	.devfl-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}

	.devfl-menu a {
		display: block;
		padding: 10px 0;
	}

	.devfl-language-switcher {
		justify-content: center;
		margin: 0 auto;
	}

	.devfl-hero {
		min-height: auto;
		padding: 76px 0 72px;
		background:
			linear-gradient(180deg, rgba(255, 236, 226, 0.94) 0%, rgba(255, 236, 226, 0.86) 50%, rgba(255, 255, 255, 0.58) 100%),
			radial-gradient(circle at 12% 8%, rgba(255, 122, 69, 0.34), transparent 30%),
			var(--devfl-hero-image),
			linear-gradient(135deg, #F8F7F4 0%, #FDECE2 45%, #ffffff 100%);
		background-position: center, center, 78% 40%, center;
		background-repeat: no-repeat;
		background-size: cover, cover, cover, cover;
	}

	.devfl-hero__inner {
		min-height: 520px;
		text-align: center;
	}

	.devfl-hero__content {
		display: grid;
		justify-items: center;
		min-width: 0;
		max-width: 100%;
	}

	.devfl-hero h1 {
		max-width: 100%;
		overflow-wrap: break-word;
		word-break: break-word;
	}

	.devfl-actions {
		justify-content: center;
	}

	.devfl-card-grid,
	.devfl-project-grid,
	.devfl-testimonials,
	.devfl-services-grid,
	.devfl-process-steps,
	.devfl-contact-grid,
	.devfl-form-row,
	.devfl-blog-grid {
		grid-template-columns: 1fr;
	}

	.devfl-process-steps::before {
		display: none;
	}

	.devfl-slider {
		--devfl-slider-visible: 1;
		padding-inline: 48px;
	}

	.devfl-slider-arrow {
		width: 40px;
		height: 40px;
		font-size: 1.7rem;
	}

	.devfl-project-card__image {
		height: 260px;
	}

	.devfl-footer__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

@media (max-width: 600px) {
	body.admin-bar .devfl-header {
		top: 0;
	}

	.devfl-header__inner {
		min-height: 64px;
	}

	.devfl-site-main {
		padding-top: 64px;
	}

	.devfl-brand img,
	.devfl-brand__logo {
		max-width: 112px;
		max-height: 40px;
	}

	.devfl-hero {
		padding-top: 58px;
	}

	.devfl-hero h1 {
		font-size: clamp(2.1rem, 10vw, 3.2rem);
	}

	.devfl-button {
		width: 100%;
	}

	.devfl-actions {
		width: 100%;
	}

	.devfl-section {
		padding: 54px 0;
	}

	.devfl-card,
	.devfl-testimonial,
	.devfl-project-card__body {
		padding: 22px;
	}

	.devfl-card {
		min-height: auto;
	}

	.devfl-slider {
		padding-inline: 0;
	}

	.devfl-slider-arrow {
		top: auto;
		bottom: -4px;
		transform: none;
	}

	.devfl-slider-arrow:hover,
	.devfl-slider-arrow:focus-visible {
		transform: scale(1.04);
	}

	.devfl-slider-dots {
		padding-inline: 54px;
	}

	.devfl-project-card__image {
		height: 210px;
	}

	.devfl-footer {
		padding: 48px 0 20px;
	}

	.devfl-footer__grid {
		grid-template-columns: auto auto;
		grid-template-areas:
			"brand brand"
			"nav contact";
		justify-content: center;
		column-gap: 56px;
		row-gap: 28px;
		text-align: center;
	}

	.devfl-footer__brand {
		grid-area: brand;
		display: grid;
		justify-items: center;
	}

	.devfl-footer__nav {
		grid-area: nav;
	}

	.devfl-footer__contact {
		grid-area: contact;
	}

	.devfl-footer-menu,
	.devfl-footer__contact ul {
		justify-items: center;
	}

	.devfl-footer__logo {
		max-width: 190px;
		max-height: 60px;
	}
}

/* ---------------------------------------------------------------------
   Fase 5 — CRO (2026-07-03)
   --------------------------------------------------------------------- */

/* Reassurance line under the contact form's submit button (modal and
   Contact page) — tells the visitor what happens after sending. */
.devfl-form-reassure {
	margin: 10px 0 0;
	font-size: 0.88rem;
	color: var(--devfl-muted);
}

/**
 * Small trust pill (2026-07-12) — first use is the "We Speak Spanish"
 * bilingual signal on the Home hero (see project-docs/plan-seo-devfl.md
 * Fase 2 Frente B), written generically so any other short trust claim
 * (licensed, since-year, etc.) can reuse it later instead of a one-off
 * class. --devfl-trust-badge-color lets each placement pick light/dark
 * text without overriding every property.
 */
.devfl-trust-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	/* Was 20px — Aristides flagged it as sitting almost flush against the
	   button row above (2026-07-12 screenshot). Matches .devfl-actions's
	   own top margin (28px) for consistent vertical rhythm. */
	margin-top: 28px;
	padding: 8px 16px;
	border: 1px solid var(--devfl-trust-badge-border, var(--devfl-border));
	border-radius: 999px;
	background: var(--devfl-trust-badge-bg, #fff);
	color: var(--devfl-trust-badge-color, var(--devfl-ink));
	font-size: 0.85rem;
	font-weight: 700;
}

.devfl-trust-badge::before {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--devfl-primary);
	content: "";
}

/* Link under a Home FAQ answer (e.g. to the website-cost guide). Uses the
   darkened brand orange — the FAQ section has a light background, where
   --devfl-primary fails WCAG AA as text (see :root notes). */
.devfl-faq__link {
	display: inline-block;
	margin-top: 8px;
	font-weight: 600;
	color: var(--devfl-primary-text);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.devfl-faq__link:hover,
.devfl-faq__link:focus {
	text-decoration: none;
}

/* Floating WhatsApp button (footer.php). Only rendered once
   dev_fl_whatsapp_number is configured; links to the internal
   /go/whatsapp/ redirect so the number never appears in the markup.
   WhatsApp branding kept on purpose — instant recognition beats brand
   consistency for this one element. Uses WhatsApp's own dark teal
   (#075E54, from their app header) instead of the brighter #25d366 —
   the bright green only gives ~2:1 contrast with white text, well
   below the 4.5:1 WCAG AA minimum (found via PageSpeed accessibility
   audit, 2026-07-05); the dark teal gives ~7.7:1 while still reading
   as unmistakably WhatsApp. */
.devfl-whatsapp {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 90; /* below the contact modal, above page content */
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 18px;
	border-radius: 999px;
	background: #075e54;
	color: #fff;
	font-family: var(--devfl-font-heading);
	font-size: 0.92rem;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(14, 42, 61, 0.28);
}

.devfl-whatsapp:hover,
.devfl-whatsapp:focus {
	background: #0a6e62;
	color: #fff;
}

.devfl-whatsapp__icon {
	width: 22px;
	height: 22px;
	flex: none;
}

@media (max-width: 600px) {
	/* Circle-only on phones so it doesn't cover content or compete with
	   the tap targets at the bottom of the screen. */
	.devfl-whatsapp {
		padding: 13px;
	}

	.devfl-whatsapp__label {
		position: absolute;
		width: 1px;
		height: 1px;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
	}
}
