:root {
	--yellow: #fdd94b;
	--yellow-soft: #fff7d7;
	--navy: #1d293d;
	--blue: #083a8f;
	--ink: #182233;
	--muted: #667085;
	--line: #e6e9ef;
	--bg: #ffffff;
	--soft: #f8f9fb;
	--shadow: 0 24px 70px rgba(29, 41, 61, 0.12);
	--radius: 8px;
	--section-diagonal-ratio: 32%;
	--problem-diagonal-left: 68%;
	--problem-diagonal-right: 36%;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--bg);
	font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.75;
	letter-spacing: 0;
}

body.nav-open {
	overflow: hidden;
}

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

img,
svg {
	display: block;
	max-width: 100%;
}

button,
input {
	font: inherit;
}

.container {
	width: min(1300px, calc(100% - 40px));
	margin: 0 auto;
}

.skip-link,
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
	z-index: 1000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: var(--navy);
	color: #fff;
	border-radius: var(--radius);
}

.reveal-section {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}

.reveal-section.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.hero.reveal-section {
	transform: none;
}

.reveal-section .final-cta-visual {
	opacity: 0;
	transform: translateX(54px);
	transition: opacity 0.9s ease 0.18s, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.18s;
}

.reveal-section.is-visible .final-cta-visual {
	opacity: 1;
	transform: translateX(0);
}

.hero.reveal-section .hero-copy {
	opacity: 0;
	transform: translateY(34px);
	transition: opacity 0.86s ease 0.28s, transform 0.86s cubic-bezier(0.22, 1, 0.36, 1) 0.28s;
}

.hero.reveal-section .hero-visual {
	opacity: 0;
	transform: translateX(120px);
	transition: opacity 0.95s ease 1.05s, transform 0.95s cubic-bezier(0.22, 1, 0.36, 1) 1.05s;
}

.hero.reveal-section.is-visible .hero-copy,
.hero.reveal-section.is-visible .hero-visual {
	opacity: 1;
	transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
	.reveal-section {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.reveal-section .final-cta-visual {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.hero.reveal-section .hero-copy,
	.hero.reveal-section .hero-visual {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

.site-header {
	position: fixed;
	z-index: 50;
	top: 0;
	right: 0;
	left: 0;
	padding-top: 20px;
	background: transparent;
	border-bottom: 1px solid transparent;
	transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled,
body.nav-open .site-header {
	background: rgba(255, 255, 255, 0.7);
	border-bottom-color: rgba(230, 233, 239, 0.9);
	box-shadow: 0 10px 30px rgba(29, 41, 61, 0.08);
	backdrop-filter: blur(16px);
}

.header-inner {
	display: flex;
	width: min(1300px, calc(100% - 40px));
	min-height: 82px;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
	font-weight: 800;
	color: var(--navy);
}

.brand-logo {
	width: 210px;
	height: auto;
}

.brand-mark {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border-radius: 50%;
	background: var(--yellow);
	color: var(--navy);
	box-shadow: 0 10px 22px rgba(253, 217, 75, 0.38);
}

.brand-mark svg,
.icon svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.wordpress-icon-img {
	width: 23px;
	height: 23px;
	object-fit: contain;
}

.brand-name {
	font-size: 20px;
	letter-spacing: 0;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 34px;
	margin-left: auto;
	font-size: 16px;
	font-weight: normal;
	color: #000;
}

.site-header.is-scrolled .site-nav,
body.nav-open .site-nav {
	color: #000;
}

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

.site-nav a,
.primary-menu a {
	white-space: nowrap;
	transition: color 0.35s ease;
}

.primary-menu a {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 10px 0 14px;
}

.primary-menu a::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 5px;
	border-radius: 999px;
	background: #bc9804;
	content: "";
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.35s ease;
}

.primary-menu a:hover::after,
.primary-menu a:focus-visible::after {
	transform: scaleX(1);
}

.site-nav a:hover,
.text-link:hover {
	color: #bc9804;
}

.site-nav .nav-login {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	min-width: 154px;
	padding: 0 28px;
	border: 1px solid var(--yellow);
	border-radius: var(--radius);
	background: #fff;
	color: #000;
	box-shadow: 0 12px 28px rgba(29, 41, 61, 0);
	transform: translateY(0);
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s ease, border-color 0.45s ease, background-color 0.45s ease, box-shadow 0.8s ease;
}

.site-nav .nav-login:hover {
	transform: translateY(3px);
	color: #000;
	box-shadow: 0 12px 28px rgba(29, 41, 61, 0.18);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: 42px;
}

.nav-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 10px;
	border: 1px solid rgba(255, 255, 255, 0.48);
	border-radius: var(--radius);
	background: transparent;
}

.nav-toggle span:not(.screen-reader-text) {
	display: block;
	height: 2px;
	margin: 5px 0;
	background: #fff;
}

.site-header.is-scrolled .nav-toggle,
body.nav-open .nav-toggle {
	border-color: var(--line);
	background: #fff;
}

.site-header.is-scrolled .nav-toggle span:not(.screen-reader-text),
body.nav-open .nav-toggle span:not(.screen-reader-text) {
	background: var(--navy);
}

.button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 20px;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-weight: 800;
	line-height: 1;
	transition: transform 0.35s ease, box-shadow 0.45s ease, background 0.35s ease, color 0.35s ease;
}

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

.button-primary {
	background: var(--yellow);
	color: var(--navy);
	box-shadow: 0 14px 28px rgba(253, 217, 75, 0.32);
}

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

.button-small {
	min-height: 48px;
	padding: 0 20px;
	font-size: 16px;
}

.site-nav .button-header {
	background: var(--blue);
	color: #fff;
	box-shadow: 0 12px 30px rgba(188, 152, 4, 0);
	font-weight: 800;
	transform: translateY(0);
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.45s ease, color 0.45s ease, box-shadow 0.8s ease;
}

.site-nav .button-header:hover {
	transform: translateY(3px);
	background: var(--blue);
	color: #fff;
	box-shadow: 0 12px 30px rgba(188, 152, 4, 0.48);
}

.hero {
	position: relative;
	overflow: hidden;
	padding: 150px 0 170px;
	background: var(--yellow);
}

.hero::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: url("/wp-content/uploads/2026/06/plane.svg");
	background-position: left 150px center;
	background-repeat: no-repeat;
	background-size: min(42vw, 560px) auto;
	content: "";
	opacity: 0.3;
	pointer-events: none;
}

.hero::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	z-index: 0;
	width: 100%;
	height: var(--section-diagonal-ratio);
	background: #fff;
	clip-path: polygon(0 100%, 100% 0, 100% 100%);
	content: "";
}

.hero-grid {
	display: grid;
	width: min(1300px, calc(100% - 80px));
	grid-template-columns: minmax(0, 1.18fr) minmax(420px, 0.82fr);
	align-items: center;
	gap: 56px;
}

.split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
	align-items: center;
	gap: 56px;
}

.hero-copy {
	position: relative;
	z-index: 1;
}

.eyebrow {
	margin: 0 0 12px;
	color: #806600;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

h1,
h2,
h3,
p {
	overflow-wrap: anywhere;
}

h1,
h2,
h3 {
	margin: 0;
	color: var(--navy);
	line-height: 1.25;
	letter-spacing: 0;
}

h1 {
	max-width: 760px;
	font-size: clamp(40px, 7vw, 70px);
	line-height: 1.12;
}

.hero-title {
	max-width: 760px;
	margin-top: 42px;
	font-size: 36px;
	font-weight: 900;
	line-height: 1.25;
	color: var(--navy);
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 20px;
}

.hero-lead,
.page-hero p,
.section-heading p,
.split p {
	color: var(--muted);
	font-size: 18px;
}

.hero-lead {
	max-width: 660px;
	margin: 24px 0 0;
}

.hero-subcopy {
	display: flex;
	align-items: center;
	gap: 22px;
	margin-top: 22px;
}

.hero-subcopy p {
	margin: 0;
	color: var(--navy);
	font-size: clamp(21px, 2vw, 28px);
	font-weight: 900;
	line-height: 1.45;
}

.hero-subcopy span {
	display: block;
	flex: 1;
	max-width: 280px;
	height: 4px;
	border-radius: 999px;
	background: var(--navy);
}

.hero-brand-logo {
	width: min(90%, 650px);
	height: auto;
}

.hero-description {
	max-width: 730px;
	margin: 34px 0 0;
	color: #000;
	font-size: 18px;
	font-weight: normal;
	line-height: 1.9;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 42px;
}

.hero-trial-button {
	display: inline-flex;
	width: min(100%, 730px);
	min-height: 72px;
	align-items: center;
	justify-content: center;
	gap: 28px;
	padding: 0 34px;
	border-bottom: 8px solid #333;
	border-radius: var(--radius);
	background: var(--blue);
	color: #fff;
	font-size: clamp(22px, 2.2vw, 30px);
	font-weight: 900;
	line-height: 1;
	box-shadow: 0 10px 26px rgba(29, 41, 61, 0.08);
	transition: transform 0.18s ease, border-bottom-width 0.18s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.hero-trial-button:hover {
	transform: translateY(3px);
	border-bottom-width: 0;
	background: var(--blue);
	color: #fff;
	box-shadow: 0 5px 14px rgba(188, 152, 4, 0.34);
}

.hero-trial-button img {
	width: 38px;
	height: 38px;
	filter: brightness(0) invert(1);
}

.hero-points {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 28px;
	color: #475467;
	font-size: 14px;
	font-weight: 700;
}

.hero-points span {
	padding: 8px 12px;
	border: 1px solid rgba(29, 41, 61, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.74);
}

.hero-visual {
	position: relative;
	z-index: 1;
}

.hero-placeholder {
	width: 100%;
	aspect-ratio: 1.55 / 1;
	border-radius: var(--radius);
	background: #f5f5f5;
	box-shadow: 0 10px 0 rgba(29, 41, 61, 0.08), 0 16px 28px rgba(29, 41, 61, 0.16);
}

.hero-image {
	display: block;
	width: 100%;
	height: auto;
	border-radius: var(--radius);
}

.problem-section {
	position: relative;
	overflow: hidden;
	padding: 20px 0 110px;
	background: #fff;
}

.problem-section::before {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
	height: 100%;
	background: var(--yellow);
	clip-path: polygon(0 var(--problem-diagonal-left), 100% var(--problem-diagonal-right), 100% 100%, 0 100%);
	content: "";
}

.problem-inner {
	position: relative;
	z-index: 1;
}

.problem-heading {
	text-align: center;
}

.problem-heading p {
	margin: 0 0 24px;
	color: #bc9804;
	font-size: 15px;
	font-weight: 900;
}

.problem-heading h2 {
	font-size: 36px;
	font-weight: 900;
	line-height: 1.45;
	color: var(--navy);
}

.problem-image {
	width: min(100%, 520px);
	height: auto;
	margin: 48px auto 52px;
}

.problem-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px 88px;
}

.problem-card {
	display: grid;
	grid-template-columns: 42px 1fr;
	align-items: center;
	gap: 16px;
	min-height: 106px;
	padding: 22px 24px;
	border: 2px solid var(--yellow);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: 0 5px 0 rgba(188, 152, 4, 0.22), 0 10px 20px rgba(29, 41, 61, 0.08);
}

.problem-icon {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 50%;
	background: var(--yellow-soft);
	color: var(--navy);
}

.problem-icon svg {
	width: 23px;
	height: 23px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.problem-card p {
	margin: 0;
	color: #000;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.75;
}

.scroll-cue {
	position: relative;
	z-index: 3;
	width: 100%;
	height: 0;
	--scroll-cue-distance: 92px;
	margin: 0;
	color: var(--navy);
}

.scroll-cue::before {
	content: none;
}

.scroll-cue span {
	position: absolute;
	top: -42px;
	left: 50%;
	z-index: 1;
	width: auto;
	height: auto;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--navy);
	font-size: 16px;
	font-weight: 900;
	line-height: 1;
	text-shadow: 0 4px 12px rgba(29, 41, 61, 0.18);
	animation: scroll-cue-dot 1.65s cubic-bezier(0.76, 0, 0.24, 1) infinite;
	transform: translateX(-50%);
}

.scroll-cue span::before {
	content: "▼";
}

@keyframes scroll-cue-dot {
	0% {
		opacity: 0;
		transform: translateX(-50%) translateY(0);
	}

	18%,
	72% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		transform: translateX(-50%) translateY(var(--scroll-cue-distance));
	}
}

.solution-section {
	position: relative;
	overflow: hidden;
	padding: 78px 0 190px;
	background: var(--yellow);
}

.solution-section::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	z-index: 0;
	height: var(--section-diagonal-ratio);
	background: #fff;
	clip-path: polygon(0 100%, 100% 0, 100% 100%);
	content: "";
}

.solution-inner {
	position: relative;
	z-index: 1;
}

.solution-heading {
	max-width: 780px;
	margin: 0 auto;
	text-align: center;
}

.solution-heading > p:first-child {
	margin: 0 0 24px;
	color: #bc9804;
	font-size: 15px;
	font-weight: 900;
}

.solution-heading h2 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	font-size: 36px;
}

.solution-heading h2 img {
	width: min(64vw, 520px);
	height: auto;
}

.solution-heading h2 span {
	color: var(--navy);
	font-weight: 900;
	white-space: nowrap;
}

.solution-heading h3 {
	margin-top: 24px;
	font-size: clamp(28px, 3vw, 36px);
	font-weight: 900;
	color: var(--navy);
	white-space: nowrap;
}

.solution-image {
	width: min(100%, 420px);
	height: auto;
	margin: 34px auto 0;
}

.solution-lead {
	margin: 44px auto 0;
	color: #000;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.9;
}

.solution-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 34px;
	margin-top: 78px;
}

.solution-card {
	position: relative;
	min-height: 150px;
	padding: 26px 18px 20px;
	border: 2px solid var(--navy);
	border-radius: var(--radius);
	background: #fff;
	text-align: center;
	box-shadow: 0 5px 0 rgba(29, 41, 61, 0.2), 0 10px 18px rgba(29, 41, 61, 0.08);
}

.solution-card:not(:last-child)::after {
	position: absolute;
	top: 50%;
	right: -30px;
	width: 0;
	height: 0;
	border-top: 18px solid transparent;
	border-bottom: 18px solid transparent;
	border-left: 24px solid var(--navy);
	content: "";
	color: var(--navy);
	transform: translateY(-50%);
	z-index: 2;
}

.solution-icon {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	margin: 0 auto 12px;
	border-radius: 50%;
	background: var(--yellow-soft);
	color: var(--navy);
}

.solution-icon svg {
	width: 23px;
	height: 23px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.solution-card h4 {
	margin: 0;
	color: var(--navy);
	font-size: 16px;
	font-weight: 900;
}

.solution-card p {
	margin: 18px 0 0;
	color: #000;
	font-size: 15px;
	line-height: 1.65;
}

.feature-highlights-section {
	position: relative;
	overflow: hidden;
	padding: 0 0 150px;
	background: #fff;
	color: var(--ink);
}

.feature-highlights-inner {
	position: relative;
	z-index: 1;
}

.feature-highlights-heading {
	text-align: center;
}

.feature-highlights-heading p {
	margin: 0 0 16px;
	color: #bc9804;
	font-size: 15px;
	font-weight: 900;
}

.feature-highlights-heading h2 {
	color: var(--ink);
	font-size: 36px;
	font-weight: 900;
}

.feature-highlights-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 44px 72px;
	margin-top: 76px;
}

.feature-highlight-card {
	display: grid;
	grid-column: span 2;
	grid-template-columns: 48px 1fr;
	gap: 14px 18px;
	min-height: 172px;
	padding: 28px 26px;
	border: 3px solid var(--yellow);
	border-radius: var(--radius);
	background: #fff;
	color: #000;
	box-shadow: 0 5px 0 rgba(253, 217, 75, 0.65), 0 12px 22px rgba(0, 0, 0, 0.16);
}

.feature-highlight-icon {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border-radius: 50%;
	background: var(--yellow-soft);
	color: var(--navy);
}

.feature-highlight-icon svg {
	width: 25px;
	height: 25px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.feature-highlight-card h3 {
	align-self: center;
	color: var(--navy);
	font-size: 16px;
	font-weight: 900;
	line-height: 1.6;
}

.feature-highlight-card p {
	grid-column: 1 / -1;
	margin: 0;
	color: #000;
	font-size: 15px;
	line-height: 1.7;
}

.feature-highlight-card-cta {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: center;
}

.feature-highlight-card-cta h3 {
	color: #bc9804;
}

.feature-highlight-card-cta p {
	margin-top: 14px;
}

.feature-highlight-button {
	min-width: 142px;
	margin-top: 22px;
	background: var(--blue);
	color: #fff;
	box-shadow: none;
	transform: translateY(0);
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.35s ease, color 0.35s ease;
}

.feature-highlight-button:hover {
	transform: translateY(3px);
	background: var(--blue);
	color: #fff;
}

.cf-integration-section {
	padding: 110px 0;
	background: var(--soft);
}

.cf-integration-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
	align-items: center;
	gap: 72px;
}

.cf-integration-eyebrow {
	margin: 0 0 20px;
	color: #bc9804;
	font-size: 15px;
	font-weight: 900;
}

.cf-integration-copy h2 {
	color: var(--ink);
	font-size: 36px;
	font-weight: 900;
	line-height: 1.45;
}

.cf-integration-lead {
	margin: 26px 0 0;
	color: #344054;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.9;
}

.cf-integration-list {
	display: grid;
	gap: 12px;
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
}

.cf-integration-list li {
	position: relative;
	padding-left: 32px;
	color: var(--ink);
	font-size: 15px;
	font-weight: 700;
}

.cf-integration-list li::before {
	position: absolute;
	top: 4px;
	left: 0;
	display: grid;
	width: 20px;
	height: 20px;
	place-items: center;
	border-radius: 50%;
	background: var(--yellow);
	color: var(--navy);
	content: "✓";
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
}

.cf-integration-button {
	min-width: 182px;
	margin-top: 34px;
	background: var(--blue);
	color: #fff;
	box-shadow: none;
	transform: translateY(0);
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.35s ease, color 0.35s ease;
}

.cf-integration-button:hover {
	transform: translateY(3px);
	background: var(--blue);
	color: #fff;
}

.cf-integration-visual {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.cf-integration-image {
	width: 100%;
	height: auto;
}

.cf-mock-panel {
	border: 1px solid rgba(29, 41, 61, 0.08);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 6px 18px rgba(29, 41, 61, 0.08);
}

.cf-mock-settings {
	padding: 22px;
}

.cf-mock-title {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--navy);
	font-size: 15px;
}

.cf-mock-title span {
	display: grid;
	width: 28px;
	height: 28px;
	place-items: center;
	border-radius: 6px;
	background: var(--blue);
	color: #fff;
	font-size: 14px;
	font-weight: 900;
}

.cf-mock-title svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cf-mock-settings dl {
	display: grid;
	gap: 10px;
	margin: 18px 0 0;
}

.cf-mock-settings dl div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 9px 14px;
	border-radius: 999px;
	background: #f5f6f8;
}

.cf-mock-settings dt,
.cf-mock-settings dd {
	margin: 0;
	font-size: 13px;
}

.cf-mock-settings dt {
	color: #667085;
}

.cf-mock-settings dd {
	color: var(--navy);
	font-weight: 900;
	text-align: right;
}

.cf-mock-connector {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 24px 0;
	color: var(--navy);
	font-size: 13px;
	font-weight: 900;
}

.cf-mock-connector::before,
.cf-mock-connector::after {
	height: 2px;
	flex: 1;
	background: var(--yellow);
	content: "";
}

.cf-mock-connector span {
	padding: 5px 14px;
	border-radius: 999px;
	background: var(--yellow);
}

.cf-mock-subscribers {
	padding: 22px;
	background: var(--navy);
	color: #fff;
}

.cf-mock-subscribers .cf-mock-title {
	color: #fff;
}

.cf-mock-subscribers .cf-mock-title span {
	background: var(--yellow);
	color: var(--navy);
}

.cf-mock-subscribers ul {
	display: grid;
	gap: 0;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}

.cf-mock-subscribers li {
	display: grid;
	grid-template-columns: 1fr auto auto;
	align-items: center;
	gap: 16px;
	padding: 10px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 13px;
}

.cf-mock-subscribers span {
	padding: 3px 10px;
	border-radius: 999px;
	background: rgba(253, 217, 75, 0.22);
	color: var(--yellow);
	font-style: normal;
	font-weight: 900;
}

.cf-mock-subscribers em {
	color: rgba(255, 255, 255, 0.68);
	font-style: normal;
}

.use-scenes-section {
	padding: 108px 0 92px;
	background: var(--navy);
	color: #fff;
}

.use-scenes-heading {
	text-align: center;
}

.use-scenes-heading p {
	margin: 0 0 20px;
	color: var(--yellow);
	font-size: 15px;
	font-weight: 900;
}

.use-scenes-heading h2 {
	color: #fff;
	font-size: 36px;
	font-weight: 900;
}

.use-scenes-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	margin-top: 54px;
}

.use-scene-card {
	min-height: 190px;
	padding: 28px 24px;
	border: 1px solid rgba(29, 41, 61, 0.12);
	border-radius: var(--radius);
	background: #fff;
	color: var(--ink);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.use-scene-icon {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border-radius: 14px;
	background: var(--yellow);
	color: var(--navy);
}

.use-scene-icon svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.use-scene-card h3 {
	margin-top: 22px;
	color: var(--navy);
	font-size: 17px;
	font-weight: 900;
	line-height: 1.55;
}

.use-scene-card p {
	margin: 12px 0 0;
	color: #475467;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.75;
}

.use-scenes-more {
	margin-top: 34px;
	text-align: center;
}

.use-scenes-more a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--yellow);
	font-size: 15px;
	font-weight: 900;
}

.use-scenes-more a::after {
	content: "→";
}

.function-overview-section {
	padding: 104px 0 92px;
	background: #fff;
	color: var(--ink);
}

.function-overview-heading {
	text-align: center;
}

.function-overview-heading p {
	margin: 0 0 18px;
	color: #bc9804;
	font-size: 15px;
	font-weight: 900;
}

.function-overview-heading h2 {
	color: var(--ink);
	font-size: 36px;
	font-weight: 900;
}

.function-overview-grid {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 14px;
	margin-top: 58px;
}

.function-overview-item {
	display: grid;
	min-height: 72px;
	place-items: center;
	gap: 8px;
	padding: 16px 10px 14px;
	border-radius: var(--radius);
	background: var(--soft);
	color: var(--navy);
	text-align: center;
}

.function-overview-item span {
	display: grid;
	width: 24px;
	height: 24px;
	place-items: center;
}

.function-overview-item svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.function-overview-item p {
	margin: 0;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.35;
}

.function-overview-more {
	margin-top: 34px;
	text-align: center;
}

.function-overview-more a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--ink);
	font-size: 15px;
	font-weight: 900;
	text-decoration: none;
}

.function-overview-more a::after {
	content: "→";
	text-decoration: none;
}

.final-cta-section {
	padding: 104px 0;
	background: var(--yellow);
	color: var(--navy);
}

.final-cta-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1fr);
	align-items: center;
	gap: 86px;
}

.final-cta-copy h2 {
	color: var(--navy);
	font-size: 36px;
	font-weight: 900;
	line-height: 1.35;
}

.final-cta-copy p {
	max-width: 620px;
	margin: 34px 0 0;
	color: #000;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.85;
}

.final-cta-actions {
	display: flex;
	flex-wrap: wrap;
	width: min(100%, 620px);
	gap: 20px;
	margin-top: 54px;
}

.final-cta-primary,
.final-cta-secondary {
	display: inline-flex;
	flex: 1 1 calc((100% - 20px) / 2);
	min-width: 0;
	min-height: 58px;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 0 24px;
	border-radius: var(--radius);
	font-size: 16px;
	font-weight: 900;
	line-height: 1;
	transform: translateY(0);
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.final-cta-primary {
	background: var(--blue);
	color: #fff;
	box-shadow: 0 5px 0 rgba(29, 41, 61, 0.32);
}

.final-cta-primary img {
	width: 22px;
	height: 22px;
	filter: brightness(0) invert(1);
}

.final-cta-secondary {
	border: 2px solid var(--navy);
	background: transparent;
	color: var(--navy);
}

.final-cta-primary:hover,
.final-cta-secondary:hover {
	transform: translateY(3px);
}

.final-cta-primary:hover {
	background: var(--blue);
	color: #fff;
	box-shadow: 0 2px 0 rgba(29, 41, 61, 0.32);
}

.final-cta-secondary:hover {
	background: rgba(255, 255, 255, 0.3);
	color: var(--navy);
}

.final-cta-visual {
	position: relative;
}

.final-cta-placeholder {
	width: 100%;
	aspect-ratio: 1.55 / 1;
	border-radius: var(--radius);
	background: #f5f5f5;
	box-shadow: 0 5px 0 rgba(29, 41, 61, 0.12), 0 14px 28px rgba(29, 41, 61, 0.14);
}

.final-cta-image {
	display: block;
	width: 100%;
	height: auto;
	border-radius: var(--radius);
}

.product-mock {
	position: relative;
	z-index: 1;
}

.mock-window {
	overflow: hidden;
	border: 1px solid rgba(29, 41, 61, 0.12);
	border-radius: 18px;
	background: #fff;
	box-shadow: var(--shadow);
}

.mock-bar {
	display: flex;
	gap: 8px;
	padding: 16px;
	border-bottom: 1px solid var(--line);
	background: #fbfcfe;
}

.mock-bar span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #d0d5dd;
}

.mock-bar span:first-child {
	background: #ff7468;
}

.mock-bar span:nth-child(2) {
	background: #ffc84a;
}

.mock-bar span:nth-child(3) {
	background: #47c47a;
}

.mock-content {
	display: grid;
	grid-template-columns: 72px 1fr;
	min-height: 420px;
}

.mock-sidebar {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 24px 18px;
	background: var(--navy);
}

.mock-sidebar span {
	height: 36px;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.16);
}

.mock-sidebar .active {
	background: var(--yellow);
}

.mock-panel {
	padding: 26px;
}

.mock-kpi-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.mock-kpi-row div,
.mock-flow div {
	padding: 16px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
}

.mock-kpi-row strong {
	display: block;
	color: var(--navy);
	font-size: 24px;
}

.mock-kpi-row small,
.mock-flow span {
	color: var(--muted);
}

.mock-flow {
	display: grid;
	gap: 12px;
	margin-top: 18px;
}

.mock-flow b {
	display: block;
	color: var(--navy);
}

.mock-chart {
	display: flex;
	height: 96px;
	align-items: end;
	gap: 12px;
	margin-top: 22px;
	padding: 16px;
	border-radius: var(--radius);
	background: var(--yellow-soft);
}

.mock-chart span {
	flex: 1;
	border-radius: 6px 6px 0 0;
	background: var(--yellow);
}

.section {
	padding: 92px 0;
}

.section-light {
	background: var(--soft);
}

.section-navy {
	background: var(--navy);
	color: #fff;
}

.section-navy h2,
.section-navy h3 {
	color: #fff;
}

.section-navy .eyebrow {
	color: var(--yellow);
}

.inquiry-form-section {
	background: #fff;
}

.thanks-section {
	background: #fff;
}

.thanks-content {
	max-width: 760px;
	text-align: center;
}

.thanks-icon {
	width: 58px;
	height: 58px;
	margin: 0 auto 26px;
}

.thanks-content h2 {
	margin: 0;
	color: var(--navy);
	font-size: clamp(30px, 3vw, 42px);
	font-weight: 900;
	line-height: 1.35;
}

.thanks-content p {
	margin: 22px auto 0;
	color: #344054;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.9;
}

.thanks-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	justify-content: center;
	margin-top: 44px;
}

.thanks-actions .final-cta-primary,
.thanks-actions .final-cta-secondary {
	flex: 0 1 260px;
}

.section-heading {
	max-width: 780px;
	margin-bottom: 34px;
	text-align: center;
}

.section-heading p {
	margin: 18px 0 0;
}

.card-grid {
	display: grid;
	gap: 18px;
}

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

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

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

.feature-card,
.plain-card,
.pricing-card,
.form-panel,
.faq-list details {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
}

.feature-card,
.plain-card {
	padding: 28px;
}

.feature-card p,
.plain-card p,
.pricing-card p,
.faq-list p {
	margin: 12px 0 0;
	color: var(--muted);
}

.icon {
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	margin-bottom: 18px;
	border-radius: var(--radius);
	background: var(--yellow-soft);
	color: var(--navy);
}

.text-link {
	display: inline-flex;
	margin-top: 18px;
	color: var(--navy);
	font-weight: 800;
	text-decoration: underline;
	text-decoration-color: var(--yellow);
	text-decoration-thickness: 4px;
	text-underline-offset: 4px;
}

.timeline {
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.timeline li {
	display: grid;
	grid-template-columns: 74px 1fr;
	gap: 8px 18px;
	padding: 20px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: 0 10px 28px rgba(29, 41, 61, 0.06);
}

.timeline span {
	grid-row: span 2;
	color: #806600;
	font-weight: 900;
}

.timeline b {
	color: var(--navy);
}

.timeline p {
	margin: 0;
	color: var(--muted);
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.pricing-card {
	position: relative;
	padding: 26px;
	color: var(--ink);
}

.section-navy .pricing-card {
	border-color: rgba(255, 255, 255, 0.14);
	background: #fff;
}

.pricing-card.is-featured {
	border-color: var(--yellow);
	box-shadow: 0 18px 44px rgba(253, 217, 75, 0.24);
	transform: translateY(-8px);
}

.badge {
	display: inline-flex;
	margin-bottom: 12px;
	padding: 5px 10px;
	border-radius: 999px;
	background: var(--yellow);
	color: var(--navy);
	font-size: 12px;
	font-weight: 900;
}

.price {
	margin: 18px 0;
}

.price strong {
	color: var(--navy);
	font-size: 34px;
	line-height: 1;
}

.price span {
	color: var(--muted);
}

.pricing-card ul {
	display: grid;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
	color: #344054;
	font-size: 14px;
}

.pricing-card li::before {
	content: "✓";
	margin-right: 8px;
	color: #947400;
	font-weight: 900;
}

.page-hero {
	padding: 208px 0 78px;
	background: linear-gradient(135deg, #fff9e5 0%, #fff 68%);
	text-align: center;
}

.page-hero .container {
	max-width: 860px;
}

.page-hero h1 {
	margin: 0 auto;
	font-size: clamp(36px, 6vw, 58px);
}

.page-hero p:last-child {
	max-width: 720px;
	margin: 20px auto 0;
}

.feature-list {
	display: grid;
	gap: 18px;
}

.feature-list article {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 18px;
	padding: 26px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.feature-list .icon {
	margin: 0;
}

.feature-list p {
	margin: 8px 0 0;
	color: var(--muted);
}

.integration-box {
	display: grid;
	gap: 12px;
	padding: 26px;
	border-radius: 18px;
	background: var(--soft);
}

.integration-box div {
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	color: var(--navy);
	font-weight: 900;
	text-align: center;
}

.integration-box span {
	color: var(--muted);
	font-size: 13px;
	font-weight: 800;
	text-align: center;
}

.faq-list {
	max-width: 860px;
}

.faq-list details {
	padding: 22px 24px;
}

.faq-list details + details {
	margin-top: 12px;
}

.faq-list summary {
	cursor: pointer;
	color: var(--navy);
	font-weight: 900;
}

.form-panel {
	max-width: 540px;
	padding: 32px;
}

.form-panel form {
	display: grid;
	gap: 16px;
	margin-top: 20px;
}

.form-panel label {
	display: grid;
	gap: 8px;
	color: var(--navy);
	font-weight: 800;
}

.form-panel input {
	width: 100%;
	min-height: 48px;
	padding: 10px 12px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.content-area {
	max-width: 760px;
}

.content-area:has(.sm-contact-form) {
	max-width: 1120px;
}

.sm-contact-form {
	width: min(100%, 900px);
	margin: 0 auto;
	color: var(--ink);
}

.sm-contact-form p {
	margin: 0;
}

.sm-contact-lead {
	padding: 0 0 30px;
	color: #4a5568;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.8;
	text-align: center;
}

.sm-contact-table {
	overflow: hidden;
	border: 1px solid #d9dee7;
	border-radius: var(--radius);
	background: #fff;
}

.sm-contact-row {
	display: grid;
	grid-template-columns: 275px 1fr;
	min-height: 102px;
	border-bottom: 1px solid #e5e8ee;
}

.sm-contact-row:last-child {
	border-bottom: 0;
}

.sm-contact-label {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 24px 26px;
	background: #f5f6f8;
	color: #111827;
	font-size: 18px;
	font-weight: 600;
}

.sm-contact-required {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	min-height: 22px;
	padding: 2px 7px;
	border-radius: 3px;
	background: #ef3e68;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	margin-left:10px;
}

.sm-contact-field {
	display: flex;
	align-items: center;
	padding: 20px 26px;
}

.sm-contact-field p,
.sm-contact-message > p {
	width: 100%;
}

.sm-contact-field .wpcf7-form-control-wrap,
.sm-contact-message .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

.sm-contact-form input[type="text"],
.sm-contact-form input[type="email"],
.sm-contact-form input[type="tel"],
.sm-contact-form textarea {
	width: 100%;
	border: 1px solid #cfd6df;
	border-radius: 6px;
	background: #fff;
	color: var(--ink);
	font: inherit;
	font-size: 18px;
	line-height: 1.6;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sm-contact-form input[type="text"],
.sm-contact-form input[type="email"],
.sm-contact-form input[type="tel"] {
	min-height: 60px;
	padding: 14px 18px;
}

.sm-contact-form textarea {
	min-height: 270px;
	padding: 18px;
	resize: vertical;
}

.sm-contact-form input::placeholder,
.sm-contact-form textarea::placeholder {
	color: #7a828d;
	opacity: 1;
}

.sm-contact-form input:focus,
.sm-contact-form textarea:focus {
	border-color: var(--blue);
	box-shadow: 0 0 0 3px rgba(8, 58, 143, 0.14);
	outline: 0;
}

.sm-contact-message {
	margin-top: 40px;
}

.sm-contact-message-label {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 16px;
	color: #111827;
	font-size: 18px;
	font-weight: 900;
	text-align: center;
}

.sm-contact-actions {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

.sm-contact-actions p {
	display: flex;
	width: min(100%, 800px);
	justify-content: center;
}

.sm-contact-consent {
	max-width: 740px;
	margin: 28px auto 0;
	color: #344054;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.8;
}

.sm-contact-consent .wpcf7-list-item {
	margin: 0;
}

.sm-contact-consent label {
	display: grid;
	grid-template-columns: 22px 1fr;
	gap: 12px;
	align-items: flex-start;
	cursor: pointer;
}

.sm-contact-consent input[type="checkbox"] {
	width: 22px;
	height: 22px;
	margin: 4px 0 0;
	accent-color: var(--blue);
}

.sm-contact-consent a {
	color: var(--blue);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.sm-contact-actions .wpcf7-spinner {
	align-self: center;
}

.sm-contact-form .sm-contact-submit {
	display: inline-flex;
	width: min(100%, 800px);
	max-width: 800px;
	min-height: 72px;
	align-items: center;
	justify-content: center;
	gap: 28px;
	padding: 0 34px;
	border: 0;
	border-bottom: 8px solid #333;
	border-radius: var(--radius);
	background: var(--blue);
	color: #fff;
	font-size: clamp(22px, 2.2vw, 26px);
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 10px 26px rgba(29, 41, 61, 0.08);
	transition: transform 0.18s ease, border-bottom-width 0.18s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.sm-contact-form .sm-contact-submit:hover,
.sm-contact-form .sm-contact-submit:focus-visible {
	transform: translateY(3px);
	border-bottom-width: 0;
	background: var(--blue);
	color: #fff;
	box-shadow: 0 5px 14px rgba(188, 152, 4, 0.34);
}

.sm-contact-form .wpcf7-not-valid-tip {
	margin-top: 8px;
	font-size: 14px;
	font-weight: 700;
}

.sm-contact-form .wpcf7-response-output {
	margin: 24px 0 0;
	padding: 14px 18px;
	border-radius: var(--radius);
	font-weight: 700;
}

.news-list {
	display: grid;
	gap: 16px;
	max-width: 860px;
}

.news-card,
.empty-state {
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
}

.news-card time,
.article-content time {
	color: var(--muted);
	font-size: 14px;
	font-weight: 800;
}

.news-card h2 {
	margin-top: 8px;
	font-size: 24px;
}

.news-card p,
.empty-state p {
	margin: 10px 0 0;
	color: var(--muted);
}

.article-content {
	color: #344054;
	font-size: 18px;
}

.article-content h2,
.article-content h3 {
	margin-top: 32px;
}

.article-content a {
	color: var(--navy);
	text-decoration: underline;
	text-decoration-color: var(--yellow);
	text-decoration-thickness: 3px;
	text-underline-offset: 3px;
}

.pagination {
	margin-top: 20px;
}

.site-footer {
	background: var(--navy);
	color: #d0d5dd;
}

.footer-main {
	display: grid;
	grid-template-columns: minmax(220px, 1fr) minmax(0, 1.4fr);
	gap: 64px;
	padding: 58px 0;
}

.footer-brand {
	align-self: start;
	color: #fff;
}

.footer-menu {
	display: grid;
	grid-template-columns: repeat(2, minmax(180px, 1fr));
	gap: 48px 72px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 14px;
}

.footer-menu > li > a {
	display: block;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.42);
	color: #fff;
	font-weight: 900;
	pointer-events: none;
}

.footer-menu .sub-menu {
	display: grid;
	gap: 14px;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}

.footer-menu .sub-menu a {
	color: #d0d5dd;
	transition: color 0.35s ease;
}

.footer-menu a:hover {
	color: #bc9804;
}

.copyright {
	grid-column: 1 / -1;
	margin: 0;
	color: #98a2b3;
	font-size: 13px;
}

@media (max-width: 980px) {
	.nav-toggle {
		display: block;
	}

	.site-nav {
		position: fixed;
		top: 82px;
		right: 0;
		left: 0;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 18px 20px 28px;
		border-radius: 0;
		border-bottom: 1px solid var(--line);
		background: #fff;
		color: var(--navy);
		box-shadow: 0 24px 40px rgba(29, 41, 61, 0.12);
	}

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

	.primary-menu {
		display: grid;
		gap: 0;
		padding: 0;
		border-radius: 0;
		box-shadow: none;
	}

	.site-nav a {
		padding: 14px 0;
	}

	.header-actions {
		display: grid;
		gap: 8px;
		margin-left: 0;
		padding-top: 8px;
	}

	.header-actions .button {
		margin-top: 8px;
	}

	.hero-grid,
	.split {
		grid-template-columns: 1fr;
	}

	.hero-grid {
		width: min(100% - 40px, 1300px);
	}

	.hero-visual {
		margin-top: 10px;
	}

	.problem-section {
		padding: 84px 0 86px;
	}

	.problem-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 22px;
	}

	.solution-section {
		padding: 68px 0 150px;
	}

	.solution-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 52px 22px;
	}

	.solution-card::after {
		display: none;
	}

	.feature-highlights-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px;
	}

	.feature-highlight-card {
		grid-column: auto;
	}

	.cf-integration-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

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

	.function-overview-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.final-cta-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.card-grid.three,
	.card-grid.four,
	.pricing-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 680px) {
	:root {
		--section-diagonal-ratio: 18%;
		--problem-diagonal-left: 82%;
		--problem-diagonal-right: 64%;
	}

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

	.header-inner {
		width: min(100% - 28px, 1300px);
		min-height: 68px;
	}

	.site-nav {
		top: 68px;
	}

	.hero {
		padding: 150px 0 64px;
	}

	.hero::after {
		height: var(--section-diagonal-ratio);
	}

	.hero-subcopy {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
	}

	.hero-subcopy span {
		width: 100%;
		max-width: 220px;
	}

	.hero-title {
		margin-top: 30px;
	}

	.hero-brand-logo {
		width: min(100%, 360px);
	}

	.hero-description {
		margin-top: 26px;
		font-size: 16px;
	}

	.hero-actions {
		margin-top: 38px;
	}

	.hero-trial-button {
		min-height: 62px;
		gap: 16px;
		font-size: 20px;
	}

	.hero-trial-button img {
		width: 28px;
		height: 28px;
	}

	.problem-section {
		padding: 64px 0 70px;
	}

	.problem-section::before {
		height: 100%;
		clip-path: polygon(0 var(--problem-diagonal-left), 100% var(--problem-diagonal-right), 100% 100%, 0 100%);
	}

	.problem-heading h2 {
		font-size: 36px;
	}

	.problem-image {
		margin: 34px auto 38px;
	}

	.problem-grid {
		grid-template-columns: 1fr;
	}

	.problem-card {
		grid-template-columns: 38px 1fr;
		min-height: 92px;
		padding: 18px;
	}

	.scroll-cue {
		--scroll-cue-distance: 78px;
	}

	.scroll-cue span {
		top: -36px;
		font-size: 16px;
	}

	.solution-section {
		padding: 56px 0 110px;
	}

	.solution-section::after {
		height: var(--section-diagonal-ratio);
	}

	.feature-highlights-section {
		padding: 78px 0 96px;
	}

	.feature-highlights-grid {
		grid-template-columns: 1fr;
		gap: 22px;
		margin-top: 48px;
	}

	.feature-highlight-card {
		min-height: 0;
		padding: 22px;
	}

	.cf-integration-section {
		padding: 72px 0;
	}

	.cf-integration-copy h2 {
		font-size: 30px;
	}

	.cf-integration-visual {
		padding: 0;
	}

	.cf-mock-settings {
		padding: 18px;
	}

	.cf-mock-settings dl div {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
		border-radius: var(--radius);
	}

	.cf-mock-settings dd {
		text-align: left;
	}

	.cf-mock-subscribers {
		padding: 18px;
	}

	.cf-mock-subscribers li {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.use-scenes-section {
		padding: 76px 0 72px;
	}

	.use-scenes-grid {
		grid-template-columns: 1fr;
		margin-top: 42px;
	}

	.use-scene-card {
		min-height: 0;
		padding: 24px;
	}

	.function-overview-section {
		padding: 76px 0 72px;
	}

	.function-overview-grid {
		grid-template-columns: repeat(2, 1fr);
		margin-top: 42px;
	}

	.final-cta-section {
		padding: 76px 0;
	}

	.final-cta-copy h2 {
		font-size: 30px;
	}

	.final-cta-actions {
		width: 100%;
		gap: 14px;
		margin-top: 38px;
	}

	.final-cta-primary,
	.final-cta-secondary {
		width: 100%;
	}

	.thanks-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.thanks-actions .final-cta-primary,
	.thanks-actions .final-cta-secondary {
		flex-basis: auto;
		width: 100%;
	}

	.solution-heading h2 {
		flex-direction: column;
		gap: 10px;
	}

	.solution-heading h2 img {
		width: min(100%, 360px);
	}

	.solution-heading h3 {
		font-size: clamp(22px, 5.6vw, 28px);
	}

	.solution-image {
		width: min(100%, 340px);
		margin-top: 28px;
	}

	.solution-lead {
		margin-top: 28px;
		font-size: 15px;
	}

	.solution-grid {
		grid-template-columns: 1fr;
		gap: 46px;
		margin-top: 64px;
	}

	.solution-card {
		min-height: 132px;
	}

	.page-hero {
		padding: 174px 0 58px;
	}

	.brand-logo {
		width: 176px;
	}

	h1 {
		font-size: 40px;
	}

	h2 {
		font-size: 36px;
	}

	.hero-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.button {
		width: 100%;
	}

	.sm-contact-lead {
		margin-bottom: 30px;
		font-size: 16px;
		text-align: left;
	}

	.sm-contact-row {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.sm-contact-label {
		padding: 18px 20px;
		font-size: 16px;
	}

	.sm-contact-field {
		padding: 18px 20px;
	}

	.sm-contact-form input[type="text"],
	.sm-contact-form input[type="email"],
	.sm-contact-form input[type="tel"] {
		min-height: 56px;
		font-size: 16px;
	}

	.sm-contact-form textarea {
		min-height: 230px;
		font-size: 16px;
	}

	.sm-contact-message {
		margin-top: 32px;
	}

	.sm-contact-message-label {
		justify-content: flex-start;
		font-size: 16px;
	}

	.sm-contact-actions {
		margin-top: 32px;
	}

	.sm-contact-consent {
		margin-top: 24px;
		font-size: 14px;
	}

	.sm-contact-form .sm-contact-submit {
		min-height: 68px;
		font-size: 22px;
	}

	.mock-content {
		grid-template-columns: 52px 1fr;
		min-height: 360px;
	}

	.mock-panel {
		padding: 16px;
	}

	.mock-kpi-row {
		grid-template-columns: 1fr;
	}

	.card-grid.three,
	.card-grid.four,
	.card-grid.two,
	.pricing-grid,
	.feature-list article {
		grid-template-columns: 1fr;
	}

	.pricing-card.is-featured {
		transform: none;
	}

	.footer-main {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.footer-menu {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.section {
		padding: 64px 0;
	}

	.page-hero {
		padding: 174px 0 58px;
	}
}
