/*!
Theme Name: WP Happy Coders Studio
Theme URI: https://wphappycoders.com/
Author: WP Happy Coders
Author URI: https://wphappycoders.com/
Description: A clean, product-first WordPress studio theme translated from the WP Happy Coders Figma design system.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wphc-studio
Tags: custom-logo, custom-menu, featured-images, block-styles, wide-blocks, accessibility-ready, translation-ready
*/

:root {
	--color-navy: #0c1628;
	--color-navy-800: #1a2d4a;
	--color-navy-700: #1e3a5f;
	--color-brand: #2563eb;
	--color-brand-700: #1d4ed8;
	--color-brand-50: #eff6ff;
	--color-orange: #f97316;
	--color-slate-50: #f8fafc;
	--color-slate-100: #f1f5f9;
	--color-slate-200: #e2e8f0;
	--color-slate-300: #cbd5e1;
	--color-slate-400: #94a3b8;
	--color-slate-500: #64748b;
	--color-slate-600: #475569;
	--color-slate-700: #334155;
	--color-green: #16a34a;
	--shadow-card: 0 16px 45px rgba(12, 22, 40, 0.08);
	--shadow-float: 0 18px 55px rgba(12, 22, 40, 0.16);
	--radius-sm: 8px;
	--radius-md: 16px;
	--radius-lg: 24px;
	--container: 1280px;
	--header-height: 80px;
}

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: #fff;
	color: var(--color-navy);
	font-family: "Urbanist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

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

img { display: block; max-width: 100%; height: auto; }
a { color: var(--color-brand); text-decoration-thickness: 0.08em; text-underline-offset: 0.18em; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
	outline: 2px solid var(--color-brand);
	outline-offset: 3px;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	clip: auto !important;
	clip-path: none;
	display: block;
	height: auto;
	left: 1rem;
	padding: 0.75rem 1rem;
	top: 1rem;
	width: auto;
	z-index: 100000;
	background: #fff;
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-card);
}

.container { width: min(calc(100% - 3rem), var(--container)); margin-inline: auto; }
.content-narrow { max-width: 760px; }
.site-main { min-height: 70vh; }

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 1rem;
	color: var(--color-navy);
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1.08;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.25rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: 1.5rem; }
p { margin: 0 0 1.25rem; }

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	min-height: var(--header-height);
	background: rgba(255, 255, 255, 0.98);
	border-bottom: 1px solid var(--color-slate-200);
	transition: min-height 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
	min-height: 68px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 8px 30px rgba(12, 22, 40, 0.07);
	backdrop-filter: blur(14px);
}

.header-inner { min-height: inherit; display: flex; align-items: center; gap: 2rem; }
.brand-mark, .custom-logo-link { display: inline-flex; align-items: center; flex: 0 0 auto; border-radius: 6px; }
.brand-mark img { width: 64px; height: 64px; object-fit: contain; }
.custom-logo { width: auto; height: 64px; object-fit: contain; }
.primary-navigation { margin-left: auto; }
.primary-navigation ul { display: flex; align-items: center; gap: 0.25rem; margin: 0; padding: 0; list-style: none; }
.primary-navigation a {
	display: block;
	padding: 0.65rem 0.9rem;
	border-radius: 7px;
	color: var(--color-slate-700);
	font-size: 0.94rem;
	font-weight: 500;
	text-decoration: none;
	transition: color 160ms ease, background 160ms ease;
}
.primary-navigation a:hover, .primary-navigation .current-menu-item > a { color: var(--color-brand); background: var(--color-brand-50); }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.text-link { color: var(--color-navy); font-size: 0.94rem; font-weight: 500; text-decoration: none; }
.text-link:hover { color: var(--color-brand); }

.menu-toggle {
	display: none;
	width: 48px;
	height: 48px;
	padding: 11px;
	background: #fff;
	border: 1px solid var(--color-slate-200);
	border-radius: var(--radius-sm);
	cursor: pointer;
}
.menu-toggle span[aria-hidden] { display: block; height: 2px; margin: 5px 0; background: var(--color-navy); border-radius: 99px; }

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0.8rem 1.55rem;
	background: var(--color-brand);
	border: 1px solid var(--color-brand);
	border-radius: var(--radius-sm);
	box-shadow: 0 7px 18px rgba(37, 99, 235, 0.18);
	color: #fff;
	font-size: 0.96rem;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.button:hover { color: #fff; background: var(--color-brand-700); border-color: var(--color-brand-700); box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25); transform: translateY(-2px); }
.button-small { min-height: 44px; padding: 0.65rem 1.15rem; font-size: 0.9rem; }
.button-secondary { color: var(--color-navy); background: #fff; border-color: var(--color-slate-300); box-shadow: none; }
.button-secondary:hover { color: var(--color-brand); background: var(--color-brand-50); border-color: var(--color-brand); box-shadow: none; }
.button-dark { color: #fff; background: transparent; border-color: rgba(255,255,255,.28); box-shadow: none; }
.button-dark:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); box-shadow: none; }
.button-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.section-grid {
	background-image: radial-gradient(circle, rgba(37, 99, 235, 0.1) 1px, transparent 1px);
	background-size: 22px 22px;
}

.hero {
	position: relative;
	overflow: hidden;
	padding: calc(var(--header-height) + 6.5rem) 0 7rem;
	background-color: #fff;
}
.hero::after {
	content: "";
	position: absolute;
	right: -12vw;
	top: 4rem;
	width: 48vw;
	height: 48vw;
	background: radial-gradient(circle, rgba(37,99,235,.08), transparent 70%);
	pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr); align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.eyebrow, .kicker {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	margin-bottom: 1.6rem;
	color: var(--color-brand);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}
.eyebrow {
	width: max-content;
	max-width: 100%;
	padding: 0.42rem 0.75rem;
	background: rgba(239, 246, 255, .8);
	border: 1px solid #bfdbfe;
	border-radius: 99px;
}
.eyebrow span { width: 6px; height: 6px; flex: 0 0 auto; background: var(--color-brand); border-radius: 50%; }
.hero h1 { max-width: 760px; margin-bottom: 1.6rem; font-weight: 500; line-height: 0.98; }
.hero h1 em { display: inline-block; color: var(--color-brand); font-weight: 600; }
.hero-intro { max-width: 650px; margin-bottom: 2rem; color: var(--color-slate-600); font-size: clamp(1.05rem, 1.5vw, 1.18rem); }

.hero-visual {
	position: relative;
	min-height: 460px;
	padding-top: 36px;
	background: #fff;
	border: 1px solid var(--color-slate-200);
	border-radius: var(--radius-md);
	box-shadow: 0 25px 70px rgba(12, 22, 40, 0.15);
}
.hero-visual > img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; object-position: center top; border-radius: 0 0 var(--radius-md) var(--radius-md); }
.browser-line { position: absolute; inset: 0 0 auto; display: flex; align-items: center; gap: 6px; height: 36px; padding: 0 12px; background: var(--color-slate-50); border-bottom: 1px solid var(--color-slate-200); border-radius: var(--radius-md) var(--radius-md) 0 0; }
.browser-line span { width: 7px; height: 7px; background: var(--color-slate-300); border-radius: 50%; }
.browser-line small { margin-left: 10px; color: var(--color-slate-400); font-size: 0.68rem; }
.identity-chip, .delivery-chip { position: absolute; z-index: 2; display: flex; align-items: center; gap: 8px; padding: 0.75rem 0.9rem; background: rgba(255,255,255,.96); border: 1px solid var(--color-slate-200); border-radius: 14px; box-shadow: var(--shadow-float); }
.identity-chip { top: 14px; left: -34px; }
.identity-chip b { display: grid; place-items: center; width: 28px; height: 28px; margin-right: -13px; border: 2px solid #fff; border-radius: 50%; background: var(--color-brand); color: #fff; font-size: .7rem; }
.identity-chip b:nth-child(2) { background: #58a07a; }.identity-chip b:nth-child(3) { margin-right: 4px; background: var(--color-orange); }
.identity-chip span, .delivery-chip span { display: flex; flex-direction: column; line-height: 1.25; }
.identity-chip strong, .delivery-chip strong { font-size: .78rem; }.identity-chip small, .delivery-chip small { color: var(--color-slate-400); font-size: .64rem; }
.delivery-chip { right: -26px; bottom: 24px; }
.delivery-chip > b { display: grid; place-items: center; width: 28px; height: 28px; background: #dcfce7; color: var(--color-green); border-radius: 50%; }

.trust-strip { border-block: 1px solid var(--color-slate-200); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.trust-grid > div { min-height: 116px; display: flex; flex-direction: column; justify-content: center; padding: 1.25rem 1.5rem; border-left: 1px solid var(--color-slate-200); }
.trust-grid > div:first-child { border-left: 0; }
.trust-grid strong { color: var(--color-navy); font-size: 1.18rem; line-height: 1.2; }
.trust-grid span { margin-top: .3rem; color: var(--color-slate-500); font-size: .78rem; }

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section-heading { max-width: 760px; margin: 0 auto clamp(2.5rem, 5vw, 4.5rem); text-align: center; }
.section-heading .kicker { justify-content: center; margin-bottom: 1.1rem; }
.section-heading > p:last-child { color: var(--color-slate-600); font-size: 1.08rem; }
.section-heading.align-left { margin: 0; text-align: left; }
.section-heading.align-left .kicker { justify-content: flex-start; }
.section-heading-light h2 { color: #fff; }
.section-heading-light > p:last-child { color: var(--color-slate-300); }

.plugins-section { background: var(--color-slate-50); }
.plugin-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.plugin-card { overflow: hidden; background: #fff; border: 1px solid var(--color-slate-200); border-radius: var(--radius-md); box-shadow: 0 8px 30px rgba(12, 22, 40, .04); transition: transform 200ms ease, box-shadow 200ms ease; }
.plugin-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.plugin-image { min-height: 280px; display: grid; place-items: center; padding: 2rem; background: linear-gradient(145deg, #f8fafc, #eef4ff); border-bottom: 1px solid var(--color-slate-200); }
.plugin-image img { width: 100%; max-height: 290px; object-fit: contain; }
.plugin-body { padding: clamp(1.5rem, 3vw, 2.25rem); }
.meta-row { display: flex; align-items: center; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.15rem; }
.rating { color: #d97706; font-size: .84rem; font-weight: 700; }.rating small { color: var(--color-slate-400); font-weight: 500; }
.tag { padding: .28rem .55rem; background: var(--color-slate-100); border-radius: 99px; color: var(--color-slate-600); font-size: .72rem; font-weight: 600; }
.plugin-body h3 { font-size: 1.7rem; }.plugin-body > p { color: var(--color-slate-600); }
.check-list { margin: 1.35rem 0 1.7rem; padding: 0; list-style: none; }
.check-list li { position: relative; margin: .55rem 0; padding-left: 1.55rem; color: var(--color-slate-700); font-size: .92rem; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .48em; width: 10px; height: 6px; border-left: 2px solid var(--color-green); border-bottom: 2px solid var(--color-green); transform: rotate(-45deg); }
.card-actions { display: flex; flex-wrap: wrap; gap: .65rem; }
.card-actions .button { flex: 1 1 150px; }

.demo-section { background-color: #fff; }
.product-demo { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(2.5rem, 7vw, 6.5rem); margin-top: clamp(3rem, 7vw, 6.5rem); }
.product-demo.is-reversed .demo-media { order: 2; }.product-demo.is-reversed .demo-copy { order: 1; }
.demo-media { position: relative; min-height: 400px; display: grid; place-items: center; padding: clamp(1.5rem, 4vw, 3rem); background: var(--color-slate-50); border: 1px solid var(--color-slate-200); border-radius: var(--radius-lg); }
.demo-media img { width: 100%; max-height: 380px; object-fit: contain; filter: drop-shadow(0 18px 25px rgba(12,22,40,.1)); }
.demo-label { position: absolute; left: 1.25rem; top: 1.25rem; padding: .45rem .75rem; background: #fff; border: 1px solid var(--color-slate-200); border-radius: 99px; color: var(--color-slate-700); font-size: .78rem; font-weight: 600; box-shadow: 0 6px 20px rgba(12,22,40,.07); }
.step-label { color: var(--color-brand); font-size: .78rem; font-weight: 700; letter-spacing: .12em; }
.demo-copy h3 { font-size: clamp(2rem, 3vw, 2.8rem); }.demo-copy > p { color: var(--color-slate-600); }
.arrow-link { display: inline-flex; align-items: center; gap: .45rem; color: var(--color-brand); font-weight: 700; text-decoration: none; }.arrow-link span { transition: transform 160ms ease; }.arrow-link:hover span { transform: translateX(4px); }

.why-section { position: relative; overflow: hidden; background: var(--color-navy); }
.why-section::before { content: ""; position: absolute; inset: 0; opacity: .35; background-image: radial-gradient(circle, rgba(255,255,255,.14) 1px, transparent 1px); background-size: 24px 24px; }
.why-section .container { position: relative; z-index: 1; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); }
.values-grid article { min-height: 290px; padding: 2rem; background: rgba(12,22,40,.93); }
.values-grid article > span { display: grid; place-items: center; width: 54px; height: 46px; margin-bottom: 2rem; background: rgba(37,99,235,.16); border: 1px solid rgba(96,165,250,.35); border-radius: 12px; color: #93c5fd; font-size: .68rem; font-weight: 700; letter-spacing: .04em; }
.values-grid h3 { color: #fff; font-size: 1.28rem; }.values-grid p { color: var(--color-slate-300); font-size: .94rem; }
.profile-link { margin: 2rem 0 0; text-align: center; }
.profile-link .arrow-link { color: #93c5fd; }

.services-section { background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.services-grid article { position: relative; overflow: hidden; min-height: 360px; display: flex; flex-direction: column; padding: 2rem; background: var(--color-slate-50); border: 1px solid var(--color-slate-200); border-radius: var(--radius-md); transition: border-color 180ms ease, transform 180ms ease; }
.services-grid article:hover { border-color: #93c5fd; transform: translateY(-3px); }
.service-index { margin-bottom: auto; color: var(--color-brand); font-size: .8rem; font-weight: 700; letter-spacing: .12em; }
.services-grid h3 { margin-top: 4rem; }.services-grid p { color: var(--color-slate-600); }.services-grid a { margin-top: auto; color: var(--color-brand); font-weight: 700; text-decoration: none; }

.process-section { padding-top: 2rem; background: #fff; }
.process-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(3rem, 8vw, 8rem); }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--color-slate-200); }
.process-list li { display: grid; grid-template-columns: 70px 1fr; gap: 1.25rem; padding: 1.8rem 0; border-bottom: 1px solid var(--color-slate-200); }
.process-list > li > span { color: var(--color-brand); font-size: .8rem; font-weight: 700; letter-spacing: .12em; }
.process-list h3 { margin-bottom: .4rem; font-size: 1.35rem; }.process-list p { margin: 0; color: var(--color-slate-600); }

.contact-section { padding: clamp(4.5rem, 9vw, 8rem) 0; background-color: var(--color-slate-50); border-top: 1px solid var(--color-slate-200); }
.contact-layout { display: grid; grid-template-columns: minmax(0, .82fr) minmax(560px, 1.18fr); align-items: start; gap: clamp(2.5rem, 7vw, 6.5rem); }
.contact-copy { position: sticky; top: calc(var(--header-height) + 2rem); padding-top: 1rem; }
.contact-copy .kicker { margin-bottom: 1rem; }
.contact-copy h2 { max-width: 620px; }
.contact-intro { max-width: 600px; color: var(--color-slate-600); font-size: 1.08rem; }
.contact-details { display: grid; gap: .8rem; margin-top: 2rem; }
.contact-details a { display: flex; flex-direction: column; min-height: 84px; justify-content: center; padding: 1rem 1.2rem; color: var(--color-navy); background: rgba(255,255,255,.88); border: 1px solid var(--color-slate-200); border-radius: 12px; text-decoration: none; transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease; }
.contact-details a:hover { border-color: #93c5fd; box-shadow: 0 10px 26px rgba(12,22,40,.07); transform: translateY(-2px); }
.contact-details span { margin-bottom: .15rem; color: var(--color-slate-500); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.contact-details strong { font-size: 1rem; }
.privacy-note { margin-top: 1.25rem; color: var(--color-slate-500); font-size: .84rem; }
.contact-form-card { padding: clamp(1.5rem, 4vw, 2.5rem); background: #fff; border: 1px solid var(--color-slate-200); border-radius: var(--radius-md); box-shadow: var(--shadow-card); }
.contact-form-card > h3 { margin-bottom: .45rem; font-size: 1.55rem; }
.contact-form-card > p { margin-bottom: 1.7rem; color: var(--color-slate-500); font-size: .9rem; }
.contact-form-card .wpcf7-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 1rem; row-gap: 1.15rem; }
.contact-form-card .wpcf7-form > p { margin: 0; }
.contact-form-card .wpcf7-form > p:nth-of-type(n+3),
.contact-form-card .wpcf7-response-output { grid-column: 1 / -1; }
.contact-form-card label { display: block; color: var(--color-slate-700); font-size: .9rem; font-weight: 600; }
.contact-form-card .wpcf7-form-control-wrap { display: block; margin-top: .45rem; }
.contact-form-card input:not([type="submit"]),
.contact-form-card textarea { width: 100%; min-height: 50px; padding: .78rem .95rem; color: var(--color-navy); background: #fff; border: 1px solid var(--color-slate-300); border-radius: var(--radius-sm); font-size: 1rem; transition: border-color 160ms ease, box-shadow 160ms ease; }
.contact-form-card textarea { min-height: 150px; resize: vertical; }
.contact-form-card input:not([type="submit"]):hover,
.contact-form-card textarea:hover { border-color: var(--color-slate-400); }
.contact-form-card input:not([type="submit"]):focus,
.contact-form-card textarea:focus { border-color: var(--color-brand); outline: 0; box-shadow: 0 0 0 3px rgba(37,99,235,.13); }
.contact-form-card .wpcf7-submit { width: 100%; min-height: 52px; padding: .8rem 1.4rem; color: #fff; background: var(--color-brand); border: 1px solid var(--color-brand); border-radius: var(--radius-sm); box-shadow: 0 7px 18px rgba(37,99,235,.18); font-weight: 700; cursor: pointer; transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease; }
.contact-form-card .wpcf7-submit:hover { background: var(--color-brand-700); border-color: var(--color-brand-700); box-shadow: 0 10px 24px rgba(37,99,235,.25); transform: translateY(-2px); }
.contact-form-card .wpcf7-submit:disabled { cursor: wait; opacity: .65; transform: none; }
.contact-form-card .wpcf7-spinner { align-self: center; margin: .7rem 0 0 .75rem; }
.contact-form-card .wpcf7-not-valid { border-color: #dc2626 !important; }
.contact-form-card .wpcf7-not-valid-tip { margin-top: .35rem; color: #b91c1c; font-size: .82rem; font-weight: 500; }
.contact-form-card .wpcf7-response-output { margin: .25rem 0 0 !important; padding: .8rem 1rem !important; border: 1px solid var(--color-slate-300) !important; border-radius: var(--radius-sm); color: var(--color-slate-700); font-size: .9rem; }
.contact-form-card form.sent .wpcf7-response-output { background: #f0fdf4; border-color: #86efac !important; color: #166534; }
.contact-form-card form.invalid .wpcf7-response-output,
.contact-form-card form.failed .wpcf7-response-output { background: #fef2f2; border-color: #fca5a5 !important; color: #991b1b; }

.site-footer { padding: 4.5rem 0 2rem; background: var(--color-slate-50); border-top: 1px solid var(--color-slate-200); }
.footer-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer-inner .brand-mark img { width: 72px; height: 72px; }
.footer-inner .custom-logo { height: 72px; }
.footer-inner > p { max-width: 520px; margin: 1.4rem auto; color: var(--color-slate-600); }
.social-links { display: flex; gap: .65rem; }
.social-links a { display: grid; place-items: center; width: 42px; height: 42px; color: var(--color-slate-600); border: 1px solid var(--color-slate-300); text-decoration: none; transition: color 160ms ease, border-color 160ms ease, background 160ms ease; }
.social-links a:hover { color: var(--color-brand); background: #fff; border-color: var(--color-brand); }
.footer-rule { width: 100%; height: 1px; margin-top: 2.4rem; background: var(--color-slate-200); }
.footer-inner .copyright { margin-bottom: 0; color: var(--color-slate-400); font-size: .82rem; }

.content-hero { padding: calc(var(--header-height) + 5rem) 0 5rem; background-color: var(--color-navy); color: #fff; }
.content-hero h1 { max-width: 900px; color: #fff; font-size: clamp(2.6rem, 5vw, 4.5rem); }.content-hero p, .content-hero div { color: var(--color-slate-300); }.content-hero .kicker { color: #93c5fd; }
.breadcrumbs { font-size: .85rem; }.breadcrumbs a { color: #fff; }
.content-layout { padding-block: 4rem 7rem; }.post-list { max-width: 860px; margin: auto; }
.post-card { padding: 2.2rem 0; border-bottom: 1px solid var(--color-slate-200); }.post-card:first-child { padding-top: 0; }.post-card h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }.post-card h2 a { color: var(--color-navy); text-decoration: none; }.post-card p { color: var(--color-slate-600); }
.post-meta { color: var(--color-brand) !important; font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.entry-content { padding-block: 4rem 7rem; }.entry-content > * { max-width: 760px; margin-left: auto; margin-right: auto; }.entry-content > .alignwide { max-width: var(--container); }.entry-content > .alignfull { max-width: none; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
.entry-content p, .entry-content li { color: var(--color-slate-700); }.entry-content h2 { margin-top: 2.5rem; font-size: 2.1rem; }.entry-content h3 { margin-top: 2rem; }.entry-content blockquote { padding: 1.5rem 2rem; background: var(--color-brand-50); border-left: 4px solid var(--color-brand); }
.featured-image { margin: 0 0 2.5rem; }.featured-image img { border-radius: var(--radius-md); }
.comments-area { padding-bottom: 7rem; }.comment-list { padding: 0; list-style: none; }.comment-list li { margin: 1rem 0; padding: 1.25rem; background: var(--color-slate-50); border: 1px solid var(--color-slate-200); border-radius: var(--radius-sm); }
input[type="text"], input[type="email"], input[type="url"], input[type="search"], textarea, select { width: 100%; min-height: 48px; padding: .75rem 1rem; color: var(--color-navy); background: #fff; border: 1px solid var(--color-slate-300); border-radius: var(--radius-sm); }
textarea { min-height: 150px; resize: vertical; }.search-form { display: flex; max-width: 620px; gap: .65rem; }.search-form label { flex: 1; }.search-submit, input[type="submit"] { min-height: 48px; padding: .75rem 1.25rem; color: #fff; background: var(--color-brand); border: 0; border-radius: var(--radius-sm); font-weight: 700; cursor: pointer; }
.error-page { min-height: 86vh; display: grid; place-items: center; padding: calc(var(--header-height) + 4rem) 0 5rem; text-align: center; }.error-page img { max-height: 300px; margin: 0 auto 2rem; object-fit: contain; }.error-page p { color: var(--color-slate-600); }

@media (max-width: 1120px) {
	.header-actions .text-link { display: none; }
	.hero-grid { grid-template-columns: .9fr 1.1fr; gap: 3rem; }
	.hero-visual { min-height: 390px; }.hero-visual > img { min-height: 350px; }
	.identity-chip { left: -14px; }.delivery-chip { right: -10px; }
	.trust-grid { grid-template-columns: repeat(5, 1fr); }
	.values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
	:root { --header-height: 72px; }
	body.admin-bar .site-header { top: 46px; }
	.menu-toggle { display: block; margin-left: auto; }
	.primary-navigation { position: absolute; top: calc(100% + 1px); left: 1.5rem; right: 1.5rem; display: none; margin: 0; padding: .65rem; background: #fff; border: 1px solid var(--color-slate-200); border-radius: var(--radius-sm); box-shadow: var(--shadow-card); }
	.primary-navigation.is-open { display: block; }.primary-navigation ul { display: block; }.primary-navigation a { padding: .8rem 1rem; }
	.header-actions { display: none; }
	.hero { padding-top: calc(var(--header-height) + 4rem); }
	.hero-grid, .product-demo, .process-layout, .contact-layout { grid-template-columns: 1fr; }
	.hero-copy { max-width: 720px; }.hero-visual { width: min(100%, 720px); margin: auto; }
	.product-demo.is-reversed .demo-media, .product-demo.is-reversed .demo-copy { order: initial; }
	.services-grid { grid-template-columns: 1fr; }.services-grid article { min-height: 280px; }.services-grid h3 { margin-top: 2rem; }
	.process-layout { gap: 2.5rem; }.section-heading.align-left { max-width: 700px; }
	.contact-copy { position: static; max-width: 720px; padding-top: 0; }
	.contact-form-card { max-width: 760px; }
}

@media (max-width: 720px) {
	.container { width: min(calc(100% - 2rem), var(--container)); }
	h1 { font-size: clamp(2.65rem, 13vw, 4.25rem); }
	.hero { padding-bottom: 4rem; }
	.hero-grid { gap: 3.5rem; }
	.hero-visual { min-height: 300px; padding-top: 30px; }.hero-visual > img { min-height: 270px; }.browser-line { height: 30px; }.identity-chip { top: -16px; left: 12px; }.delivery-chip { right: 10px; bottom: -18px; }
	.trust-grid { grid-template-columns: repeat(2, 1fr); }.trust-grid > div { min-height: 96px; border-bottom: 1px solid var(--color-slate-200); }.trust-grid > div:nth-child(odd) { border-left: 0; }.trust-grid > div:last-child { grid-column: 1 / -1; border-bottom: 0; }
	.plugin-grid { grid-template-columns: 1fr; }.plugin-image { min-height: 220px; }
	.demo-media { min-height: 300px; }.values-grid { grid-template-columns: 1fr; }.values-grid article { min-height: 240px; }
	.contact-form-card .wpcf7-form { grid-template-columns: 1fr; }
	.contact-form-card .wpcf7-form > p { grid-column: 1; }
	.process-list li { grid-template-columns: 48px 1fr; }
}

@media (max-width: 480px) {
	.brand-mark img { width: 52px; height: 52px; }
	.custom-logo { height: 52px; }
	.eyebrow { font-size: .68rem; letter-spacing: .07em; }
	.button-row .button { flex: 1 1 100%; }
	.hero-visual { min-height: 245px; }.hero-visual > img { min-height: 215px; }.identity-chip { transform: scale(.85); transform-origin: left top; }.delivery-chip { transform: scale(.82); transform-origin: right bottom; }
	.trust-grid { grid-template-columns: 1fr 1fr; }.trust-grid > div { padding: 1rem; }
	.card-actions .button { flex-basis: 100%; }
	.search-form { display: block; }.search-submit { width: 100%; margin-top: .65rem; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media print {
	.site-header, .site-footer, .contact-section, .button { display: none !important; }
	.site-main { padding-top: 0; }
	a { color: #000; text-decoration: underline; }
}
