/* ============================================
   ITčko — Style CSS
   Components, sections, animations, decorations
   Aesthetic: "Quiet Authority" (dark v2)
   ============================================ */

/* ---- Buttons ---- */

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-body);
	font-size: 0.92rem;
	font-weight: 600;
	padding: 13px 28px;
	border-radius: var(--radius-sm);
	border: none;
	cursor: pointer;
	transition: all 0.3s var(--ease-out);
}

.btn--primary {
	color: var(--bg-deep);
	background: var(--amber);
}

.btn--primary:hover {
	background: var(--amber-soft);
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(245, 158, 11, 0.2);
}

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

.btn--ghost:hover {
	color: var(--text-primary);
	border-color: var(--border-hover);
	background: rgba(94, 128, 170, 0.04);
	transform: translateY(-2px);
}

.btn--blue {
	color: #fff;
	background: var(--blue);
}

.btn--blue:hover {
	background: #3b7af0;
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(37, 99, 235, 0.2);
}

.btn-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-body);
	font-size: 0.87rem;
	font-weight: 600;
	transition: all 0.2s ease;
}

.pillar-card > .btn-link {
	margin-top: auto;
}

.btn-link--blue { color: var(--blue-soft); }
.btn-link--amber { color: var(--amber); }
.btn-link--teal { color: var(--teal); }
.btn-link--red { color: var(--red); }

.btn-link .arrow {
	transition: transform 0.2s var(--ease-spring);
	font-size: 1.1em;
}

.btn-link:hover .arrow {
	transform: translateX(4px);
}

/* ============================================
   GEOMETRIC DECORATIONS
   ============================================ */

.geo {
	position: absolute;
	pointer-events: none;
	z-index: 1;
}

.geo--ring {
	width: 260px;
	height: 260px;
	border: 1px solid rgba(37, 99, 235, 0.08);
	border-radius: 50%;
	animation: geoSpin 60s linear infinite;
}

.geo--ring::after {
	content: '';
	position: absolute;
	top: -3px;
	left: 50%;
	width: 6px;
	height: 6px;
	background: var(--blue);
	border-radius: 50%;
	box-shadow: 0 0 12px rgba(37, 99, 235, 0.4);
}

.geo--diamond {
	width: 80px;
	height: 80px;
	border: 1px solid rgba(245, 158, 11, 0.1);
	transform: rotate(45deg);
	animation: geoPulse 8s ease-in-out infinite;
}

.geo--crosshair {
	width: 40px;
	height: 40px;
}

.geo--crosshair::before,
.geo--crosshair::after {
	content: '';
	position: absolute;
	background: rgba(20, 184, 166, 0.15);
}

.geo--crosshair::before {
	width: 100%;
	height: 1px;
	top: 50%;
}

.geo--crosshair::after {
	width: 1px;
	height: 100%;
	left: 50%;
}

@keyframes geoSpin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

@keyframes geoPulse {
	0%, 100% { opacity: 0.4; transform: rotate(45deg) scale(1); }
	50% { opacity: 0.8; transform: rotate(45deg) scale(1.08); }
}

/* ---- Animated gradient borders ---- */

.glow-border {
	position: relative;
}

.glow-border::after {
	content: '';
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(135deg, var(--blue), var(--amber), var(--teal), var(--blue));
	background-size: 300% 300%;
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.5s var(--ease-out);
	animation: gradientShift 6s ease-in-out infinite;
}

.glow-border:hover::after {
	opacity: 1;
}

@keyframes gradientShift {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

/* ============================================
   COLOR ACCENT BAR
   ============================================ */

.accent-bar {
	height: 3px;
	background: linear-gradient(90deg,
		var(--blue) 0%,
		var(--blue) 25%,
		var(--amber) 25%,
		var(--amber) 50%,
		var(--teal) 50%,
		var(--teal) 75%,
		var(--red) 75%,
		var(--red) 100%
	);
	opacity: 0.7;
}

/* ============================================
   TRUST STRIP
   ============================================ */

.trust-strip {
	padding: 20px 0;
	background: var(--bg);
	border-bottom: 1px solid var(--border);
	overflow: hidden;
}

.trust-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
}

.trust-item {
	font-family: var(--font-mono);
	font-size: 0.68rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--text-faint);
	display: flex;
	align-items: center;
	gap: 8px;
	transition: color 0.3s ease;
}

.trust-item:hover {
	color: var(--text-muted);
}

.trust-dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--text-faint);
}

.trust-dot--blue { background: var(--blue); }
.trust-dot--amber { background: var(--amber); }
.trust-dot--teal { background: var(--teal); }
.trust-dot--red { background: var(--red); }

/* ============================================
   ANGLED SECTION DIVIDERS
   ============================================ */

.angle-divider {
	height: 48px;
	position: relative;
	overflow: hidden;
}

.angle-divider--to-deep {
	background: var(--bg);
}

.angle-divider--to-deep::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: -5%;
	width: 110%;
	height: 100%;
	background: var(--bg-deep);
	transform-origin: bottom right;
	transform: skewY(-1.2deg);
}

.angle-divider--to-raised {
	background: var(--bg-deep);
}

.angle-divider--to-raised::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: -5%;
	width: 110%;
	height: 100%;
	background: var(--bg);
	transform-origin: bottom left;
	transform: skewY(1.2deg);
}

/* ============================================
   SECTION SYSTEM
   ============================================ */

.section {
	padding: 100px 0;
	position: relative;
}

.section--raised {
	background: var(--bg);
}

.section--deep {
	background: var(--bg-deep);
}

.section-label {
	font-family: var(--font-mono);
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-faint);
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.section-label::before {
	content: '';
	width: 16px;
	height: 1px;
	background: var(--text-faint);
}

.section-header {
	margin-bottom: 60px;
}

.section-header h2 {
	margin-bottom: 14px;
}

.section-header p {
	max-width: 500px;
}

.section-header--center {
	text-align: center;
}

.section-header--center .section-label {
	justify-content: center;
}

.section-header--center .section-label::before {
	display: none;
}

.section-header--center p {
	margin-left: auto;
	margin-right: auto;
}

/* ---- Vertical connector ---- */

.section-connector {
	display: flex;
	justify-content: center;
	padding: 4px 0;
	background: var(--bg);
}

.section-connector--deep {
	background: var(--bg-deep);
}

.section-connector .line {
	width: 1px;
	height: 56px;
	background: linear-gradient(to bottom, var(--border), var(--border-hover), var(--border));
}

/* ============================================
   HERO
   ============================================ */

.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	padding: 120px 0 80px;
	overflow: hidden;
	background: var(--bg-deep);
}

.hero-atmosphere {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.hero-atmosphere .orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
}

.hero-atmosphere .orb--blue {
	width: 500px;
	height: 500px;
	top: -10%;
	right: -5%;
	background: rgba(37, 99, 235, 0.08);
	animation: orbit1 20s ease-in-out infinite;
}

.hero-atmosphere .orb--amber {
	width: 350px;
	height: 350px;
	bottom: 5%;
	left: 5%;
	background: rgba(245, 158, 11, 0.04);
	animation: orbit2 25s ease-in-out infinite;
}

.hero-atmosphere .orb--teal {
	width: 250px;
	height: 250px;
	top: 40%;
	right: 20%;
	background: rgba(20, 184, 166, 0.04);
	animation: orbit3 18s ease-in-out infinite;
}

@keyframes orbit1 {
	0%, 100% { transform: translate(0, 0); }
	25% { transform: translate(-30px, 20px); }
	50% { transform: translate(-50px, 40px); }
	75% { transform: translate(-20px, 10px); }
}

@keyframes orbit2 {
	0%, 100% { transform: translate(0, 0); }
	33% { transform: translate(30px, -20px); }
	66% { transform: translate(15px, -40px); }
}

@keyframes orbit3 {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(-20px, 25px); }
}

/* Hero grid pattern */
.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	opacity: 0.025;
	background-image:
		linear-gradient(rgba(148,168,196,0.6) 1px, transparent 1px),
		linear-gradient(90deg, rgba(148,168,196,0.6) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
	-webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 780px;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-mono);
	font-size: 0.73rem;
	font-weight: 500;
	color: var(--text-muted);
	letter-spacing: 0.08em;
	margin-bottom: 28px;
	opacity: 0;
	animation: enter 0.7s var(--ease-out) forwards;
}

.hero-eyebrow .line {
	width: 28px;
	height: 1px;
	background: linear-gradient(90deg, var(--amber), transparent);
}

.hero h1 {
	margin-bottom: 24px;
	opacity: 0;
	animation: enter 0.7s var(--ease-out) 0.1s forwards;
}

.hero h1 .gradient {
	background: linear-gradient(135deg, var(--amber-soft) 0%, var(--amber) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: clamp(1.05rem, 1.8vw, 1.18rem);
	font-weight: 400;
	line-height: 1.75;
	color: var(--text-secondary);
	max-width: 580px;
	margin-bottom: 40px;
	opacity: 0;
	animation: enter 0.7s var(--ease-out) 0.2s forwards;
}

.hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 56px;
	opacity: 0;
	animation: enter 0.7s var(--ease-out) 0.3s forwards;
}

.hero-certs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	opacity: 0;
	animation: enter 0.7s var(--ease-out) 0.42s forwards;
}

.cert {
	font-family: var(--font-mono);
	font-size: 0.7rem;
	font-weight: 500;
	color: var(--text-faint);
	letter-spacing: 0.04em;
	padding: 5px 12px;
	border: 1px solid var(--border);
	border-radius: 5px;
	transition: all 0.3s ease;
}

.cert:hover {
	color: var(--text-muted);
	border-color: var(--border-hover);
}

@keyframes enter {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   PILLAR CARDS
   ============================================ */

.pillar-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.pillar-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 36px 28px;
	overflow: hidden;
	transition: all 0.4s var(--ease-out);
}

.pillar-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 24px;
	right: 24px;
	height: 2px;
	border-radius: 0 0 2px 2px;
	opacity: 0.5;
	transition: all 0.4s var(--ease-out);
}

.pillar-card--blue::before { background: var(--blue); }
.pillar-card--amber::before { background: var(--amber); }
.pillar-card--teal::before { background: var(--teal); }
.pillar-card--red::before { background: var(--red); }

.pillar-card:hover {
	transform: translateY(-6px);
	background: var(--bg-card-hover);
	border-color: transparent;
}

.pillar-card:hover::before {
	left: 0;
	right: 0;
	opacity: 1;
}

.pillar-card--blue:hover {
	box-shadow:
		0 20px 50px rgba(37, 99, 235, 0.12),
		0 0 0 1px rgba(37, 99, 235, 0.18),
		inset 0 0 40px rgba(37, 99, 235, 0.03);
}

.pillar-card--amber:hover {
	box-shadow:
		0 20px 50px rgba(245, 158, 11, 0.1),
		0 0 0 1px rgba(245, 158, 11, 0.18),
		inset 0 0 40px rgba(245, 158, 11, 0.02);
}

.pillar-card--teal:hover {
	box-shadow:
		0 20px 50px rgba(20, 184, 166, 0.1),
		0 0 0 1px rgba(20, 184, 166, 0.18),
		inset 0 0 40px rgba(20, 184, 166, 0.02);
}

.pillar-card--red:hover {
	box-shadow:
		0 20px 50px rgba(239, 68, 68, 0.1),
		0 0 0 1px rgba(239, 68, 68, 0.18),
		inset 0 0 40px rgba(239, 68, 68, 0.02);
}

.pillar-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	margin-bottom: 22px;
}

.pillar-icon--blue { background: var(--blue-dim); color: var(--blue-soft); }
.pillar-icon--amber { background: var(--amber-dim); color: var(--amber); }
.pillar-icon--teal { background: var(--teal-dim); color: var(--teal); }
.pillar-icon--red { background: var(--red-dim); color: var(--red); }

.pillar-card h3 {
	margin-bottom: 10px;
}

.pillar-card > p {
	font-size: 0.93rem;
	line-height: 1.72;
	margin-bottom: 22px;
}

/* ============================================
   QUOTE
   ============================================ */

.quote-section {
	padding: 32px 0;
}

.quote-block {
	position: relative;
	padding: 44px 0 44px 36px;
}

.quote-block::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	border-radius: 3px;
	background: linear-gradient(to bottom, var(--blue), var(--amber), var(--teal));
}

.quote-block::after {
	content: '\201C';
	position: absolute;
	top: 20px;
	right: 0;
	font-family: var(--font-display);
	font-size: 8rem;
	font-weight: 800;
	line-height: 1;
	color: var(--bg-card);
	pointer-events: none;
}

.quote-block p {
	font-family: var(--font-display);
	font-size: clamp(1.25rem, 2.5vw, 1.65rem);
	font-weight: 500;
	color: var(--text-primary);
	line-height: 1.55;
	letter-spacing: -0.01em;
	position: relative;
	z-index: 1;
}

.quote-block .em {
	background: linear-gradient(135deg, var(--amber-soft), var(--amber));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ---- Cascade flow infographic ---- */

.cascade-flow {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
	padding: 48px 0 16px;
}

.cascade-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	min-width: 120px;
	position: relative;
}

.cascade-step__icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(37, 99, 235, 0.08);
	border: 2px solid rgba(37, 99, 235, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--blue-soft);
	transition: all 0.3s var(--ease-out);
}

.cascade-step:hover .cascade-step__icon {
	background: rgba(37, 99, 235, 0.15);
	border-color: var(--blue-soft);
	transform: scale(1.08);
}

.cascade-step--trigger .cascade-step__icon {
	background: rgba(245, 158, 11, 0.08);
	border-color: rgba(245, 158, 11, 0.25);
	color: var(--amber);
}

.cascade-step--trigger:hover .cascade-step__icon {
	background: rgba(245, 158, 11, 0.15);
	border-color: var(--amber);
}

.cascade-step--done .cascade-step__icon {
	background: rgba(13, 148, 136, 0.08);
	border-color: rgba(13, 148, 136, 0.25);
	color: var(--teal);
}

.cascade-step--done:hover .cascade-step__icon {
	background: rgba(13, 148, 136, 0.15);
	border-color: var(--teal);
}

.cascade-step__label {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.88rem;
	color: var(--text-primary);
	margin: 0;
}

.cascade-step__desc {
	font-size: 0.78rem;
	color: var(--text-muted);
	margin: 0;
	text-align: center;
	line-height: 1.4;
}

.cascade-quorum {
	display: inline-block;
	margin-top: 4px;
	font-family: var(--font-mono);
	font-size: 0.65rem;
	color: var(--amber);
	background: rgba(245, 158, 11, 0.1);
	border: 1px solid rgba(245, 158, 11, 0.2);
	border-radius: 10px;
	padding: 2px 8px;
	letter-spacing: 0.03em;
}

.cascade-arrow {
	display: flex;
	align-items: center;
	padding-top: 14px;
	min-width: 40px;
}

.cascade-arrow span {
	display: block;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, var(--border-hover), var(--blue-soft));
	position: relative;
	border-radius: 1px;
}

.cascade-arrow span::after {
	content: '';
	position: absolute;
	right: -1px;
	top: -4px;
	border: 5px solid transparent;
	border-left: 6px solid var(--blue-soft);
}

@media (max-width: 768px) {
	.cascade-flow {
		flex-direction: column;
		align-items: center;
		gap: 0;
	}

	.cascade-step {
		min-width: auto;
	}

	.cascade-arrow {
		padding-top: 0;
		min-width: auto;
		height: 32px;
		width: 2px;
	}

	.cascade-arrow span {
		width: 2px;
		height: 100%;
		background: linear-gradient(180deg, var(--border-hover), var(--blue-soft));
	}

	.cascade-arrow span::after {
		right: auto;
		top: auto;
		bottom: -1px;
		left: -4px;
		border: 5px solid transparent;
		border-left: 5px solid transparent;
		border-top: 6px solid var(--blue-soft);
		border-right: 5px solid transparent;
	}
}

/* ---- Feature list ---- */

.feature-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 48px;
}

.feature-list li {
	padding: 20px 0 20px 44px;
	position: relative;
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.55;
	border-bottom: 1px solid var(--border);
	transition: color 0.25s var(--ease-out);
}

.feature-list li:hover {
	color: var(--text-primary);
}

.feature-list li:nth-last-child(-n+2) {
	border-bottom: none;
}

.feature-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 22px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(37, 99, 235, 0.1);
	border: 1px solid rgba(37, 99, 235, 0.2);
}

.feature-list li::after {
	content: '✓';
	position: absolute;
	left: 7px;
	top: 25px;
	color: var(--blue-soft);
	font-weight: 700;
	font-size: 0.85rem;
}

@media (max-width: 640px) {
	.feature-list {
		grid-template-columns: 1fr;
	}
	.feature-list li:nth-last-child(2) {
		border-bottom: 1px solid var(--border);
	}
	.feature-list li:last-child {
		border-bottom: none;
	}
}

/* ============================================
   RESULTS / STATS
   ============================================ */

.results-layout {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 80px;
	align-items: start;
}

.results-left h2 {
	margin-bottom: 16px;
}

.results-left > p {
	margin-bottom: 48px;
}

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

.stat {
	position: relative;
	padding-top: 16px;
}

.stat::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 28px;
	height: 2px;
	border-radius: 2px;
}

.stat--blue::before { background: var(--blue); }
.stat--amber::before { background: var(--amber); }
.stat--teal::before { background: var(--teal); }

.stat-number {
	font-family: var(--font-display);
	font-size: 2.6rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1;
	margin-bottom: 4px;
	color: var(--text-primary);
}

.stat-label {
	font-size: 0.84rem;
	color: var(--text-muted);
	line-height: 1.4;
}

.info-block {
	margin-bottom: 8px;
}

.info-heading {
	font-family: var(--font-mono);
	font-size: 0.68rem;
	font-weight: 500;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--text-faint);
	margin-bottom: 16px;
}

.sector-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.sector-list li {
	font-size: 0.95rem;
	color: var(--text-secondary);
	padding-left: 18px;
	position: relative;
}

.sector-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 5px;
	height: 5px;
	border: 1.5px solid var(--blue-soft);
	border-radius: 50%;
	transform: translateY(-50%);
}

.tech-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.tech-tag {
	font-family: var(--font-mono);
	font-size: 0.73rem;
	font-weight: 500;
	color: var(--text-muted);
	padding: 5px 13px;
	background: rgba(94, 128, 170, 0.05);
	border: 1px solid var(--border);
	border-radius: 5px;
	transition: all 0.25s ease;
}

.tech-tag:hover {
	color: var(--text-secondary);
	border-color: var(--border-hover);
	background: rgba(94, 128, 170, 0.08);
}

/* ============================================
   CASE STUDY CARDS
   ============================================ */

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

.case-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 32px 26px;
	transition: all 0.4s var(--ease-out);
	display: flex;
	flex-direction: column;
}

.case-card:hover {
	transform: translateY(-5px);
	border-color: var(--border-hover);
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.case-metric {
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid var(--border);
}

.case-metric-value {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.case-metric-value--blue { color: var(--blue-soft); }
.case-metric-value--amber { color: var(--amber); }
.case-metric-value--teal { color: var(--teal); }
.case-metric-value--red { color: var(--red); }

.case-metric-label {
	font-size: 0.8rem;
	color: var(--text-muted);
}

.case-sector {
	font-family: var(--font-mono);
	font-size: 0.66rem;
	font-weight: 500;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 4px;
	display: inline-block;
	margin-bottom: 16px;
	width: fit-content;
}

.case-sector--blue {
	color: var(--blue-soft);
	background: var(--blue-dim);
}

.case-sector--amber {
	color: var(--amber);
	background: var(--amber-dim);
}

.case-sector--teal {
	color: var(--teal);
	background: var(--teal-dim);
}

.case-sector--red {
	color: var(--red);
	background: var(--red-dim);
}

.case-card h3 {
	font-size: 1.12rem;
	margin-bottom: 10px;
}

.case-card > p {
	font-size: 0.9rem;
	line-height: 1.72;
	flex: 1;
}

.case-actions {
	margin-top: 36px;
	text-align: center;
}

/* ============================================
   WHY US CARDS
   ============================================ */

.why-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.why-card {
	display: flex;
	gap: 18px;
	padding: 26px;
	padding-left: 28px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	transition: all 0.35s var(--ease-out);
	position: relative;
	overflow: hidden;
}

.why-card::before {
	content: '';
	position: absolute;
	left: 0;
	top: 20%;
	bottom: 20%;
	width: 2px;
	border-radius: 2px;
	transition: all 0.35s var(--ease-out);
}

.why-card:nth-child(1)::before,
.why-card:nth-child(3)::before { background: var(--blue); }
.why-card:nth-child(2)::before,
.why-card:nth-child(4)::before { background: var(--amber); }

.why-card:hover {
	background: var(--bg-card-hover);
	border-color: var(--border-hover);
	transform: translateY(-3px);
}

.why-card:hover::before {
	top: 0;
	bottom: 0;
}

.why-icon {
	width: 40px;
	height: 40px;
	min-width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
}

.why-icon--blue { background: var(--blue-dim); color: var(--blue-soft); }
.why-icon--amber { background: var(--amber-dim); color: var(--amber); }
.why-icon--teal { background: var(--teal-dim); color: var(--teal); }
.why-icon--red { background: var(--red-dim); color: var(--red); }

.why-card h4 {
	margin-bottom: 6px;
}

.why-card p {
	font-size: 0.9rem;
	line-height: 1.65;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
	padding: 100px 0 108px;
	text-align: center;
	position: relative;
	background: var(--bg);
	border-top: 1px solid var(--border);
	overflow: hidden;
}

.cta::before {
	content: '';
	position: absolute;
	width: 600px;
	height: 400px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: radial-gradient(ellipse, rgba(245,158,11,0.05) 0%, rgba(37,99,235,0.03) 50%, transparent 70%);
	pointer-events: none;
}

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

.cta h2 {
	margin-bottom: 32px;
}

.cta-subtitle {
	font-size: 1.1rem;
	margin-bottom: 36px;
	color: var(--text-secondary);
}

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}

/* ============================================
   CONTENT PAGES — Service pages, blog, etc.
   ============================================ */

.page-hero {
	padding: 140px 0 60px;
	background: var(--bg-deep);
	position: relative;
	overflow: hidden;
}

.page-hero--compact {
	padding: 140px 0 40px;
}

.page-hero--compact h1 {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.page-hero h1 {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 16px;
}

.page-hero-subtitle {
	font-size: 1.1rem;
	color: var(--text-secondary);
	max-width: 600px;
	line-height: 1.7;
}

.content-section,
.content-block {
	padding: 0;
}

.content-section h2,
.content-block h2 {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-top: 48px;
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--border);
}

.content-section h2:first-child,
.content-block h2:first-child {
	margin-top: 0;
}

.content-section h3,
.content-block h3 {
	margin-top: 32px;
	margin-bottom: 12px;
}

.content-section p,
.content-block p {
	color: var(--text-secondary);
	margin-bottom: 16px;
	line-height: 1.75;
	font-size: 0.95rem;
}

.content-section ul,
.content-block ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 24px;
}

.content-section ul li,
.content-block ul li {
	color: var(--text-secondary);
	font-size: 0.9rem;
	padding: 10px 0 10px 20px;
	line-height: 1.6;
	border-bottom: 1px solid var(--border);
	position: relative;
}

.content-section ul li:last-child,
.content-block ul li:last-child {
	border-bottom: none;
}

.content-section ul li::before,
.content-block ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 16px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--border-hover);
}

.content-section ol,
.content-block ol {
	list-style: none;
	padding-left: 0;
	margin-bottom: 24px;
	counter-reset: legal-counter;
}

.content-section ol li,
.content-block ol li {
	color: var(--text-secondary);
	font-size: 0.9rem;
	padding: 10px 0 10px 36px;
	line-height: 1.6;
	border-bottom: 1px solid var(--border);
	position: relative;
	counter-increment: legal-counter;
}

.content-section ol li:last-child,
.content-block ol li:last-child {
	border-bottom: none;
}

.content-section ol li::before,
.content-block ol li::before {
	content: counter(legal-counter) '.';
	position: absolute;
	left: 0;
	top: 10px;
	font-family: var(--font-mono);
	font-size: 0.8rem;
	color: var(--blue-soft);
	font-weight: 600;
}

.content-section a,
.content-block a {
	color: var(--blue-soft);
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color 0.2s ease;
}

.content-section a:hover,
.content-block a:hover {
	color: var(--amber);
}

/* Service sub-page card grids */
.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin: 32px 0;
}

/* ============================================
   PROCESS / STEPS COMPONENT
   ============================================ */

.process-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
	counter-reset: step;
}

.process-step {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 28px 24px;
	counter-increment: step;
	position: relative;
}

.process-step::before {
	content: counter(step, decimal-leading-zero);
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 800;
	color: var(--border-hover);
	line-height: 1;
	margin-bottom: 16px;
	display: block;
}

.process-step h3 {
	margin-bottom: 8px;
}

.process-step p {
	font-size: 0.9rem;
	line-height: 1.65;
}

/* ============================================
   BLOG
   ============================================ */

.blog-count {
	display: inline-block;
	font-family: var(--font-mono);
	font-size: 0.72rem;
	color: var(--text-faint);
	letter-spacing: 0.06em;
	margin-top: 16px;
	padding: 5px 14px;
	border: 1px solid var(--border);
	border-radius: 100px;
}

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

.blog-card {
	display: flex;
	flex-direction: column;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: all 0.35s var(--ease-out);
	text-decoration: none;
	color: inherit;
}

.blog-card:hover {
	transform: translateY(-4px);
	border-color: var(--border-accent);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.blog-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform 0.5s var(--ease-out);
}

.blog-card:hover img {
	transform: scale(1.03);
}

.blog-card__body {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.blog-card__date {
	font-family: var(--font-mono);
	font-size: 0.7rem;
	color: var(--text-faint);
	margin-bottom: 8px;
	letter-spacing: 0.03em;
}

.blog-card__title {
	margin-bottom: 8px;
	font-size: 1.05rem;
	color: var(--text-primary);
	flex: 1;
}

.blog-card__excerpt {
	font-size: 0.88rem;
	line-height: 1.65;
	color: var(--text-secondary);
}

/* Blog post body */
.blog-content {
	max-width: 780px;
	margin: 0 auto;
	padding: 48px 24px 80px;
}

.blog-content h1 {
	font-size: clamp(1.8rem, 3.5vw, 2.4rem);
	margin-bottom: 16px;
}

.blog-content h2 {
	font-size: 1.5rem;
	margin-top: 40px;
	margin-bottom: 14px;
}

.blog-content h3 {
	font-size: 1.2rem;
	margin-top: 28px;
	margin-bottom: 10px;
}

.blog-content p {
	margin-bottom: 18px;
	line-height: 1.8;
}

.blog-content ul,
.blog-content ol {
	list-style: disc;
	padding-left: 24px;
	margin-bottom: 18px;
}

.blog-content li {
	color: var(--text-secondary);
	margin-bottom: 6px;
	line-height: 1.7;
}

.blog-content img {
	max-width: 100%;
	height: auto;
	border-radius: var(--radius-sm);
	margin: 24px 0;
}

.blog-content pre {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 20px;
	overflow-x: auto;
	margin: 24px 0;
	font-family: var(--font-mono);
	font-size: 0.88rem;
	line-height: 1.6;
	color: var(--text-secondary);
}

.blog-content code {
	font-family: var(--font-mono);
	font-size: 0.9em;
	background: var(--bg-card);
	padding: 2px 6px;
	border-radius: 4px;
	color: var(--amber);
}

.blog-content pre code {
	background: none;
	padding: 0;
	color: inherit;
}

.blog-content a {
	color: var(--blue-soft);
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color 0.2s ease;
}

.blog-content a:hover {
	color: var(--amber);
}

.blog-content blockquote {
	border-left: 3px solid var(--blue);
	padding-left: 20px;
	margin: 24px 0;
	color: var(--text-secondary);
	font-style: italic;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

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

.reveal-children > * {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.reveal-children.visible > * {
	opacity: 1;
	transform: translateY(0);
}

.reveal-children.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-children.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-children.visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-children.visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-children.visible > *:nth-child(5) { transition-delay: 0.32s; }

/* ---- Contact Page ---- */

.contact-duo {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
	max-width: 800px;
	margin: 0 auto;
}

.contact-card {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-md);
	background: var(--bg-card);
	border: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
	border-color: var(--border-hover);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.contact-card-accent {
	height: 3px;
}

.contact-card-accent--blue { background: linear-gradient(90deg, var(--blue), var(--blue-soft)); }
.contact-card-accent--amber { background: linear-gradient(90deg, var(--amber), var(--amber-soft)); }

.contact-card-body {
	padding: 36px 32px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.contact-card-body .btn {
	margin-top: auto;
	align-self: flex-start;
}

.contact-card-icon {
	width: 52px;
	height: 52px;
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.contact-card-icon--blue {
	background: var(--blue-dim);
	color: var(--blue-soft);
}

.contact-card-icon--amber {
	background: var(--amber-dim);
	color: var(--amber-soft);
}

.contact-card h3 {
	margin-bottom: 10px;
}

.contact-card p {
	font-size: 0.92rem;
	line-height: 1.6;
}

.contact-detail {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: 18px;
	margin-bottom: 28px;
}

.contact-link {
	font-family: var(--font-mono);
	font-size: 0.88rem;
	color: var(--text-muted);
	transition: color 0.2s ease;
}

.contact-link:hover {
	color: var(--text-primary);
}

.contact-link--primary {
	font-size: 1rem;
	font-weight: 500;
	color: var(--text-primary);
}

.contact-hours {
	margin-top: 14px;
	font-size: 0.78rem !important;
	color: var(--text-faint) !important;
	font-family: var(--font-mono);
	letter-spacing: 0.02em;
}

/* ---- Billing Grid ---- */

.billing-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1.3fr;
	gap: 24px;
}

.billing-card {
	padding: 24px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
}

.billing-label {
	font-family: var(--font-mono);
	font-size: 0.63rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--text-faint);
	margin-bottom: 12px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--border);
}

.billing-value {
	font-size: 0.9rem;
	line-height: 1.7;
}

/* ============================================
   RESPONSIVE — Components
   ============================================ */

@media (max-width: 1024px) {
	.pillar-grid,
	.case-grid {
		grid-template-columns: 1fr;
		max-width: 500px;
	}

	.results-layout {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.why-grid {
		grid-template-columns: 1fr;
		max-width: 520px;
	}

	.contact-duo {
		grid-template-columns: 1fr;
		max-width: 460px;
	}

	.billing-grid {
		grid-template-columns: 1fr;
		max-width: 400px;
	}
}

@media (max-width: 768px) {
	.geo { display: none; }
	.trust-inner { gap: 20px; justify-content: flex-start; padding: 0 24px; }
	.trust-item { font-size: 0.62rem; }
	.angle-divider { height: 32px; }

	.hero {
		min-height: auto;
		padding: 130px 0 72px;
	}

	.hero-actions {
		flex-direction: column;
	}

	.hero-actions .btn {
		text-align: center;
		justify-content: center;
	}

	.section { padding: 64px 0; }

	.stats-row {
		grid-template-columns: repeat(3, 1fr);
		gap: 14px;
	}

	.stat-number { font-size: 1.9rem; }

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	h1 { font-size: 2.2rem; }

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

@media (max-width: 480px) {
	h1 { font-size: 2rem; }
	.cert { font-size: 0.64rem; padding: 4px 8px; }
	.hero-certs { gap: 5px; }

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

/* ============================================
   PAGINATION
   ============================================ */

.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--border);
}

.pagination__link,
.pagination__current {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: var(--radius-sm);
	font-family: var(--font-mono);
	font-size: 0.82rem;
	font-weight: 500;
	transition: all 0.2s ease;
}

.pagination__link {
	color: var(--text-muted);
	border: 1px solid var(--border);
}

.pagination__link:hover {
	color: var(--text-primary);
	border-color: var(--border-hover);
	background: var(--bg-card);
}

.pagination__current {
	color: var(--bg-deep);
	background: var(--blue);
	border: 1px solid var(--blue);
}

.pagination__ellipsis {
	color: var(--text-faint);
	padding: 0 4px;
}
