/*
Theme Name: NORI Theme
Author: Aprilred
Version: 3.8
Tested up to: 7.0
Requires at least: 4.4
Requires PHP: 5.2.4


This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/**
 * 1.0 - Normalize
 *
 * Normalizing styles have been helped along thanks to the fine work of
 * Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
 */
/* ── Reset & Base ─────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

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

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

button {
	cursor: pointer;
	border: none;
	background: none;
	font: inherit;
}

ul,
ol {
	list-style: none;
}

/* ── Design Tokens ────────────────────────────────────── */
:root {
	--g-dark: #1e4433;
	--g-mid: #2e6b4f;
	--g: #3d8a65;
	--g-soft: #6aae8c;
	--g-pale: #b8dac8;
	--g-50: #eef7f2;
	--g-30: #f5faf7;

	--coral: #e0694c;
	--coral-lt: #f0a38c;
	--coral-30: #fde9e3;

	--sand: #f7c87a;
	--sand-30: #fef5e0;

	--bg: #fafaf6;
	--surface: #f3f0e6;
	--surface2: #eae5d6;
	--white: #ffffff;

	--text: #18261e;
	--text-mid: #3e5448;
	--text-lt: #718c7d;

	--border: rgba(61, 138, 101, 0.14);
	--shadow-sm: 0 2px 12px rgba(30, 68, 51, 0.06);
	--shadow: 0 8px 32px rgba(30, 68, 51, 0.1);
	--shadow-lg: 0 20px 60px rgba(30, 68, 51, 0.14);

	--r-sm: 8px;
	--r: 16px;
	--r-lg: 24px;
	--r-xl: 32px;
	--r-pill: 100px;

	--font: "Plus Jakarta Sans", system-ui, sans-serif;
	--nav-h: 72px;
}

body {
	font-family: var(--font);
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

/* ── Utility ──────────────────────────────────────────── */
.container {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 24px;
}

.section {
	padding: 100px 0;
}

.section-sm {
	padding: 64px 0;
}

.tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--g);
	background: var(--g-50);
	border: 1px solid var(--g-pale);
	padding: 5px 12px;
	border-radius: var(--r-pill);
}

.tag-coral {
	color: var(--coral);
	background: var(--coral-30);
	border-color: var(--coral-lt);
}

h1,
h2,
h3,
h4,
h5 {
	line-height: 1.2;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.display {
	font-size: clamp(2.6rem, 5.5vw, 4rem);
}

.h2 {
	font-size: clamp(2rem, 3.5vw, 2.75rem);
}

.h3 {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.lead {
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	color: var(--text-mid);
	line-height: 1.7;
}

.small {
	font-size: 0.875rem;
}

.muted {
	color: var(--text-lt);
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-size: 0.95rem;
	font-weight: 600;
	padding: 14px 28px;
	border-radius: var(--r-pill);
	transition:
		transform 0.2s,
		box-shadow 0.2s,
		background 0.2s;
}

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

.btn:active {
	transform: translateY(0);
}

.btn-primary {
	background: var(--g);
	color: #fff;
	box-shadow: 0 4px 20px rgba(61, 138, 101, 0.35);
}

.btn-primary:hover {
	background: var(--g-mid);
	box-shadow: 0 8px 28px rgba(61, 138, 101, 0.45);
}

.btn-ghost {
	background: transparent;
	color: var(--text-mid);
	border: 1.5px solid var(--border);
}

.btn-ghost:hover {
	border-color: var(--g-pale);
	background: var(--g-30);
}

.btn-outline {
	background: transparent;
	color: var(--g);
	border: 1.5px solid var(--g);
}

.btn-outline:hover {
	background: var(--g);
	color: #fff;
}

/* ── Scroll Reveal ───────────────────────────────────── */
.reveal {
	opacity: 0;
	transform: translateY(32px);
	transition:
		opacity 0.65s ease,
		transform 0.65s ease;
}

.reveal.visible {
	opacity: 1;
	transform: none;
}

.reveal-delay-1 {
	transition-delay: 0.1s;
}

.reveal-delay-2 {
	transition-delay: 0.2s;
}

.reveal-delay-3 {
	transition-delay: 0.3s;
}

.reveal-delay-4 {
	transition-delay: 0.4s;
}

/* ── Navigation ──────────────────────────────────────── */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 900;
	height: var(--nav-h);
	display: flex;
	align-items: center;
	transition:
		background 0.3s,
		box-shadow 0.3s,
		backdrop-filter 0.3s;
}

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

@media screen and (max-width: 782px) {
	body.admin-bar .nav {
		top: 46px;
	}
}

body {
	padding-top: 88px;
}

/* body.admin-bar {
	padding-top: 120px;
} */

@media screen and (max-width: 782px) {
	body.admin-bar {
		padding-top: 134px;
	}
}

.nav.scrolled {
	background: rgba(250, 250, 246, 0.88);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--g-dark);
	letter-spacing: -0.04em;
}

.nav-logo-leaf {
	width: 32px;
	height: 32px;
	background: var(--g);
	border-radius: 10px 10px 10px 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 16px;
	line-height: 1;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 32px;
}

.nav-links a {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-mid);
	transition: color 0.2s;
}

.nav-links a:hover {
	color: var(--g);
}

.nav-cta {
	display: flex;
	align-items: center;
	gap: 12px;
}

.nav-hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

.nav-hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--text);
	border-radius: 2px;
	transition: 0.3s;
}

.mobile-menu {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 800;
	background: var(--bg);
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 32px;
	font-size: 1.5rem;
	font-weight: 700;
}

.mobile-menu.open {
	display: flex;
}

.mobile-menu a {
	color: var(--text);
	transition: color 0.2s;
}

.mobile-menu a:hover {
	color: var(--g);
}

.mobile-menu-close {
	position: absolute;
	top: 24px;
	right: 24px;
	font-size: 2rem;
	color: var(--text-lt);
	cursor: pointer;
}

@media (max-width: 768px) {
	.nav-links,
	.nav-cta .btn-ghost {
		display: none;
	}

	.nav-hamburger {
		display: flex;
	}
}

/* ── Hero ────────────────────────────────────────────── */
#hero {
	min-height: 100svh;
	padding-top: calc(var(--nav-h));
	padding-bottom: 80px;
	display: flex;
	align-items: center;
	background:
		radial-gradient(
			ellipse at 15% 40%,
			rgba(61, 138, 101, 0.07) 0%,
			transparent 55%
		),
		radial-gradient(
			ellipse at 85% 20%,
			rgba(224, 105, 76, 0.05) 0%,
			transparent 50%
		),
		radial-gradient(
			ellipse at 60% 80%,
			rgba(61, 138, 101, 0.04) 0%,
			transparent 40%
		);
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.hero-badge {
	margin-bottom: 20px;
}

.hero-title {
	margin: 16px 0 24px;
}

.hero-title em {
	font-style: normal;
	color: var(--g);
}

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

.hero-note {
	margin-top: 28px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.83rem;
	color: var(--text-lt);
}

.hero-note-dots {
	display: flex;
	gap: -4px;
}

.hero-note-dot {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: 2px solid var(--bg);
	background: var(--g-pale);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	margin-left: -6px;
}

.hero-note-dot:first-child {
	margin-left: 0;
}

/* Phone mockup */
.phone-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.phone-glow {
	position: absolute;
	width: 300px;
	height: 300px;
	background: radial-gradient(
		circle,
		rgba(61, 138, 101, 0.18) 0%,
		transparent 70%
	);
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
	0%,
	100% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0.7;
	}

	50% {
		transform: translate(-50%, -50%) scale(1.1);
		opacity: 1;
	}
}

.phone {
	position: relative;
	z-index: 1;
	width: 260px;
	background: var(--g-dark);
	border-radius: 42px;
	padding: 14px;
	box-shadow:
		0 24px 80px rgba(30, 68, 51, 0.32),
		0 0 0 1px rgba(255, 255, 255, 0.06);
	animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-12px);
	}
}

.phone-notch {
	width: 80px;
	height: 26px;
	background: var(--g-dark);
	border-radius: 0 0 14px 14px;
	margin: 0 auto 10px;
	position: relative;
	z-index: 2;
}

.phone-screen {
	background: #f7faf8;
	border-radius: 30px;
	overflow: hidden;
	min-height: 460px;
	display: flex;
	flex-direction: column;
}

.phone-statusbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 16px 4px;
	font-size: 11px;
	font-weight: 600;
	color: var(--text);
}

.phone-statusbar-icons {
	display: flex;
	gap: 4px;
	align-items: center;
}

.phone-header {
	padding: 8px 16px 12px;
	background: var(--white);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	display: flex;
	align-items: center;
	gap: 8px;
}

.phone-app-icon {
	width: 28px;
	height: 28px;
	border-radius: 7px;
	background: var(--g);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: #fff;
	font-weight: 700;
	letter-spacing: -0.05em;
}

.phone-app-name {
	font-size: 13px;
	font-weight: 700;
	color: var(--text);
}

.phone-body {
	flex: 1;
	padding: 14px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.phone-greeting {
	font-size: 11px;
	color: var(--text-lt);
	font-weight: 500;
}

.phone-greeting strong {
	display: block;
	font-size: 15px;
	color: var(--text);
	font-weight: 700;
	margin-top: 2px;
}

.phone-card {
	background: var(--white);
	border-radius: 14px;
	padding: 14px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(0, 0, 0, 0.04);
}

.phone-card-label {
	font-size: 10px;
	font-weight: 600;
	color: var(--text-lt);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 8px;
}

.phone-card-question {
	font-size: 13px;
	font-weight: 700;
	color: var(--text);
	line-height: 1.4;
}

.phone-toggle-row {
	display: flex;
	gap: 8px;
	margin-top: 10px;
}

.phone-toggle-btn {
	flex: 1;
	padding: 8px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 600;
	text-align: center;
	transition: all 0.2s;
}

.phone-toggle-yes {
	background: var(--g);
	color: #fff;
}

.phone-toggle-no {
	background: var(--g-50);
	color: var(--text-mid);
	border: 1px solid var(--g-pale);
}

.phone-list-card {
	background: var(--g-dark);
	border-radius: 14px;
	padding: 14px;
}

.phone-list-label {
	font-size: 10px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 10px;
}

.phone-list-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 6px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.phone-list-row:last-child {
	border-bottom: none;
}

.phone-list-name {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.75);
	font-weight: 500;
}

.phone-list-count {
	font-size: 12px;
	font-weight: 700;
	color: var(--g-pale);
	background: rgba(255, 255, 255, 0.08);
	padding: 2px 8px;
	border-radius: 6px;
}

.hero-floating-card {
	position: absolute;
	background: var(--white);
	border-radius: var(--r);
	padding: 12px 16px;
	box-shadow: var(--shadow);
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--text);
	display: flex;
	align-items: center;
	gap: 8px;
	animation: float-card 5s ease-in-out infinite;
}

.hero-floating-card.card-a {
	right: -20px;
	top: 15%;
	animation-delay: 1s;
}

.hero-floating-card.card-b {
	left: -30px;
	bottom: 20%;
	animation-delay: 2.5s;
}

@keyframes float-card {
	0%,
	100% {
		transform: translateY(0) rotate(0deg);
	}

	50% {
		transform: translateY(-8px) rotate(0.5deg);
	}
}

.fc-icon {
	font-size: 1.2rem;
}

.fc-text-sm {
	font-size: 0.7rem;
	color: var(--text-lt);
	font-weight: 400;
}

@media (max-width: 900px) {
	.hero-grid {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 40px;
	}

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

	.hero-note {
		justify-content: center;
	}

	.phone-wrap {
		margin: 0 auto;
	}

	.hero-floating-card.card-a {
		right: 0;
	}

	.hero-floating-card.card-b {
		left: 0;
	}
}

/* ── Stats bar ───────────────────────────────────────── */
#stats {
	background: var(--g-dark);
	padding: 40px 0;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
}

.stat-item {
	text-align: center;
	padding: 20px;
	border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
	border-right: none;
}

.stat-num {
	font-size: clamp(2rem, 4vw, 2.8rem);
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.04em;
}

.stat-num span {
	color: var(--g-pale);
}

.stat-label {
	font-size: 0.83rem;
	color: rgba(255, 255, 255, 0.5);
	margin-top: 4px;
	font-weight: 500;
}

@media (max-width: 600px) {
	.stats-grid {
		grid-template-columns: 1fr;
	}

	.stat-item {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.stat-item:last-child {
		border-bottom: none;
	}
}

/* ── Problems ────────────────────────────────────────── */
#problems {
	background: var(--bg);
}

.section-header {
	text-align: center;
	margin-bottom: 64px;
}

.section-header .tag {
	margin-bottom: 16px;
}

.section-header p {
	max-width: 540px;
	margin: 16px auto 0;
}

.problems-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.problem-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: 32px;
	position: relative;
	overflow: hidden;
	transition:
		transform 0.3s,
		box-shadow 0.3s;
}

.problem-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
}

.problem-card::before {
	content: attr(data-num);
	position: absolute;
	top: -10px;
	right: 16px;
	font-size: 5rem;
	font-weight: 800;
	color: var(--surface2);
	line-height: 1;
	letter-spacing: -0.04em;
	z-index: 0;
}

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

.problem-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	margin-bottom: 20px;
}

.problem-icon.coral {
	background: var(--coral-30);
}

.problem-icon.sand {
	background: var(--sand-30);
}

.problem-icon.green {
	background: var(--g-50);
}

.problem-card h3 {
	font-size: 1.1rem;
	margin-bottom: 12px;
}

.problem-card p {
	font-size: 0.9rem;
	color: var(--text-mid);
	line-height: 1.7;
}

@media (max-width: 768px) {
	.problems-grid {
		grid-template-columns: 1fr;
	}
}

/* ── Story ───────────────────────────────────────────── */
#story {
	background: var(--surface);
}

.story-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}

.story-content .tag {
	margin-bottom: 20px;
}

.story-content h2 {
	margin-bottom: 20px;
}

.story-content p {
	color: var(--text-mid);
	line-height: 1.8;
	margin-bottom: 16px;
}

.story-insight {
	background: var(--white);
	border-radius: var(--r);
	padding: 20px 24px;
	margin-top: 28px;
	border-left: 3px solid var(--g);
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.story-insight-icon {
	font-size: 1.2rem;
	margin-top: 2px;
}

.story-insight p {
	margin: 0;
	font-size: 0.9rem;
	color: var(--text-mid);
}

.story-insight p strong {
	color: var(--text);
}

.story-timeline {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.timeline-item {
	display: flex;
	gap: 20px;
	padding-bottom: 32px;
	position: relative;
}

.timeline-item:last-child {
	padding-bottom: 0;
}

.timeline-left {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.timeline-dot {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--g-50);
	border: 2px solid var(--g-pale);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

.timeline-dot.active {
	background: var(--g);
	border-color: var(--g);
	font-size: 0.85rem;
	color: #fff;
	font-weight: 700;
}

.timeline-line {
	width: 2px;
	flex: 1;
	background: var(--g-pale);
	margin: 4px 0;
	min-height: 24px;
}

.timeline-item:last-child .timeline-line {
	display: none;
}

.timeline-body {
	padding-top: 8px;
	flex: 1;
}

.timeline-phase {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--g);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 4px;
}

.timeline-body h4 {
	font-size: 0.95rem;
	font-weight: 700;
	margin-bottom: 6px;
}

.timeline-body p {
	font-size: 0.875rem;
	color: var(--text-mid);
	line-height: 1.65;
}

@media (max-width: 768px) {
	.story-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

/* ── Solution ────────────────────────────────────────── */
#solution {
	background: var(--g-dark);
	position: relative;
	overflow: hidden;
}

#solution::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(
			ellipse at 80% 20%,
			rgba(106, 174, 140, 0.12) 0%,
			transparent 60%
		),
		radial-gradient(
			ellipse at 10% 80%,
			rgba(106, 174, 140, 0.08) 0%,
			transparent 50%
		);
	pointer-events: none;
}

#solution .section-header {
	position: relative;
	z-index: 1;
}

#solution .section-header .tag {
	background: rgba(255, 255, 255, 0.08);
	color: var(--g-pale);
	border-color: rgba(255, 255, 255, 0.12);
}

#solution .section-header h2 {
	color: #fff;
}

#solution .section-header p {
	color: rgba(255, 255, 255, 0.6);
}

.solution-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	position: relative;
	z-index: 1;
}

.solution-card {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--r-lg);
	padding: 32px;
	transition:
		background 0.3s,
		transform 0.3s;
}

.solution-card:hover {
	background: rgba(255, 255, 255, 0.09);
	transform: translateY(-4px);
}

.solution-card-emoji {
	font-size: 2rem;
	margin-bottom: 18px;
}

.solution-card h3 {
	font-size: 1rem;
	color: #fff;
	margin-bottom: 10px;
}

.solution-card p {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.7;
}

.solution-card-role {
	display: inline-block;
	margin-top: 16px;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--g-pale);
	background: rgba(255, 255, 255, 0.06);
	padding: 4px 10px;
	border-radius: var(--r-pill);
}

@media (max-width: 768px) {
	.solution-grid {
		grid-template-columns: 1fr;
	}
}

/* ── Platform components ─────────────────────────────── */
#platform {
	background: var(--bg);
}

.platform-tabs {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-bottom: 48px;
}

.ptab {
	padding: 10px 20px;
	border-radius: var(--r-pill);
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--text-mid);
	border: 1.5px solid transparent;
	background: var(--surface);
	transition: all 0.2s;
	cursor: pointer;
}

.ptab.active {
	background: var(--g);
	color: #fff;
	border-color: var(--g);
}

.ptab:hover:not(.active) {
	border-color: var(--g-pale);
	background: var(--g-30);
}

.platform-panels {
}

.platform-panel {
	display: none;
}

.platform-panel.active {
	display: block;
}

.platform-inner {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 64px;
	align-items: center;
}

.platform-text .tag {
	margin-bottom: 16px;
}

.platform-text h3 {
	margin-bottom: 16px;
}

.platform-text p {
	color: var(--text-mid);
	line-height: 1.8;
	margin-bottom: 24px;
}

.platform-features {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 8px;
}

.platform-feature {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 0.9rem;
}

.platform-feature-check {
	width: 20px;
	height: 20px;
	border-radius: 6px;
	background: var(--g-50);
	color: var(--g);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: 700;
	flex-shrink: 0;
	margin-top: 2px;
}

.platform-feature p {
	margin: 0;
	color: var(--text-mid);
}

.platform-feature p strong {
	color: var(--text);
}

.platform-visual {
	position: relative;
}

.platform-screen {
	background: var(--white);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--border);
	overflow: hidden;
}

.pscreen-topbar {
	background: var(--surface);
	padding: 12px 16px;
	display: flex;
	align-items: center;
	gap: 8px;
	border-bottom: 1px solid var(--border);
}

.pscreen-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.pscreen-url {
	flex: 1;
	background: var(--white);
	border-radius: 6px;
	height: 22px;
	margin: 0 12px;
}

.pscreen-body {
	padding: 20px;
}

.pscreen-title {
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 16px;
}

.pscreen-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 12px;
	border-radius: 8px;
	font-size: 0.8rem;
	margin-bottom: 6px;
	border: 1px solid var(--border);
}

.pscreen-row .name {
	font-weight: 600;
	color: var(--text);
}

.pscreen-row .detail {
	color: var(--text-lt);
	font-size: 0.75rem;
}

.pscreen-badge {
	font-size: 0.7rem;
	font-weight: 600;
	padding: 2px 8px;
	border-radius: 20px;
}

.badge-yes {
	background: var(--g-50);
	color: var(--g);
}

.badge-no {
	background: var(--coral-30);
	color: var(--coral);
}

.badge-meat {
	background: #fde8e1;
	color: #c05040;
}

.badge-veg {
	background: var(--g-50);
	color: var(--g);
}

.pscreen-summary {
	margin-top: 16px;
	padding: 14px;
	border-radius: 10px;
	background: var(--g-dark);
	display: flex;
	gap: 16px;
}

.pscreen-sum-item {
	flex: 1;
	text-align: center;
}

.pscreen-sum-num {
	font-size: 1.3rem;
	font-weight: 800;
	color: #fff;
}

.pscreen-sum-lbl {
	font-size: 0.7rem;
	color: rgba(255, 255, 255, 0.5);
	margin-top: 2px;
}

@media (max-width: 768px) {
	.platform-tabs {
		flex-wrap: wrap;
	}

	.platform-inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

/* ── How it works ────────────────────────────────────── */
#howitworks {
	background: var(--surface);
}

.hiw-tabs {
	display: flex;
	gap: 0;
	justify-content: center;
	margin-bottom: 56px;
	background: var(--surface2);
	border-radius: var(--r-pill);
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
	padding: 4px;
}

.hiw-tab {
	padding: 10px 24px;
	border-radius: var(--r-pill);
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-mid);
	transition: all 0.25s;
	cursor: pointer;
}

.hiw-tab.active {
	background: var(--white);
	color: var(--text);
	box-shadow: var(--shadow-sm);
}

.hiw-panel {
	display: none;
}

.hiw-panel.active {
	display: block;
}

.hiw-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	position: relative;
}

.hiw-steps::before {
	content: "";
	position: absolute;
	top: 28px;
	left: 15%;
	right: 15%;
	height: 2px;
	background: linear-gradient(to right, var(--g-pale), var(--g-pale));
	z-index: 0;
}

.hiw-step {
	text-align: center;
	position: relative;
	z-index: 1;
}

.hiw-step-num {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--white);
	border: 2px solid var(--g-pale);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.95rem;
	font-weight: 800;
	color: var(--g);
	margin: 0 auto 20px;
	box-shadow: var(--shadow-sm);
}

.hiw-step h4 {
	font-size: 0.95rem;
	margin-bottom: 8px;
}

.hiw-step p {
	font-size: 0.85rem;
	color: var(--text-mid);
	line-height: 1.65;
}

.hiw-step .hiw-time {
	display: inline-block;
	margin-top: 12px;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--g);
	background: var(--g-50);
	padding: 3px 10px;
	border-radius: var(--r-pill);
}

@media (max-width: 768px) {
	.hiw-steps {
		grid-template-columns: 1fr;
	}

	.hiw-steps::before {
		display: none;
	}
}

/* ── Pricing ─────────────────────────────────────────── */
#pricing {
	background: var(--bg);
}

.pricing-note {
	text-align: center;
	margin-bottom: 48px;
	font-size: 0.875rem;
	color: var(--text-lt);
}

.pricing-note strong {
	color: var(--text-mid);
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	align-items: stretch;
}

.pricing-card {
	border-radius: var(--r-xl);
	padding: 36px 32px;
	border: 1.5px solid var(--border);
	background: var(--white);
	display: flex;
	flex-direction: column;
	transition:
		transform 0.3s,
		box-shadow 0.3s;
	position: relative;
}

.pricing-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
	background: var(--g-dark);
	border-color: var(--g);
}

.pricing-popular {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--coral);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 4px 14px;
	border-radius: var(--r-pill);
	white-space: nowrap;
}

.pricing-package-name {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--g);
	margin-bottom: 8px;
}

.featured .pricing-package-name {
	color: var(--g-pale);
}

.pricing-title {
	font-size: 1.6rem;
	font-weight: 800;
	margin-bottom: 8px;
}

.featured .pricing-title {
	color: #fff;
}

.pricing-desc {
	font-size: 0.875rem;
	color: var(--text-mid);
	line-height: 1.65;
	margin-bottom: 24px;
}

.featured .pricing-desc {
	color: rgba(255, 255, 255, 0.55);
}

.pricing-price {
	margin-bottom: 8px;
}

.pricing-from {
	font-size: 0.78rem;
	color: var(--text-lt);
}

.featured .pricing-from {
	color: rgba(255, 255, 255, 0.4);
}

.pricing-amount {
	display: flex;
	align-items: baseline;
	gap: 4px;
	margin-top: 4px;
}

.pricing-num {
	font-size: 2rem;
	font-weight: 800;
	color: var(--text);
	letter-spacing: -0.04em;
}

.featured .pricing-num {
	color: #fff;
}

.pricing-cur {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-mid);
}

.featured .pricing-cur {
	color: rgba(255, 255, 255, 0.6);
}

.pricing-period {
	font-size: 0.8rem;
	color: var(--text-lt);
}

.featured .pricing-period {
	color: rgba(255, 255, 255, 0.4);
}

.pricing-setup {
	font-size: 0.78rem;
	color: var(--text-lt);
	padding: 8px 12px;
	background: var(--surface);
	border-radius: var(--r-sm);
	margin: 16px 0 24px;
}

.featured .pricing-setup {
	background: rgba(255, 255, 255, 0.07);
	color: rgba(255, 255, 255, 0.45);
}

.pricing-divider {
	height: 1px;
	background: var(--border);
	margin: 0 0 24px;
}

.featured .pricing-divider {
	background: rgba(255, 255, 255, 0.1);
}

.pricing-features {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 32px;
}

.pricing-feature {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.875rem;
	color: var(--text-mid);
}

.featured .pricing-feature {
	color: rgba(255, 255, 255, 0.65);
}

.pricing-feature-icon {
	color: var(--g);
	font-size: 0.85rem;
	margin-top: 2px;
	flex-shrink: 0;
}

.featured .pricing-feature-icon {
	color: var(--g-pale);
}

.pricing-feature-icon.no {
	color: var(--text-lt);
}

.pricing-cta {
	margin-top: auto;
}

.pricing-cta .btn {
	width: 100%;
	justify-content: center;
}

.featured .btn-outline {
	border-color: rgba(255, 255, 255, 0.3);
	color: #fff;
}

.featured .btn-outline:hover {
	background: rgba(255, 255, 255, 0.1);
}

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

/* ── Setup fee callout ───────────────────────────────── */
.setup-callout {
	background: var(--sand-30);
	border: 1px solid var(--sand);
	border-radius: var(--r-lg);
	padding: 28px 32px;
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-top: 40px;
}

.setup-callout-icon {
	font-size: 2rem;
	flex-shrink: 0;
}

.setup-callout h4 {
	font-size: 1rem;
	margin-bottom: 8px;
}

.setup-callout p {
	font-size: 0.875rem;
	color: var(--text-mid);
	line-height: 1.7;
}

.setup-callout p + p {
	margin-top: 8px;
}

/* ── FAQ ─────────────────────────────────────────────── */
#faq {
	background: var(--surface);
}

.faq-grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 64px;
	align-items: start;
}

.faq-sidebar h2 {
	margin-bottom: 16px;
}

.faq-sidebar p {
	color: var(--text-mid);
	font-size: 0.95rem;
	line-height: 1.7;
	margin-bottom: 24px;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.faq-item {
	background: var(--white);
	border-radius: var(--r);
	border: 1px solid var(--border);
	overflow: hidden;
	transition: box-shadow 0.2s;
}

.faq-item:hover {
	box-shadow: var(--shadow-sm);
}

.faq-q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 22px;
	cursor: pointer;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--text);
	gap: 12px;
}

.faq-icon {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--g-50);
	color: var(--g);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	font-weight: 300;
	flex-shrink: 0;
	transition:
		transform 0.3s,
		background 0.2s;
}

.faq-item.open .faq-icon {
	transform: rotate(45deg);
	background: var(--g);
	color: #fff;
}

.faq-a {
	max-height: 0;
	overflow: hidden;
	font-size: 0.9rem;
	color: var(--text-mid);
	line-height: 1.75;
	transition:
		max-height 0.4s ease,
		padding 0.3s;
	padding: 0 22px;
}

.faq-item.open .faq-a {
	max-height: 300px;
	padding-bottom: 18px;
}

@media (max-width: 768px) {
	.faq-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

/* ── CTA ─────────────────────────────────────────────── */
#cta {
	background: var(--g);
	padding: 100px 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}

#cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(
			ellipse at 20% 50%,
			rgba(255, 255, 255, 0.06) 0%,
			transparent 60%
		),
		radial-gradient(
			ellipse at 80% 50%,
			rgba(255, 255, 255, 0.04) 0%,
			transparent 50%
		);
	pointer-events: none;
}

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

#cta .tag {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.2);
	margin-bottom: 20px;
}

#cta h2 {
	color: #fff;
	margin-bottom: 16px;
}

#cta p {
	color: rgba(255, 255, 255, 0.7);
	max-width: 480px;
	margin: 0 auto 40px;
	font-size: 1.05rem;
}

.cta-actions {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
}

.btn-white {
	background: #fff;
	color: var(--g);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
	background: var(--g-30);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-white-outline {
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, 0.4);
}

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

/* ── Footer ──────────────────────────────────────────── */
footer {
	background: var(--g-dark);
	padding: 60px 0 32px;
	color: rgba(255, 255, 255, 0.5);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr repeat(3, 1fr);
	gap: 48px;
	margin-bottom: 48px;
}

.footer-brand .nav-logo {
	color: #fff;
	margin-bottom: 14px;
	display: inline-flex;
}

.footer-brand p {
	font-size: 0.85rem;
	line-height: 1.7;
	max-width: 240px;
}

.footer-col h4 {
	font-size: 0.8rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.35);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 14px;
}

.footer-col ul li {
	margin-bottom: 10px;
}

.footer-col ul li a {
	font-size: 0.875rem;
	transition: color 0.2s;
}

.footer-col ul li a:hover {
	color: #fff;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 0.8rem;
}

.footer-bottom a:hover {
	color: #fff;
}

@media (max-width: 768px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 480px) {
	.footer-grid {
		grid-template-columns: 1fr;
	}
}

/* ── Splide custom ───────────────────────────────────── */
.splide__pagination__page {
	background: var(--g-pale);
}

.splide__pagination__page.is-active {
	background: var(--g);
}

.splide__arrow {
	background: var(--white);
	box-shadow: var(--shadow-sm);
}

.splide__arrow svg {
	fill: var(--g);
}

/* ── Tech strip ──────────────────────────────────────── */
.tech-strip {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 48px;
}

.tech-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-pill);
	padding: 8px 16px;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--text-mid);
	box-shadow: var(--shadow-sm);
}

.tech-badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--g);
}
