/* ============ FurnStream marketing site ============ */

@font-face {
	font-family: 'Sora';
	font-style: normal;
	font-weight: 100 800;
	src: url('../fonts/sora-latin.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}
@font-face {
	font-family: 'Sora';
	font-style: normal;
	font-weight: 100 800;
	src: url('../fonts/sora-latin-ext.woff2') format('woff2');
	unicode-range: U+0100-02BA, U+1E00-1EFF;
}

:root {
	--teal-dark: #0e7c86;
	--teal-mid: #14a3ad;
	--teal-light: #54c6cc;
	--navy: #10202b;
	--navy-2: #16293a;
	--paper: #ffffff;
	--soft: #eef7f8;
	--ink: #22333d;
	--gray: #5c6b74;
	--line: #dbe7e9;
	--grad: linear-gradient(90deg, var(--teal-dark), var(--teal-mid), var(--teal-light));
	--radius: 18px;
	--shadow: 0 12px 40px rgba(16, 32, 43, .10);
	--shadow-lg: 0 24px 70px rgba(16, 32, 43, .16);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	font-family: 'Sora', -apple-system, sans-serif;
	color: var(--ink);
	background: var(--paper);
	line-height: 1.65;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
}

.container { width: min(1160px, 92vw); margin: 0 auto; }
.container.narrow { width: min(760px, 92vw); }

h1, h2, h3 { color: var(--navy); letter-spacing: -0.02em; line-height: 1.15; }
h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); font-weight: 700; margin-bottom: 18px; }
h3 { font-size: 1.15rem; font-weight: 600; }

.grad-text {
	background: var(--grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.kicker {
	display: inline-block;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--teal-mid);
	margin-bottom: 14px;
}
.kicker.light { color: var(--teal-light); }

.lead { font-size: 1.12rem; color: var(--gray); max-width: 60ch; }

.section { padding: 110px 0; }
[id] { scroll-margin-top: 90px; }

/* ---------- Reveal on scroll ---------- */
.reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity .7s ease, transform .7s cubic-bezier(.22, .8, .3, 1);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: inherit;
	font-weight: 600;
	font-size: .95rem;
	border-radius: 999px;
	padding: 13px 26px;
	text-decoration: none;
	border: 0;
	cursor: pointer;
	transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
	position: relative;
	overflow: hidden;
}
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(5px); }
.btn-primary {
	background: var(--grad);
	background-size: 160% 100%;
	color: #fff;
	box-shadow: 0 8px 24px rgba(20, 163, 173, .35);
}
.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 32px rgba(20, 163, 173, .45);
	background-position: 100% 0;
}
.btn-primary::after {
	content: "";
	position: absolute;
	top: 0; left: -80%;
	width: 50%; height: 100%;
	background: linear-gradient(105deg, transparent, rgba(255,255,255,.35), transparent);
	transform: skewX(-20deg);
	transition: left .6s ease;
}
.btn-primary:hover::after { left: 130%; }
.btn-ghost {
	color: var(--teal-light);
	border: 1.5px solid rgba(84, 198, 204, .5);
	background: rgba(84, 198, 204, .06);
}
.btn-ghost:hover { border-color: var(--teal-light); background: rgba(84, 198, 204, .14); transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 100;
	background: rgba(16, 32, 43, .72);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	transition: background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { background: rgba(16, 32, 43, .94); box-shadow: 0 8px 30px rgba(0,0,0,.25); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }

.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark { width: 34px; height: 34px; }
.brand-name { font-size: 1.3rem; font-weight: 600; letter-spacing: -0.03em; color: #fff; }
.brand-name em { font-style: normal; color: var(--teal-light); }
.brand:hover .bar-1 { animation: barSlide .6s ease; }
.brand:hover .bar-2 { animation: barSlide .6s ease .08s; }
.brand:hover .bar-3 { animation: barSlide .6s ease .16s; }
@keyframes barSlide {
	0% { transform: translateX(0); }
	40% { transform: translateX(5px); }
	100% { transform: translateX(0); }
}

.main-nav { display: flex; gap: 30px; }
.main-nav a {
	color: #c7d6dc;
	text-decoration: none;
	font-size: .92rem;
	font-weight: 500;
	position: relative;
	padding: 4px 0;
}
.main-nav a::after {
	content: "";
	position: absolute;
	left: 0; bottom: -2px;
	width: 100%; height: 2px;
	border-radius: 2px;
	background: var(--grad);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .3s ease;
}
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: #fff; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; border-radius: 2px; background: #fff; margin: 5px 0; transition: transform .3s ease, opacity .3s ease; }

/* ---------- Hero ---------- */
.hero {
	position: relative;
	background: radial-gradient(1200px 700px at 75% -10%, #1b3a4a 0%, var(--navy) 55%);
	color: #fff;
	padding: 170px 0 0;
	overflow: hidden;
}
.hero-glow {
	position: absolute;
	width: 560px; height: 560px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(20, 163, 173, .16) 0%, transparent 65%);
	pointer-events: none;
	transform: translate(-50%, -50%);
	top: 30%; left: 60%;
	transition: top 1.2s cubic-bezier(.2,.8,.3,1), left 1.2s cubic-bezier(.2,.8,.3,1);
}
.hero-streams { position: absolute; inset: 0; pointer-events: none; }
.stream {
	position: absolute;
	height: 8px;
	border-radius: 6px;
	background: var(--grad);
	opacity: .16;
	animation: streamFlow 9s linear infinite;
}
.stream.s1 { width: 180px; top: 18%; animation-duration: 11s; }
.stream.s2 { width: 120px; top: 34%; animation-duration: 14s; animation-delay: -4s; }
.stream.s3 { width: 240px; top: 55%; animation-duration: 10s; animation-delay: -7s; }
.stream.s4 { width: 90px; top: 70%; animation-duration: 16s; animation-delay: -2s; }
.stream.s5 { width: 150px; top: 84%; animation-duration: 13s; animation-delay: -9s; }
@keyframes streamFlow {
	from { left: -260px; }
	to { left: 110%; }
}

.hero-inner {
	position: relative;
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 60px;
	align-items: center;
	padding-bottom: 90px;
}
.hero-badge {
	display: inline-block;
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--teal-light);
	border: 1px solid rgba(84, 198, 204, .4);
	border-radius: 999px;
	padding: 7px 16px;
	margin-bottom: 26px;
}
.hero h1 {
	font-size: clamp(2.2rem, 5vw, 3.6rem);
	font-weight: 700;
	color: #fff;
	margin-bottom: 22px;
}
.hero-sub { font-size: 1.15rem; color: #b8ccd2; max-width: 52ch; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 38px; }
.hero-usps { list-style: none; display: flex; gap: 26px; flex-wrap: wrap; }
.hero-usps li { font-size: .88rem; color: #9fb5bd; display: flex; align-items: center; gap: 8px; }
.hero-usps li::before {
	content: "";
	width: 9px; height: 9px;
	border-radius: 3px;
	background: var(--grad);
	flex: none;
}
.hero-usps strong { color: #fff; font-weight: 600; }

/* Hero mock cards */
.hero-visual { position: relative; height: 460px; }
.mock-card {
	position: absolute;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .12);
	backdrop-filter: blur(8px);
	border-radius: 16px;
	padding: 20px 22px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
	animation: floatCard 7s ease-in-out infinite;
}
.mock-quote { top: 8%; left: 4%; width: 66%; animation-delay: 0s; }
.mock-stock { top: 44%; right: 0; width: 58%; animation-delay: -2.5s; }
.mock-pay { bottom: 4%; left: 10%; width: 56%; animation-delay: -5s; }
@keyframes floatCard {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-14px); }
}
.mock-title { font-size: .85rem; font-weight: 600; color: #e6f2f4; margin-bottom: 12px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.mock-line { height: 8px; border-radius: 4px; background: rgba(255,255,255,.14); margin-bottom: 8px; }
.mock-line.w80 { width: 80%; }
.mock-line.w60 { width: 60%; }
.mock-amount { font-size: 1.5rem; font-weight: 700; color: var(--teal-light); margin-top: 10px; }
.mock-chip { font-size: .68rem; font-weight: 600; border-radius: 999px; padding: 3px 10px; white-space: nowrap; }
.mock-chip.ok { background: rgba(84, 198, 204, .18); color: var(--teal-light); }
.mock-chip.warn { display: inline-block; background: rgba(232, 163, 61, .16); color: #f0b862; margin-top: 12px; }
.mock-sign { margin-top: 8px; }
.mock-sign svg { width: 120px; height: 34px; }
.sign-path {
	stroke-dasharray: 240;
	stroke-dashoffset: 240;
	animation: signDraw 3.2s ease forwards 1s, signLoop 9s ease infinite 5s;
}
@keyframes signDraw { to { stroke-dashoffset: 0; } }
@keyframes signLoop {
	0%, 82% { stroke-dashoffset: 0; }
	90% { stroke-dashoffset: 240; }
	100% { stroke-dashoffset: 0; }
}
.mock-bars { display: flex; gap: 8px; align-items: flex-end; height: 54px; }
.mock-bars span {
	flex: 1;
	height: var(--h);
	border-radius: 5px 5px 2px 2px;
	background: linear-gradient(180deg, var(--teal-light), var(--teal-dark));
	opacity: .85;
	animation: barPulse 3.4s ease-in-out infinite;
}
.mock-bars span:nth-child(2) { animation-delay: .3s; }
.mock-bars span:nth-child(3) { animation-delay: .6s; }
.mock-bars span:nth-child(4) { animation-delay: .9s; }
.mock-bars span:nth-child(5) { animation-delay: 1.2s; }
@keyframes barPulse {
	0%, 100% { transform: scaleY(1); }
	50% { transform: scaleY(.86); }
}
.mock-pay-row { font-size: .85rem; color: #cfe2e6; display: flex; align-items: center; gap: 8px; }
.pay-dot {
	width: 10px; height: 10px;
	border-radius: 50%;
	background: var(--teal-light);
	animation: payPing 2s ease infinite;
}
@keyframes payPing {
	0% { box-shadow: 0 0 0 0 rgba(84, 198, 204, .5); }
	70% { box-shadow: 0 0 0 10px rgba(84, 198, 204, 0); }
	100% { box-shadow: 0 0 0 0 rgba(84, 198, 204, 0); }
}

/* Marquee */
.hero-marquee {
	position: relative;
	border-top: 1px solid rgba(255, 255, 255, .08);
	padding: 18px 0;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
	display: flex;
	align-items: center;
	gap: 28px;
	width: max-content;
	animation: marquee 36s linear infinite;
}
.marquee-track span { font-size: .82rem; font-weight: 500; color: #7f99a2; white-space: nowrap; letter-spacing: .04em; }
.marquee-track i { width: 7px; height: 7px; border-radius: 2px; background: var(--grad); flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Problem / stats ---------- */
.problem { text-align: center; }
.problem h2 { margin-inline: auto; }
.problem .lead { margin: 0 auto; }
.stats-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	margin-top: 64px;
}
.stat {
	background: var(--soft);
	border-radius: var(--radius);
	padding: 30px 18px;
	transition: transform .3s ease, box-shadow .3s ease;
}
.stat:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.stat-num {
	display: block;
	font-size: 2.6rem;
	font-weight: 700;
	background: var(--grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	line-height: 1.1;
}
.stat-label { font-size: .85rem; color: var(--gray); }

/* ---------- Flow ---------- */
.flow { background: var(--soft); }
.flow-track {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-top: 70px;
}
.flow-line {
	position: absolute;
	top: 26px; left: 6%; right: 6%;
	height: 4px;
	border-radius: 4px;
	background: #d4e4e6;
	overflow: hidden;
}
.flow-progress {
	display: block;
	height: 100%;
	width: 0;
	border-radius: 4px;
	background: var(--grad);
	transition: width 1.4s cubic-bezier(.25, .8, .3, 1);
}
.flow-step { position: relative; text-align: center; padding: 0 8px; }
.flow-dot {
	width: 52px; height: 52px;
	margin: 0 auto 20px;
	border-radius: 16px;
	background: #fff;
	border: 2.5px solid var(--teal-mid);
	color: var(--teal-dark);
	font-weight: 700;
	font-size: 1.15rem;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
	transition: background .4s ease, color .4s ease, transform .4s ease;
}
.flow-step:hover .flow-dot { background: var(--grad); border-color: transparent; color: #fff; transform: scale(1.1) rotate(-4deg); }
.flow-step h3 { margin-bottom: 10px; }
.flow-step p { font-size: .9rem; color: var(--gray); }

/* ---------- Platform cards ---------- */
.cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
	margin-top: 56px;
}
.p-card {
	position: relative;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 32px 28px;
	transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
	overflow: hidden;
}
.p-card::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 4px;
	background: var(--grad);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .45s ease;
}
.p-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.p-card:hover::before { transform: scaleX(1); }
.p-icon {
	width: 52px; height: 52px;
	border-radius: 15px;
	background: var(--soft);
	color: var(--teal-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
	transition: background .35s ease, color .35s ease, transform .35s ease;
}
.p-card:hover .p-icon { background: var(--grad); color: #fff; transform: rotate(-6deg) scale(1.06); }
.p-icon svg { width: 26px; height: 26px; }
.p-card h3 { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.p-card p { font-size: .92rem; color: var(--gray); }
.badge {
	font-size: .62rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--teal-dark);
	background: rgba(20, 163, 173, .12);
	border-radius: 999px;
	padding: 4px 11px;
}
.badge.soon { color: #a06a12; background: rgba(232, 163, 61, .16); }

/* ---------- Suppliers ---------- */
.suppliers-panel {
	background: radial-gradient(900px 500px at 85% 20%, #1c3d4e 0%, var(--navy) 60%);
	border-radius: 28px;
	padding: 70px 64px;
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: 50px;
	align-items: center;
	color: #c9dbe0;
	overflow: hidden;
	position: relative;
}
.suppliers-panel h2 { color: #fff; }
.suppliers-panel p { color: #b8ccd2; }
.suppliers-panel strong { color: #fff; font-weight: 600; }
.checks { list-style: none; margin: 26px 0 34px; }
.checks li {
	position: relative;
	padding-left: 34px;
	margin-bottom: 16px;
	font-size: .95rem;
}
.checks li::before {
	content: "✓";
	position: absolute;
	left: 0; top: 1px;
	width: 22px; height: 22px;
	border-radius: 7px;
	background: var(--grad);
	color: #fff;
	font-size: .75rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

.suppliers-visual { position: relative; height: 300px; }
.supply-node {
	position: absolute;
	background: rgba(255, 255, 255, .07);
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 14px;
	color: #e6f2f4;
	font-weight: 600;
	font-size: .85rem;
	padding: 12px 20px;
	backdrop-filter: blur(6px);
	animation: floatCard 6s ease-in-out infinite;
}
.supply-node.hub {
	right: 0; top: 50%;
	transform: translateY(-50%);
	padding: 18px;
	animation: none;
	box-shadow: 0 0 0 12px rgba(20, 163, 173, .07), 0 0 0 26px rgba(20, 163, 173, .04);
}
.supply-node.hub svg { width: 48px; height: 48px; display: block; }
.supply-node.n1 { left: 0; top: 4%; animation-delay: -1s; }
.supply-node.n2 { left: -4%; top: 42%; animation-delay: -3s; }
.supply-node.n3 { left: 0; top: 78%; animation-delay: -5s; }
.supply-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.supply-path {
	fill: none;
	stroke: rgba(84, 198, 204, .5);
	stroke-width: 2;
	stroke-dasharray: 6 10;
	animation: dashMove 1.6s linear infinite;
}
@keyframes dashMove { to { stroke-dashoffset: -16; } }
.supply-tag {
	position: absolute;
	right: -6px; top: 16%;
	background: var(--grad);
	color: #fff;
	font-size: .72rem;
	font-weight: 700;
	border-radius: 999px;
	padding: 6px 14px;
	box-shadow: 0 8px 20px rgba(20, 163, 173, .4);
	animation: floatCard 5s ease-in-out infinite;
}

/* ---------- Pricing ---------- */
.pricing { text-align: center; }
.pricing .lead { margin: 0 auto; }
.price-card {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 0;
	margin-top: 60px;
	border-radius: 26px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	text-align: left;
}
.price-left {
	background: radial-gradient(600px 400px at 20% 0%, #1c3d4e 0%, var(--navy) 70%);
	color: #fff;
	padding: 60px 54px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
}
.price-from { color: var(--teal-light); font-weight: 600; font-size: .95rem; }
.price-amount { font-size: 4.4rem; font-weight: 700; line-height: 1; letter-spacing: -0.03em; }
.price-cents { font-size: 2.2rem; }
.price-per { color: #9fb5bd; font-size: .92rem; margin-bottom: 30px; }
.price-right { background: #fff; padding: 60px 54px; }
.price-includes { font-weight: 600; color: var(--navy); margin-bottom: 22px; font-size: 1.05rem; }
.price-right .checks { margin: 0; }
.price-right .checks li { color: var(--ink); margin-bottom: 13px; }
.two-col-list { columns: 2; column-gap: 34px; }
.two-col-list li { break-inside: avoid; }
.price-note { margin-top: 26px; font-size: .88rem; color: var(--gray); }

/* ---------- FAQ ---------- */
.faq { background: var(--soft); }
.faq-list { margin-top: 44px; }
.faq-item {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 16px;
	margin-bottom: 14px;
	overflow: hidden;
	transition: box-shadow .3s ease;
}
.faq-item[open] { box-shadow: var(--shadow); border-color: rgba(20, 163, 173, .35); }
.faq-item summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 22px 26px;
	font-weight: 600;
	color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus {
	position: relative;
	width: 26px; height: 26px;
	border-radius: 8px;
	background: var(--soft);
	flex: none;
	transition: background .3s ease, transform .3s ease;
}
.faq-plus::before, .faq-plus::after {
	content: "";
	position: absolute;
	top: 50%; left: 50%;
	background: var(--teal-dark);
	border-radius: 2px;
	transition: background .3s ease;
}
.faq-plus::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.faq-plus::after { width: 2px; height: 12px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-plus { background: var(--grad); transform: rotate(45deg); }
.faq-item[open] .faq-plus::before, .faq-item[open] .faq-plus::after { background: #fff; }
.faq-item p { padding: 0 26px 24px; color: var(--gray); font-size: .95rem; }

/* ---------- Contact ---------- */
.contact {
	background: radial-gradient(1100px 600px at 15% 0%, #1b3a4a 0%, var(--navy) 60%);
	color: #c9dbe0;
}
.contact-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
	align-items: start;
}
.contact h2 { color: #fff; }
.contact-points { list-style: none; margin: 30px 0; }
.contact-points li { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: .95rem; }
.cp-icon {
	width: 24px; height: 24px;
	border-radius: 8px;
	background: var(--grad);
	color: #fff;
	font-size: .72rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
}
.contact-direct { margin-top: 34px; font-size: 1rem; }
.contact-direct a { color: var(--teal-light); text-decoration: none; font-weight: 600; border-bottom: 1px solid rgba(84, 198, 204, .4); padding-bottom: 2px; }
.contact-direct a:hover { border-color: var(--teal-light); }

.contact-form {
	background: #fff;
	border-radius: 22px;
	padding: 40px 38px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label {
	display: block;
	font-size: .82rem;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 7px;
}
.form-field .optional { color: var(--gray); font-weight: 400; }
.form-field input, .form-field select, .form-field textarea {
	width: 100%;
	font-family: inherit;
	font-size: .93rem;
	color: var(--ink);
	background: var(--soft);
	border: 1.5px solid transparent;
	border-radius: 12px;
	padding: 13px 16px;
	outline: none;
	transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
	resize: vertical;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
	border-color: var(--teal-mid);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(20, 163, 173, .12);
}
.form-field input.invalid { border-color: #d66; background: #fff5f5; }
.form-hint { margin-top: 16px; font-size: .8rem; color: var(--gray); text-align: center; }
.form-hint.success { color: var(--teal-dark); font-weight: 600; }

/* ---------- Honeypot (hidden from humans, visible to bots) ---------- */
.hp-field {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* ---------- Error pages ---------- */
.error-page {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(900px 500px at 50% 0%, #1b3a4a 0%, var(--navy) 60%);
	padding: 24px;
}
.error-card {
	background: #fff;
	border-radius: 22px;
	padding: 50px 46px;
	text-align: center;
	max-width: 420px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}
.error-card .brand-mark { width: 44px; height: 44px; margin-bottom: 18px; }
.error-card h1 { font-size: 1.5rem; margin-bottom: 10px; }
.error-card p { color: var(--gray); margin-bottom: 24px; }

/* ---------- Footer ---------- */
.site-footer { background: #0b1720; color: #7f99a2; padding: 60px 0 40px; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1fr .8fr; gap: 40px; align-items: start; }
.footer-brand .brand-mark { width: 30px; height: 30px; }
.footer-brand { display: block; }
.footer-brand .brand-name { display: inline-block; margin-left: 10px; vertical-align: middle; }
.footer-brand p { margin-top: 14px; font-size: .85rem; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: #9fb5bd; text-decoration: none; font-size: .88rem; }
.footer-nav a:hover { color: var(--teal-light); }
.footer-meta { display: flex; flex-direction: column; gap: 8px; font-size: .82rem; }

/* ---------- Floating CTA ---------- */
.floating-cta {
	position: fixed;
	right: 22px; bottom: 22px;
	z-index: 90;
	background: var(--grad);
	color: #fff;
	font-weight: 600;
	font-size: .88rem;
	text-decoration: none;
	border-radius: 999px;
	padding: 14px 24px;
	box-shadow: 0 14px 36px rgba(20, 163, 173, .45);
	opacity: 0;
	transform: translateY(16px);
	pointer-events: none;
	transition: opacity .4s ease, transform .4s ease;
}
.floating-cta.show { opacity: 1; transform: none; pointer-events: auto; }
.floating-cta:hover { transform: translateY(-3px); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
	.hero-inner { grid-template-columns: 1fr; gap: 40px; }
	.hero-visual { height: 400px; max-width: 520px; }
	.cards-grid { grid-template-columns: repeat(2, 1fr); }
	.flow-track { grid-template-columns: repeat(2, 1fr); gap: 44px 26px; }
	.flow-line { display: none; }
	.suppliers-panel { grid-template-columns: 1fr; padding: 50px 36px; }
	.suppliers-visual { height: 280px; max-width: 420px; }
	.price-card { grid-template-columns: 1fr; }
	.contact-inner { grid-template-columns: 1fr; gap: 50px; }
	.footer-inner { grid-template-columns: 1fr 1fr; }
	.stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
	.section { padding: 80px 0; }
	.main-nav {
		position: absolute;
		top: 100%; left: 0; right: 0;
		background: #10202b;
		flex-direction: column;
		gap: 0;
		padding: 10px 0 20px;
		visibility: hidden;
		opacity: 0;
		transform: translateY(-12px);
		transition: transform .3s ease, opacity .3s ease, visibility 0s linear .3s;
		box-shadow: 0 20px 40px rgba(0,0,0,.4);
		z-index: 99;
	}
	.main-nav.open { visibility: visible; opacity: 1; transform: none; transition-delay: 0s; }
	.main-nav a { padding: 14px 8vw; font-size: 1.05rem; }
	.nav-toggle { display: block; }
	.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
	.nav-toggle.open span:nth-child(2) { opacity: 0; }
	.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
	.header-actions .btn { display: none; }
	.hero { padding-top: 130px; }
	.hero-visual { height: 380px; }
	.mock-quote { width: 88%; }
	.mock-stock { width: 78%; }
	.mock-pay { width: 74%; }
	.cards-grid { grid-template-columns: 1fr; }
	.flow-track { grid-template-columns: 1fr; }
	.two-col-list { columns: 1; }
	.form-row { grid-template-columns: 1fr; gap: 0; }
	.price-left, .price-right { padding: 44px 30px; }
	.contact-form { padding: 30px 24px; }
	.footer-inner { grid-template-columns: 1fr; }
}

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