/* ============================================================
   WebifyGO — Studio Design System
   White + Teal, Instrument Serif + DM Sans + DM Mono
============================================================ */

/* --- Variables --- */
:root {
	--indigo: #1B6FF2;
	--indigo-dark: #0B3D91;
	--indigo-light: #EEF4FF;
	--indigo-hover: #D1F0EC;
	--ink: #FFFFFF;
	--ink-2: #F9FAFB;
	--ink-3: #F3F4F6;
	--ink-4: #E5E7EB;
	--paper: #F3F8FF;
	--paper-2: #D1F0EC;
	--paper-3: #A3DDD7;
	--gold: #1B6FF2;
	--gold-dim: #0B3D91;
	--gold-glow: rgba(27,111,242,0.10);
	--text-primary: #111827;
	--text-secondary: #4B5563;
	--text-tertiary: #9CA3AF;
	--text-dark: #111827;
	--text-dark-2: #4B5563;
	--border-dark: #E5E7EB;
	--border-dark-md: #D1D5DB;
	--border-paper: #C9EEEA;
	--font-display: 'Gordita', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--font-body: 'Gordita', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--font-mono: 'Gordita', -apple-system, BlinkMacSystemFont, monospace;
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--dur: 0.32s;
	--section-pad: 104px;
	--section-pad-sm: 64px;
	/* Bootstrap compat aliases */
	--gray-50: #F9FAFB;
	--gray-100: #F3F4F6;
	--gray-200: #E5E7EB;
	--gray-400: #9CA3AF;
	--gray-600: #4B5563;
	--gray-800: #1F2937;
	--gray-900: #111827;
	--white: #FFFFFF;
	--radius: 12px;
	--radius-sm: 8px;
	--shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
	--shadow-md: 0 4px 12px rgba(0,0,0,0.08);
	--shadow-lg: 0 10px 30px rgba(0,0,0,0.10);
	--transition: 0.32s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-primary);
	background: #FFFFFF;
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	line-height: 1.15;
	font-weight: 600;
	color: var(--gray-900);
	letter-spacing: -0.01em;
}

p {
	color: var(--gray-600);
	margin-bottom: 1rem;
}

p:last-child {
	margin-bottom: 0;
}

a {
	color: var(--indigo);
	text-decoration: none;
	transition: color var(--dur) ease;
}

a:hover {
	color: var(--indigo-dark);
}

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

ul, ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* --- Section Spacing --- */
.section-py {
	padding-top: var(--section-pad);
	padding-bottom: var(--section-pad);
}

.section-py-sm {
	padding-top: var(--section-pad-sm);
	padding-bottom: var(--section-pad-sm);
}

/* --- Typography Helpers --- */
.wf-label {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--indigo);
	font-weight: 400;
}

.section-label {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--indigo);
	font-weight: 400;
	margin-bottom: 16px;
	display: block;
}

.section-title {
	font-family: var(--font-display);
	font-size: clamp(28px, 4vw, 46px);
	font-weight: 700;
	line-height: 1.15;
	color: var(--gray-900);
	margin-bottom: 16px;
}

.section-title--dark {
	color: var(--gray-900);
}

.section-sub {
	font-size: 17px;
	color: var(--gray-600);
	max-width: 520px;
	line-height: 1.7;
}

.section-sub--dark {
	color: var(--gray-600);
}

/* --- Utilities --- */
.text-indigo {
	color: var(--indigo) !important;
}

.text-muted {
	color: var(--gray-600) !important;
}

.text-muted-soft {
	color: var(--gray-600);
}

.fw-600 {
	font-weight: 600;
}

.fw-700 {
	font-weight: 700;
}

.bg-gray-50 {
	background: var(--gray-50);
}

.bg-indigo-light {
	background: var(--indigo-light);
}

.bg-indigo {
	background: var(--indigo);
}

.bg-dark-900 {
	background: var(--gray-900);
}

.border-indigo {
	border-color: var(--indigo) !important;
}

.wf-divider {
	height: 1px;
	background: var(--gray-200);
	border: none;
	margin: 0;
}

/* ============================================================
   Buttons
============================================================ */
.wf-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 500;
	border-radius: 8px;
	padding: 10px 20px;
	cursor: pointer;
	border: none;
	transition: background var(--dur) ease, color var(--dur) ease, transform var(--dur) var(--ease-out), box-shadow var(--dur) ease, border-color var(--dur) ease;
	text-decoration: none;
	white-space: nowrap;
	line-height: 1;
}

.wf-btn:hover {
	transform: translateY(-1px);
}

.wf-btn--gold {
	background: var(--indigo);
	color: #FFFFFF;
	font-weight: 600;
}

.wf-btn--gold:hover {
	background: var(--indigo-dark);
	box-shadow: 0 8px 28px rgba(27,111,242,0.30);
	color: #FFFFFF;
}

.wf-btn--ghost {
	background: transparent;
	color: var(--gray-700, #374151);
	border: 1px solid var(--gray-200);
}

.wf-btn--ghost:hover {
	background: var(--gray-50);
	border-color: var(--gray-300, #D1D5DB);
	color: var(--gray-900);
}

.wf-btn--ghost-dark {
	background: transparent;
	color: var(--gray-700, #374151);
	border: 1px solid var(--gray-200);
}

.wf-btn--ghost-dark:hover {
	background: var(--gray-50);
	color: var(--gray-900);
}

.wf-btn--lg {
	font-size: 15px;
	padding: 14px 28px;
	border-radius: 10px;
}

.wf-btn__arrow {
	transition: transform var(--dur) var(--ease-out);
	display: inline-block;
}

.wf-btn:hover .wf-btn__arrow {
	transform: translate(3px, -2px);
}

/* Legacy buttons */
.btn-indigo {
	background: var(--indigo);
	color: #FFFFFF;
	border: 2px solid var(--indigo);
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.9rem;
	padding: 0.55rem 1.4rem;
	transition: background var(--dur) ease, transform var(--dur) ease, box-shadow var(--dur) ease;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	text-decoration: none;
}

.btn-indigo:hover {
	background: var(--indigo-dark);
	border-color: var(--indigo-dark);
	color: #FFFFFF;
	box-shadow: 0 4px 18px rgba(27,111,242,0.30);
	transform: translateY(-1px);
}

.btn-indigo-outline {
	background: transparent;
	color: var(--indigo);
	border: 2px solid var(--indigo);
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.9rem;
	padding: 0.55rem 1.4rem;
	transition: all var(--dur) ease;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	text-decoration: none;
}

.btn-indigo-outline:hover {
	background: var(--indigo);
	color: #FFFFFF;
	transform: translateY(-1px);
}

.btn-white-outline {
	background: transparent;
	color: #FFFFFF;
	border: 2px solid rgba(255,255,255,0.5);
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.9rem;
	padding: 0.55rem 1.4rem;
	transition: all var(--dur) ease;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	text-decoration: none;
}

.btn-white-outline:hover {
	background: rgba(255,255,255,0.15);
	border-color: #FFFFFF;
	color: #FFFFFF;
}

/* ============================================================
   Navigation
============================================================ */
.wf-nav {
	background: rgba(255,255,255,0.97);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--gray-200);
	padding: 0.9rem 0;
	z-index: 1000;
	transition: background var(--dur) ease, box-shadow var(--dur) ease;
}

.wf-nav.is-scrolled {
	background: rgba(255,255,255,0.97);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	box-shadow: 0 1px 16px rgba(0,0,0,0.07);
}

.wf-nav .navbar-brand img {
	height: 32px;
	width: auto;
}

.wf-nav .nav-link {
	color: var(--gray-600);
	font-weight: 500;
	font-size: 14px;
	padding: 6px 12px;
	border-radius: 6px;
	transition: color var(--dur) ease, background var(--dur) ease;
}

.wf-nav .nav-link:hover,
.wf-nav .nav-link.active {
	color: var(--gray-900);
	background: var(--gray-100);
}

.wf-nav .navbar-toggler {
	border: 1px solid var(--gray-200);
	padding: 6px 10px;
	border-radius: 6px;
}

.wf-nav .navbar-toggler:focus {
	box-shadow: none;
}

.wf-nav .collapse.show,
.wf-nav .collapsing {
	background: #FFFFFF;
	border: 1px solid var(--gray-200);
	border-radius: 8px;
	padding: 8px;
	margin-top: 8px;
}

/* ============================================================
   Hero
============================================================ */
.wf-hero {
	position: relative;
	padding: 88px 0 96px;
	background: #FFFFFF;
	overflow: hidden;
}

.wf-hero::before {
	content: '';
	position: absolute;
	top: -10%;
	left: 50%;
	transform: translateX(-50%);
	width: 700px;
	height: 700px;
	background: radial-gradient(ellipse, rgba(27,111,242,0.07) 0%, transparent 68%);
	pointer-events: none;
}

.wf-hero__eyebrow {
	margin-bottom: 28px;
}

.wf-hero__heading {
	font-family: var(--font-display);
	font-size: clamp(44px, 7vw, 80px);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--gray-900);
	margin-bottom: 28px;
	max-width: 780px;
}

/* Cycling word */
.wf-hero__cycle-wrap {
	display: inline-block;
	overflow: hidden;
	vertical-align: bottom;
}

.wf-hero__cycle-text {
	display: block;
	color: var(--indigo);
	font-weight: 900;
	transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}

.wf-hero__cycle-text.is-exiting {
	transform: translateY(-105%);
	opacity: 0;
}

.wf-hero__sub {
	font-size: 18px;
	line-height: 1.68;
	color: var(--gray-600);
	max-width: 500px;
	margin-bottom: 40px;
}

.wf-hero__actions {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 72px;
}

.wf-hero__stats {
	display: flex;
	gap: 48px;
	padding-top: 48px;
	border-top: 1px solid var(--gray-200);
	flex-wrap: wrap;
}

.wf-hero__stat-num {
	display: block;
	font-family: var(--font-display);
	font-size: 30px;
	font-weight: 400;
	color: var(--gray-900);
	line-height: 1;
	margin-bottom: 6px;
}

.wf-hero__stat-label {
	display: block;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gray-400);
}

/* legacy hero classes */
.wf-hero-heading {
	font-family: var(--font-display);
	font-size: clamp(36px, 5.5vw, 64px);
	font-weight: 400;
	line-height: 1.1;
	color: var(--gray-900);
	margin-bottom: 20px;
}

.wf-hero-sub {
	font-size: 17px;
	color: var(--gray-600);
	max-width: 540px;
	margin: 0 auto 2.5rem;
	line-height: 1.7;
}

.wf-hero .hero-label {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--indigo-light);
	color: var(--indigo);
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 0.4rem 1rem;
	border-radius: 100px;
	margin-bottom: 1.75rem;
}

.wf-hero .hero-sub {
	font-size: 1.1rem;
	color: var(--gray-600);
	max-width: 560px;
	margin: 0 auto 2.5rem;
	line-height: 1.7;
}

.wf-hero .hero-actions {
	display: flex;
	justify-content: center;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.wf-hero .hero-social-proof {
	margin-top: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	color: var(--gray-600);
	font-size: 0.875rem;
}

.wf-hero .hero-social-proof .stars {
	color: #F59E0B;
}

/* ============================================================
   Services List
============================================================ */
.wf-services {
	padding-top: var(--section-pad);
	padding-bottom: var(--section-pad);
	background: var(--gray-50);
}

.wf-services__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 48px;
	gap: 24px;
}

.wf-service-list {
	border-top: 1px solid var(--gray-200);
}

.wf-service-item {
	display: grid;
	grid-template-columns: 52px 1fr auto;
	align-items: center;
	gap: 32px;
	padding: 28px 0;
	border-bottom: 1px solid var(--gray-200);
	cursor: default;
	transition: gap var(--dur) ease;
}

.wf-service-item:hover {
	gap: 44px;
}

.wf-service-item:hover .wf-service-name {
	color: var(--indigo);
}

.wf-service-item:hover .wf-service-arrow {
	opacity: 1;
	transform: translate(0, 0);
}

.wf-service-num {
	font-family: var(--font-mono);
	font-size: 12px;
	font-weight: 400;
	color: var(--gray-400);
	letter-spacing: 0.06em;
}

.wf-service-name {
	font-size: 22px;
	font-weight: 600;
	color: var(--gray-900);
	margin-bottom: 4px;
	transition: color var(--dur) ease;
	line-height: 1.2;
}

.wf-service-desc {
	font-size: 14px;
	color: var(--gray-400);
	line-height: 1.5;
	margin: 0;
	max-width: 560px;
}

.wf-service-arrow {
	font-size: 18px;
	color: var(--indigo);
	opacity: 0;
	transform: translate(-6px, 6px);
	transition: opacity var(--dur) ease, transform var(--dur) var(--ease-out);
}

/* ============================================================
   Platform Section
============================================================ */
.wf-platform-section {
	background: var(--paper);
	padding: var(--section-pad) 0 56px;
}

.wf-platform__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 44px;
}

.wf-platform-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 10px;
}

.wf-platform-card {
	background: #FFFFFF;
	border: 1px solid var(--border-paper);
	border-radius: 10px;
	padding: 20px 14px;
	text-align: center;
	transition: border-color var(--dur) ease, transform var(--dur) var(--ease-out), box-shadow var(--dur) ease;
}

.wf-platform-card:hover {
	border-color: var(--indigo-light);
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.wf-platform-card i {
	font-size: 22px;
	color: var(--indigo);
	display: block;
	margin-bottom: 10px;
}

.wf-platform-card__label {
	font-size: 13px;
	font-weight: 600;
	color: var(--gray-900);
	margin-bottom: 4px;
	line-height: 1.3;
}

.wf-platform-card__desc {
	font-size: 11px;
	color: var(--gray-400);
	line-height: 1.4;
	font-family: var(--font-mono);
}

/* old platform mini card */
.wf-platform-mini-card {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 16px;
	background: #FFFFFF;
	border-radius: 10px;
	border: 1px solid var(--gray-200);
}

.wf-platform-mini-card i {
	font-size: 1.3rem;
	color: var(--indigo);
	flex-shrink: 0;
	margin-top: 2px;
}

.wf-platform-mini-card .label {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--gray-900);
}

/* ============================================================
   Testimonials / Work Section
============================================================ */
.wf-work {
	background: var(--paper);
	padding-top: 0;
	padding-bottom: var(--section-pad);
	border-top: 1px solid var(--border-paper);
}

.wf-work__header {
	padding-top: var(--section-pad-sm);
	margin-bottom: 48px;
}

.wf-testimonial-list {
	border-top: 1px solid var(--border-paper);
}

.wf-testimonial-item {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	align-items: start;
	gap: 64px;
	padding: 44px 0;
	border-bottom: 1px solid var(--border-paper);
}

.wf-testimonial-client {
	font-family: var(--font-display);
	font-size: clamp(20px, 2.5vw, 28px);
	font-weight: 700;
	line-height: 1.15;
	color: var(--gray-900);
}

.wf-testimonial-meta {
	margin-top: 10px;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gray-400);
}

.wf-testimonial-stars {
	display: flex;
	gap: 2px;
	margin-bottom: 14px;
	color: #F59E0B;
	font-size: 13px;
	letter-spacing: 0.03em;
}

.wf-testimonial-quote {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.75;
	color: var(--gray-600);
	font-style: italic;
	margin: 0;
}

/* Legacy testimonial card */
.wf-testimonial {
	background: #FFFFFF;
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	padding: 2rem;
	height: 100%;
}

.wf-testimonial .stars {
	color: #F59E0B;
	font-size: 0.85rem;
	margin-bottom: 1rem;
	letter-spacing: 0.05em;
}

.wf-testimonial .quote {
	font-size: 0.95rem;
	color: var(--gray-600);
	line-height: 1.75;
	margin-bottom: 1.5rem;
	font-style: italic;
}

.wf-testimonial .author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.wf-testimonial .author-avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--indigo-light);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	color: var(--indigo);
	font-weight: 700;
	flex-shrink: 0;
}

.wf-testimonial .author-name {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--gray-900);
	margin-bottom: 0.1rem;
}

.wf-testimonial .author-role {
	font-size: 0.8rem;
	color: var(--gray-400);
}

/* ============================================================
   Process Section
============================================================ */
.wf-process {
	padding-top: var(--section-pad);
	padding-bottom: var(--section-pad);
	background: var(--gray-50);
}

.wf-process__header {
	margin-bottom: 64px;
}

.wf-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

.wf-step__num {
	font-family: var(--font-mono);
	font-size: 12px;
	color: var(--indigo);
	letter-spacing: 0.08em;
	margin-bottom: 24px;
	display: block;
}

.wf-step__title {
	font-size: 18px;
	font-weight: 600;
	color: var(--gray-900);
	margin-bottom: 10px;
	line-height: 1.3;
}

.wf-step__desc {
	font-size: 14px;
	line-height: 1.68;
	color: var(--gray-600);
	margin: 0;
}

/* Legacy process step */
.wf-process-step {
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
}

.wf-process-step + .wf-process-step {
	margin-top: 2rem;
}

.wf-step-number {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--indigo);
	color: #FFFFFF;
	font-weight: 600;
	font-family: var(--font-mono);
	font-size: 0.875rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.wf-step-content h5 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.35rem;
	color: var(--gray-900);
}

.wf-step-content p {
	font-size: 0.9rem;
	color: var(--gray-600);
	margin-bottom: 0;
}

/* ============================================================
   Stats
============================================================ */
.wf-stats {
	padding-top: var(--section-pad);
	padding-bottom: var(--section-pad);
	border-top: 1px solid var(--gray-200);
	border-bottom: 1px solid var(--gray-200);
	background: #FFFFFF;
}

.wf-stat-item {
	text-align: left;
}

.wf-stat-item .stat-number,
.wf-stat-number {
	font-family: var(--font-display);
	font-size: clamp(40px, 5.5vw, 64px);
	font-weight: 400;
	color: var(--indigo);
	line-height: 1;
	margin-bottom: 8px;
	display: block;
}

.wf-stat-item .stat-label,
.wf-stat-label {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gray-400);
	font-weight: 400;
	display: block;
}

/* ============================================================
   CTA Banner
============================================================ */
.wf-cta-banner {
	background: var(--indigo);
	padding: 80px 0;
	text-align: center;
}

.wf-cta-banner .section-label {
	color: rgba(255,255,255,0.65);
}

.wf-cta-banner h2 {
	font-family: var(--font-display);
	color: #FFFFFF;
	font-size: clamp(28px, 4vw, 46px);
	font-weight: 700;
	margin-bottom: 16px;
}

.wf-cta-banner p {
	color: rgba(255,255,255,0.80);
	font-size: 1.05rem;
	margin-bottom: 2rem;
}

.wf-cta-banner__heading {
	font-family: var(--font-display);
	font-size: clamp(36px, 5.5vw, 60px);
	font-weight: 700;
	line-height: 1.1;
	color: #FFFFFF;
	margin-bottom: 20px;
}

.wf-cta-banner__sub {
	font-size: 17px;
	color: rgba(255,255,255,0.80);
	margin-bottom: 40px;
	max-width: 420px;
	margin-left: auto;
	margin-right: auto;
}

.wf-cta-banner .wf-btn--gold {
	background: #FFFFFF;
	color: var(--indigo);
}

.wf-cta-banner .wf-btn--gold:hover {
	background: rgba(255,255,255,0.92);
	box-shadow: 0 8px 28px rgba(0,0,0,0.15);
	color: var(--indigo-dark);
}

.wf-cta-banner .wf-btn--ghost {
	border-color: rgba(255,255,255,0.40);
	color: #FFFFFF;
}

.wf-cta-banner .wf-btn--ghost:hover {
	background: rgba(255,255,255,0.12);
	border-color: rgba(255,255,255,0.65);
	color: #FFFFFF;
}

/* ============================================================
   Cards
============================================================ */
.wf-card {
	background: #FFFFFF;
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	padding: 2rem;
	transition: box-shadow var(--dur) ease, transform var(--dur) var(--ease-out), border-color var(--dur) ease;
}

.wf-card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-3px);
	border-color: var(--indigo-light);
}

.wf-card .card-icon {
	width: 48px;
	height: 48px;
	background: var(--indigo-light);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	color: var(--indigo);
	margin-bottom: 1.25rem;
	flex-shrink: 0;
}

.wf-card h4,
.wf-card h5 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--gray-900);
}

.wf-card p {
	font-size: 0.9rem;
	color: var(--gray-600);
	margin-bottom: 0;
}

/* ============================================================
   Icon box
============================================================ */
.wf-icon-box {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: var(--indigo-light);
	border-radius: 10px;
	font-size: 1.3rem;
	color: var(--indigo);
	flex-shrink: 0;
}

/* ============================================================
   Why choose us
============================================================ */
.wf-why-item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	padding: 1.25rem;
	border-radius: 10px;
	transition: background var(--dur) ease;
}

.wf-why-item:hover {
	background: var(--gray-50);
}

.wf-why-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: var(--indigo-light);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	color: var(--indigo);
	flex-shrink: 0;
}

.wf-why-item h6 {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--gray-900);
	margin-bottom: 0.25rem;
}

.wf-why-item p {
	font-size: 0.875rem;
	color: var(--gray-600);
	margin-bottom: 0;
}

/* ============================================================
   Blog Cards
============================================================ */
.wf-blog-card {
	background: #FFFFFF;
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	overflow: hidden;
	transition: box-shadow var(--dur) ease, transform var(--dur) var(--ease-out);
	display: flex;
	flex-direction: column;
}

.wf-blog-card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-3px);
}

.wf-blog-card-img {
	display: block;
	width: 100%;
	height: 220px;
	overflow: hidden;
	flex-shrink: 0;
}

.wf-blog-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.45s ease;
}

.wf-blog-card:hover .wf-blog-card-img img {
	transform: scale(1.04);
}

.wf-blog-card-placeholder {
	width: 100%;
	height: 220px;
	background: var(--indigo-light);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	color: var(--indigo);
	flex-shrink: 0;
}

.wf-blog-card-body {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.wf-blog-date {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gray-400);
	display: block;
	margin-bottom: 0.5rem;
}

.wf-blog-card .blog-cover {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
}

.wf-blog-card .blog-body {
	padding: 1.5rem;
}

.wf-blog-card .blog-date {
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--gray-400);
	margin-bottom: 0.5rem;
}

.wf-blog-card .blog-read-more {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--indigo);
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	margin-top: auto;
}

/* ============================================================
   Page Hero (inner pages)
============================================================ */
.wf-page-hero {
	background: var(--gray-50);
	border-bottom: 1px solid var(--gray-200);
	padding: 56px 0 48px;
}

.wf-page-hero h1,
.wf-page-title {
	font-family: var(--font-display);
	font-size: clamp(24px, 4vw, 44px);
	font-weight: 700;
	line-height: 1.15;
	color: var(--gray-900);
	margin-bottom: 12px;
}

.wf-page-hero .breadcrumb {
	font-size: 0.85rem;
	margin-bottom: 0;
	--bs-breadcrumb-divider-color: var(--gray-400);
	--bs-breadcrumb-item-active-color: var(--gray-600);
}

.wf-page-hero .breadcrumb-item a {
	color: var(--indigo);
}

/* ============================================================
   About Split
============================================================ */
.wf-about-section {
	padding: 96px 0;
}

.wf-about-section .about-label {
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--indigo);
	margin-bottom: 1rem;
}

.wf-about-section h2 {
	font-family: var(--font-display);
	font-size: clamp(24px, 3.5vw, 40px);
	font-weight: 700;
	margin-bottom: 1.25rem;
	color: var(--gray-900);
}

.wf-about-section .about-image {
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	width: 100%;
	height: 420px;
	object-fit: cover;
}

.wf-about-section .about-image-placeholder {
	border-radius: var(--radius);
	background: var(--indigo-light);
	width: 100%;
	height: 420px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	color: var(--indigo);
}

/* ============================================================
   Founder Card
============================================================ */
.wf-founder-card {
	background: var(--gray-50);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	padding: 2.5rem;
}

.wf-founder-card .founder-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--indigo-light);
}

.wf-founder-card .founder-name {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: 0.1rem;
}

.wf-founder-card .founder-role {
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--indigo);
}

.wf-founder-card .founder-bio {
	font-size: 0.95rem;
	color: var(--gray-600);
	line-height: 1.75;
}

/* ============================================================
   Footer
============================================================ */
.wf-footer {
	background: #FFFFFF;
	border-top: 1px solid var(--gray-200);
	padding-top: 72px;
}

.wf-footer-top {
	padding-bottom: 56px;
}

.wf-footer-heading {
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--gray-900);
	margin-bottom: 20px;
}

.wf-footer-link {
	color: var(--gray-600);
	font-size: 14px;
	display: block;
	margin-bottom: 10px;
	transition: color var(--dur) ease;
	text-decoration: none;
}

.wf-footer-link:hover {
	color: var(--indigo);
}

.wf-footer .text-secondary {
	color: var(--gray-600) !important;
	font-size: 14px;
}

.wf-footer-bottom {
	border-top: 1px solid var(--gray-200);
	padding: 20px 0;
}

.wf-social-icon {
	width: 34px;
	height: 34px;
	background: var(--gray-100);
	border: 1px solid var(--gray-200);
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-600);
	font-size: 15px;
	text-decoration: none;
	transition: background var(--dur) ease, color var(--dur) ease, border-color var(--dur) ease;
}

.wf-social-icon:hover {
	background: var(--indigo);
	border-color: var(--indigo);
	color: #FFFFFF;
}

/* ============================================================
   Forms
============================================================ */
.wf-form .form-label {
	font-size: 13px;
	font-weight: 500;
	color: var(--gray-800);
	margin-bottom: 0.4rem;
}

.wf-form .form-control,
.wf-form .form-select {
	border: 1.5px solid var(--gray-200);
	border-radius: var(--radius-sm);
	padding: 0.65rem 1rem;
	font-size: 0.9rem;
	color: var(--gray-900);
	background: #FFFFFF;
	transition: border-color var(--dur) ease, box-shadow var(--dur) ease;
}

.wf-form .form-control::placeholder {
	color: var(--gray-400);
}

.wf-form .form-control:focus,
.wf-form .form-select:focus {
	border-color: var(--indigo);
	box-shadow: 0 0 0 3px rgba(27,111,242,0.12);
	outline: none;
	background: #FFFFFF;
	color: var(--gray-900);
}

.wf-form textarea.form-control {
	resize: vertical;
	min-height: 130px;
}

/* ============================================================
   Contact Cards
============================================================ */
.wf-contact-card {
	background: var(--gray-50);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	padding: 1.75rem;
	text-align: center;
	height: 100%;
}

.wf-contact-card .contact-icon {
	width: 52px;
	height: 52px;
	background: var(--indigo-light);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	color: var(--indigo);
	margin: 0 auto 1rem;
}

.wf-contact-card h5 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.4rem;
	color: var(--gray-900);
}

.wf-contact-card p {
	font-size: 0.9rem;
	margin-bottom: 0;
	color: var(--gray-600);
}

/* ============================================================
   Pagination
============================================================ */
.wf-pagination .page-link {
	color: var(--gray-600);
	border-color: var(--gray-200);
	border-radius: var(--radius-sm) !important;
	margin: 0 2px;
	font-size: 0.875rem;
	font-weight: 500;
	padding: 0.45rem 0.85rem;
}

.wf-pagination .page-link:hover {
	background: var(--indigo-light);
	border-color: var(--indigo-light);
	color: var(--indigo);
}

.wf-pagination .page-item.active .page-link {
	background: var(--indigo);
	border-color: var(--indigo);
	color: #FFFFFF;
}

/* ============================================================
   Accordion
============================================================ */
.wf-accordion .accordion-button {
	font-weight: 600;
	font-size: 1rem;
	color: var(--gray-900);
	background: #FFFFFF;
}

.wf-accordion .accordion-button:not(.collapsed) {
	color: var(--indigo);
	background: var(--indigo-light);
	box-shadow: none;
}

.wf-accordion .accordion-item {
	border: 1px solid var(--gray-200) !important;
	border-radius: var(--radius-sm) !important;
	margin-bottom: 0.5rem;
	overflow: hidden;
	background: #FFFFFF;
}

.wf-accordion .accordion-body {
	font-size: 0.9rem;
	color: var(--gray-600);
	background: #FFFFFF;
}

/* ============================================================
   Articles & Blog
============================================================ */
.wf-article h1, .wf-article h2, .wf-article h3 {
	color: var(--gray-900);
}

.wf-article p {
	color: var(--gray-600);
	font-size: 1.0rem;
	line-height: 1.8;
}

.wf-article img {
	border-radius: var(--radius-sm);
	margin: 1.5rem 0;
}

.wf-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1.5rem;
}

.wf-tag {
	background: var(--indigo-light);
	color: var(--indigo);
	border-radius: 100px;
	padding: 0.25rem 0.75rem;
	font-size: 0.8rem;
	font-weight: 600;
}

/* ============================================================
   404 Page
============================================================ */
.wf-404 {
	padding: 120px 0;
	text-align: center;
}

.wf-404 .error-code {
	font-family: var(--font-display);
	font-size: clamp(5rem, 15vw, 10rem);
	font-weight: 400;
	color: var(--indigo-light);
	line-height: 1;
	margin-bottom: 0;
}

.wf-404 h2 {
	color: var(--gray-900);
	margin-bottom: 0.75rem;
}

.wf-404 p {
	color: var(--gray-600);
	margin-bottom: 2rem;
}

/* ============================================================
   Platform Features Page
============================================================ */
.wf-feature-tab {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 18px;
	border-radius: var(--radius-sm);
	border: 1px solid var(--gray-200);
	background: #FFFFFF;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--gray-600);
	cursor: pointer;
	transition: all var(--dur) ease;
	text-decoration: none;
}

.wf-feature-tab:hover,
.wf-feature-tab.active {
	background: var(--indigo);
	border-color: var(--indigo);
	color: #FFFFFF;
}

.wf-feature-tab i {
	font-size: 1rem;
}

.wf-feature-panel {
	display: none;
}

.wf-feature-panel.active {
	display: block;
}

.wf-feature-screen {
	border-radius: var(--radius);
	border: 1px solid var(--gray-200);
	box-shadow: 0 8px 32px rgba(0,0,0,0.08);
	width: 100%;
	aspect-ratio: 16/9;
	background: var(--gray-50);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-400);
	font-size: 3rem;
	overflow: hidden;
}

.wf-feature-screen img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top left;
	display: block;
}

.wf-integration-logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 20px 16px;
	background: #FFFFFF;
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--gray-600);
	text-align: center;
	transition: box-shadow var(--dur) ease, transform var(--dur) var(--ease-out);
}

.wf-integration-logo:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.wf-integration-logo i {
	font-size: 1.8rem;
	color: var(--indigo);
}

.wf-pill-tag {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: var(--gray-50);
	border: 1px solid var(--gray-200);
	border-radius: 20px;
	padding: 5px 14px;
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--gray-700, #374151);
}

.wf-pill-tag i {
	color: var(--indigo);
	font-size: 0.85rem;
}

/* ============================================================
   Hero Stat Cards (right column)
============================================================ */
.wf-hero__visual {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.wf-hero-stat-card {
	background: #FFFFFF;
	border: 1px solid var(--gray-200);
	border-radius: 14px;
	padding: 24px 20px;
	box-shadow: var(--shadow);
	transition: transform var(--dur) ease, box-shadow var(--dur) ease;
}

.wf-hero-stat-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}

.wf-hero-stat-card .hsc-icon {
	font-size: 20px;
	color: var(--indigo);
	margin-bottom: 14px;
	display: block;
}

.wf-hero-stat-card .hsc-num {
	font-family: 'Gordita', sans-serif;
	font-weight: 900;
	font-size: 34px;
	color: var(--gray-900);
	line-height: 1;
	margin-bottom: 4px;
	display: block;
}

.wf-hero-stat-card .hsc-label {
	font-size: 13px;
	font-weight: 500;
	color: var(--gray-400);
	display: block;
}

/* ============================================================
   Trust Strip
============================================================ */
.wf-trust-strip {
	background: var(--indigo);
	padding: 13px 0;
}

.wf-trust-strip__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
	font-size: 13px;
	font-weight: 400;
	color: rgba(255,255,255,0.78);
}

.wf-trust-strip__inner strong {
	color: #FFFFFF;
	font-weight: 700;
}

.wf-trust-strip__dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: rgba(255,255,255,0.4);
	display: inline-block;
}

/* ============================================================
   SEO About Section
============================================================ */
.wf-about-seo {
	padding-top: var(--section-pad);
	padding-bottom: var(--section-pad);
	background: #FFFFFF;
}

.wf-about-seo img {
	width: 100%;
	height: auto;
	border-radius: 14px;
	border: 1px solid var(--gray-200);
	box-shadow: var(--shadow-md);
}

.wf-checklist {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 24px 0 32px;
}

.wf-checklist-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 500;
	color: var(--gray-700, #374151);
}

.wf-checklist-item i {
	font-size: 16px;
	color: var(--indigo);
	flex-shrink: 0;
}

/* ============================================================
   Scroll to top
============================================================ */
#scrollToTop {
	width: 40px;
	height: 40px;
	background: #FFFFFF;
	border: 1px solid var(--gray-200);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-600);
	cursor: pointer;
	position: fixed;
	bottom: 28px;
	right: 28px;
	z-index: 500;
	transition: background var(--dur) ease, box-shadow var(--dur) ease;
	box-shadow: var(--shadow);
}

#scrollToTop:hover {
	background: var(--gray-50);
	box-shadow: var(--shadow-md);
}

/* ============================================================
   Breadcrumbs
============================================================ */
.breadcrumb {
	font-size: 13px;
}

.breadcrumb-item + .breadcrumb-item::before {
	color: var(--gray-400);
}

.breadcrumb-item a {
	color: var(--indigo);
}

.breadcrumb-item.active {
	color: var(--gray-600);
}

/* ============================================================
   Responsive
============================================================ */
@media (max-width: 1199px) {
	:root {
		--section-pad: 88px;
	}

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

@media (max-width: 991px) {
	:root {
		--section-pad: 72px;
		--section-pad-sm: 56px;
	}

	.wf-hero {
		padding: 72px 0 80px;
	}

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

	.wf-testimonial-item {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 36px 0;
	}

	.wf-about-section {
		padding: 64px 0;
	}

	.wf-about-section .about-image,
	.wf-about-section .about-image-placeholder {
		height: 280px;
		margin-top: 2rem;
	}

	.wf-cta-banner {
		padding: 64px 0;
	}

	.wf-services__header {
		flex-direction: column;
		align-items: flex-start;
	}

	.wf-platform__header {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 767px) {
	:root {
		--section-pad: 56px;
		--section-pad-sm: 44px;
	}

	.wf-hero {
		padding: 64px 0 72px;
	}

	.wf-hero__heading {
		font-size: clamp(36px, 10vw, 60px);
	}

	.wf-hero__visual {
		grid-template-columns: repeat(2, 1fr);
		margin-top: 40px;
	}

	.wf-about-seo img {
		margin-top: 32px;
	}

	.wf-trust-strip__inner {
		gap: 12px;
		font-size: 12px;
	}

	.wf-hero__stats {
		gap: 28px;
		padding-top: 36px;
	}

	.wf-hero__actions {
		margin-bottom: 56px;
	}

	.wf-service-item {
		grid-template-columns: 40px 1fr auto;
		gap: 16px;
	}

	.wf-service-desc {
		display: none;
	}

	.wf-steps {
		grid-template-columns: 1fr;
		gap: 36px;
	}

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

	.wf-hero__stat-num {
		font-size: 24px;
	}
}

@media (max-width: 575px) {
	.wf-hero__cycle-wrap {
		min-width: 160px;
	}

	.wf-hero__sub {
		font-size: 16px;
	}

	.wf-hero__stats {
		gap: 20px;
	}

	.wf-hero__stat {
		min-width: 120px;
	}
}

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

/* ============================================================
   PRICING TEASER (home)
============================================================ */
.wf-pricing-teaser {
	background: var(--gray-50);
}

.wf-price-mini {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #FFFFFF;
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	padding: 2rem;
	transition: box-shadow var(--dur) ease, transform var(--dur) var(--ease-out), border-color var(--dur) ease;
}

.wf-price-mini:hover {
	border-color: var(--indigo);
	box-shadow: var(--shadow-lg);
	transform: translateY(-4px);
}

.wf-price-mini--featured {
	border-color: var(--indigo);
	box-shadow: var(--shadow-md);
}

.wf-price-mini__badge {
	position: absolute;
	top: -12px;
	left: 2rem;
	background: var(--indigo);
	color: #FFFFFF;
	font-size: 12px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 999px;
}

.wf-price-mini__name {
	font-family: var(--font-display);
	font-weight: 600;
	color: var(--text-primary);
	font-size: 1.05rem;
}

.wf-price-mini__price {
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--text-primary);
	font-size: 2.25rem;
	margin: 8px 0 4px;
}

.wf-price-mini__price span {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-tertiary);
	margin-left: 4px;
}

.wf-price-mini__desc {
	color: var(--text-secondary);
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
	flex-grow: 1;
}

/* ============================================================
   ENTERPRISE BAND (home)
============================================================ */
.wf-enterprise-band {
	background: var(--paper);
	border-top: 1px solid var(--border-paper);
	border-bottom: 1px solid var(--border-paper);
}

/* ============================================================
   PRICING PAGE
============================================================ */
.wf-pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	align-items: start;
}

.wf-pricing-card {
	position: relative;
	background: #FFFFFF;
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	padding: 2.25rem 2rem;
	transition: box-shadow var(--dur) ease, transform var(--dur) var(--ease-out), border-color var(--dur) ease;
}

.wf-pricing-card:hover {
	border-color: var(--indigo);
	box-shadow: var(--shadow-lg);
	transform: translateY(-4px);
}

.wf-pricing-card--featured {
	border-color: var(--indigo);
	box-shadow: var(--shadow-md);
}

.wf-pricing-card__badge {
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--indigo);
	color: #FFFFFF;
	font-size: 12px;
	font-weight: 600;
	padding: 5px 16px;
	border-radius: 999px;
	white-space: nowrap;
}

.wf-pricing-card__name {
	font-family: var(--font-display);
	font-weight: 600;
	color: var(--text-primary);
	font-size: 1.15rem;
}

.wf-pricing-card__price {
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--text-primary);
	font-size: 2.75rem;
	line-height: 1.1;
	margin: 10px 0 6px;
	display: flex;
	flex-direction: column;
}

.wf-pricing-card__period {
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--text-tertiary);
	margin-top: 4px;
}

.wf-pricing-card__desc {
	color: var(--text-secondary);
	font-size: 0.92rem;
	margin-bottom: 1.5rem;
	min-height: 42px;
}

.wf-pricing-card__features {
	list-style: none;
	padding: 0;
	margin: 0;
	border-top: 1px solid var(--gray-200);
	padding-top: 1.25rem;
}

.wf-pricing-card__features li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--text-secondary);
	font-size: 0.9rem;
	margin-bottom: 0.75rem;
}

.wf-pricing-card__features li i {
	color: var(--indigo);
	font-weight: 700;
	flex-shrink: 0;
	margin-top: 2px;
}

@media (max-width: 991px) {
	.wf-pricing-grid {
		grid-template-columns: 1fr;
		max-width: 480px;
		margin: 0 auto;
	}
}

/* ============================================================
   HOMEPAGE PROOF / SECURITY ADDITIONS
============================================================ */
.wf-hero__reassure {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 22px;
}

.wf-hero__reassure span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.9rem;
	color: var(--text-secondary);
	font-weight: 500;
}

.wf-hero__reassure i {
	color: var(--indigo);
	font-weight: 700;
}

.wf-hero__shot {
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid var(--gray-200);
	box-shadow: var(--shadow-lg);
}

.wf-hero__shot img {
	display: block;
	width: 100%;
	height: auto;
}

.wf-trust-strip__rating strong {
	color: var(--gold);
	letter-spacing: 1px;
}

.wf-security-strip {
	border-top: 1px solid var(--border-dark);
	border-bottom: 1px solid var(--border-dark);
	background: #FFFFFF;
	padding: 22px 0;
}

.wf-security-strip__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 32px;
}

.wf-security-strip__inner span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.92rem;
	font-weight: 500;
	color: var(--text-secondary);
}

.wf-security-strip__inner i {
	color: var(--indigo);
	font-size: 1.05rem;
}

/* ============================================================
   LEGAL / POLICY PAGES
============================================================ */
.wf-legal {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--text-secondary);
}

.wf-legal h2 {
	font-size: 1.4rem;
	margin-bottom: 0.75rem;
}

.wf-legal ul {
	list-style: disc;
	padding-left: 1.25rem;
	margin-bottom: 1rem;
}

.wf-legal li {
	margin-bottom: 0.4rem;
}

.wf-legal a {
	text-decoration: underline;
}
