/*
Theme Name: IT-Bridge Onepager
Theme URI: https://it-bridge.at
Author: IT-Bridge
Description: Lightweight premium B2B onepager for IT-Bridge.
Version: 1.0.0
Text Domain: it-bridge
*/

:root {
	--color-ink: #17202a;
	--color-muted: #5d6b78;
	--color-line: #dfe6ec;
	--color-soft: #f5f8fa;
	--color-deep: #0b2338;
	--color-teal: #1aa6a6;
	--color-amber: #d97732;
	--color-white: #ffffff;
	--shadow-soft: 0 18px 48px rgba(11, 35, 56, 0.12);
	--max-width: 1160px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-white);
	color: var(--color-ink);
	font-family: Inter, Helvetica, Arial, sans-serif;
	font-size: 17px;
	line-height: 1.62;
	letter-spacing: 0;
}

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

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

.site-shell {
	overflow: hidden;
}

.container {
	margin: 0 auto;
	max-width: var(--max-width);
	padding: 0 22px;
}

.site-header {
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid rgba(223, 230, 236, 0.82);
	left: 0;
	position: sticky;
	right: 0;
	top: 0;
	z-index: 20;
}

.header-inner {
	align-items: center;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	min-height: 72px;
}

.brand {
	align-items: center;
	display: inline-flex;
	font-weight: 760;
	gap: 12px;
	letter-spacing: 0;
}

.brand-mark {
	align-items: center;
	display: inline-grid;
	grid-template-columns: 9px 30px 9px;
	height: 24px;
	width: 54px;
}

.brand-mark::before,
.brand-mark::after {
	background: var(--color-teal);
	border-radius: 999px;
	content: "";
	height: 9px;
	width: 9px;
}

.brand-mark span {
	background: linear-gradient(90deg, var(--color-teal), var(--color-amber));
	display: block;
	height: 2px;
}

.nav {
	align-items: center;
	display: none;
	gap: 20px;
	font-size: 14px;
	font-weight: 650;
	color: #41505d;
}

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

.button {
	align-items: center;
	background: var(--color-amber);
	border: 0;
	border-radius: 6px;
	color: var(--color-white);
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-size: 15px;
	font-weight: 760;
	gap: 10px;
	justify-content: center;
	min-height: 48px;
	padding: 13px 19px;
	transition: background 0.18s ease, transform 0.18s ease;
}

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

.button.secondary {
	background: var(--color-deep);
}

.button.secondary:hover {
	background: #14334f;
}

.hero {
	min-height: calc(100vh - 72px);
	padding: 54px 0 34px;
	position: relative;
}

.hero-grid {
	align-items: center;
	display: grid;
	gap: 34px;
}

.eyebrow {
	color: var(--color-teal);
	font-size: 13px;
	font-weight: 780;
	letter-spacing: 0.08em;
	margin: 0 0 14px;
	text-transform: uppercase;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1 {
	color: var(--color-deep);
	font-size: clamp(42px, 8vw, 82px);
	letter-spacing: 0;
	line-height: 0.98;
	margin-bottom: 22px;
	max-width: 830px;
}

h2 {
	color: var(--color-deep);
	font-size: clamp(32px, 5vw, 54px);
	letter-spacing: 0;
	line-height: 1.05;
	margin-bottom: 18px;
}

h3 {
	color: var(--color-deep);
	font-size: 21px;
	line-height: 1.2;
	margin-bottom: 8px;
}

.lead {
	color: #394958;
	font-size: clamp(19px, 2.8vw, 25px);
	line-height: 1.42;
	margin-bottom: 30px;
	max-width: 720px;
}

.hero-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.hero-note {
	color: var(--color-muted);
	font-size: 14px;
}

.hero-visual {
	aspect-ratio: 16 / 10;
	border: 1px solid rgba(223, 230, 236, 0.9);
	border-radius: 8px;
	box-shadow: var(--shadow-soft);
	overflow: hidden;
	position: relative;
}

.hero-visual img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.hero-visual::after {
	background: linear-gradient(90deg, rgba(255,255,255,0.34), rgba(255,255,255,0));
	content: "";
	inset: 0;
	position: absolute;
}

.section {
	padding: 76px 0;
}

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

.section.dark {
	background: var(--color-deep);
	color: var(--color-white);
}

.section.dark h2,
.section.dark h3 {
	color: var(--color-white);
}

.section.dark .lead,
.section.dark p {
	color: #d6e1ea;
}

.split {
	display: grid;
	gap: 34px;
}

.text-block {
	max-width: 720px;
}

.pain-list,
.outcome-list,
.benefit-list {
	display: grid;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.pain-list li,
.outcome-list li,
.benefit-list li {
	align-items: flex-start;
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: 8px;
	display: flex;
	gap: 12px;
	padding: 14px 16px;
}

.section.dark .outcome-list li {
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(255, 255, 255, 0.16);
}

.check {
	color: var(--color-teal);
	flex: 0 0 auto;
	font-weight: 900;
}

.message {
	border-left: 4px solid var(--color-teal);
	color: var(--color-deep);
	font-size: 22px;
	font-weight: 760;
	line-height: 1.35;
	margin: 28px 0 0;
	padding-left: 18px;
}

.cards {
	display: grid;
	gap: 18px;
	margin-top: 34px;
}

.method-card,
.person-card,
.price-box {
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: 8px;
	padding: 24px;
}

.method-index {
	align-items: center;
	background: #e9f7f7;
	border-radius: 999px;
	color: #086f73;
	display: inline-flex;
	font-size: 13px;
	font-weight: 820;
	height: 34px;
	justify-content: center;
	margin-bottom: 16px;
	width: 34px;
}

.quote {
	border-left: 4px solid var(--color-amber);
	color: var(--color-deep);
	font-size: clamp(25px, 4vw, 38px);
	font-weight: 740;
	line-height: 1.22;
	margin: 0;
	padding-left: 22px;
}

.quote cite {
	color: var(--color-muted);
	display: block;
	font-size: 16px;
	font-style: normal;
	font-weight: 650;
	margin-top: 18px;
}

.target-line {
	color: var(--color-deep);
	font-size: clamp(26px, 4vw, 42px);
	font-weight: 780;
	line-height: 1.16;
	margin: 0;
	max-width: 880px;
}

.price-box {
	box-shadow: var(--shadow-soft);
	max-width: 520px;
}

.price {
	color: var(--color-deep);
	font-size: clamp(48px, 8vw, 76px);
	font-weight: 830;
	letter-spacing: 0;
	line-height: 1;
	margin-bottom: 12px;
}

.price-sub {
	color: var(--color-muted);
	font-size: 18px;
	margin-bottom: 22px;
}

.reframe {
	background: #fff7ed;
	border: 1px solid #f3d3b7;
	border-radius: 8px;
	color: #70400f;
	font-weight: 690;
	padding: 16px;
}

.duo-grid {
	display: grid;
	gap: 18px;
	margin-top: 30px;
}

.person-card {
	min-height: 180px;
	position: relative;
}

.person-role {
	color: var(--color-teal);
	font-weight: 780;
	margin-bottom: 10px;
}

.person-card::after {
	background: linear-gradient(180deg, var(--color-teal), var(--color-amber));
	border-radius: 999px;
	content: "";
	height: 46px;
	position: absolute;
	right: 24px;
	top: 24px;
	width: 4px;
}

.contact-panel {
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: 8px;
	box-shadow: var(--shadow-soft);
	padding: 22px;
}

.form-grid {
	display: grid;
	gap: 16px;
}

.field label {
	color: var(--color-deep);
	display: block;
	font-size: 14px;
	font-weight: 730;
	margin-bottom: 6px;
}

.field input,
.field textarea {
	background: #fbfcfd;
	border: 1px solid #cfd9e2;
	border-radius: 6px;
	color: var(--color-ink);
	font: inherit;
	min-height: 48px;
	padding: 11px 12px;
	width: 100%;
}

.field textarea {
	min-height: 132px;
	resize: vertical;
}

.privacy-check {
	align-items: flex-start;
	color: #465562;
	display: flex;
	font-size: 14px;
	gap: 10px;
}

.privacy-check input {
	margin-top: 5px;
}

.privacy-check a {
	color: var(--color-deep);
	font-weight: 760;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.form-status {
	border-radius: 6px;
	font-weight: 700;
	margin-bottom: 16px;
	padding: 12px 14px;
}

.form-status.success {
	background: #eaf8f3;
	color: #0d6b53;
}

.form-status.error {
	background: #fff1f1;
	color: #9a1f1f;
}

.hp-field {
	display: none;
}

.site-footer {
	background: #111820;
	color: #d7dee5;
	padding: 34px 0;
}

.footer-inner {
	display: grid;
	gap: 24px;
}

.footer-links,
.footer-contacts {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
}

.footer-links a {
	color: var(--color-white);
	font-weight: 700;
}

.small {
	color: #97a5b1;
	font-size: 14px;
}

@media (min-width: 760px) {
	.nav {
		display: flex;
	}

	.hero-grid,
	.split {
		grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
	}

	.cards {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.duo-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.contact-panel {
		padding: 34px;
	}

	.footer-inner {
		align-items: start;
		grid-template-columns: 1fr auto;
	}
}

@media (max-width: 759px) {
	.header-inner {
		min-height: 64px;
	}

	.header-inner .button {
		display: none;
	}

	.hero {
		min-height: auto;
		padding-top: 42px;
	}

	.section {
		padding: 58px 0;
	}

	.pain-list li,
	.outcome-list li,
	.benefit-list li,
	.method-card,
	.person-card,
	.price-box {
		padding: 18px;
	}
}
