/**
 * IT-Kuhn Consulting — Custom Styles
 * Dark Theme + Amber/Gold Accent
 * WCAG 2.1 AA compliant
 *
 * Structure:
 * 1. Design Tokens
 * 2. Base & Typography
 * 3. Layout & Container
 * 4. Sections (generic)
 * 5. Hero
 * 6. Fokusbereiche
 * 7. Arbeitsweise (Steps)
 * 8. Referenzen (Testimonials)
 * 9. Kontakt
 * 10. Footer
 * 11. CTA Buttons
 * 12. Accessibility
 * 13. Responsive
 */

/* ==========================================================================
   0. Reset
   ========================================================================== */

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

/* ==========================================================================
   1. Design Tokens
   ========================================================================== */

:root {
	/* Background */
	--itk-bg-primary: #0F0F14;
	--itk-bg-secondary: #1A1A2E;
	--itk-bg-surface: #16213E;
	--itk-bg-footer: #0A0A0E;

	/* Text */
	--itk-text-primary: #FFFFFF;
	--itk-text-secondary: #E0E0E0;
	--itk-text-muted: #A0A0B0;

	/* Accent — Amber/Gold (consistent with CV branding) */
	--itk-accent: #F6AD55;
	--itk-accent-hover: #ED8936;
	--itk-accent-subtle: rgba(246, 173, 85, 0.15);

	/* Functional */
	--itk-focus-ring: 0 0 0 3px rgba(246, 173, 85, 0.5);
	--itk-border-radius: 4px;
	--itk-border-radius-lg: 6px;
	--itk-transition: 0.2s ease;

	/* Spacing */
	--itk-section-padding: 5rem 0;
	--itk-container-max: 1100px;
	--itk-container-padding: 0 2rem;
}

/* ==========================================================================
   2. Base & Typography
   ========================================================================== */

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 17px;
	background-color: var(--itk-bg-primary);
	color: var(--itk-text-primary);
	line-height: 1.7;
}

a {
	color: var(--itk-accent);
	text-decoration: none;
	transition: color var(--itk-transition);
}

a:hover {
	color: var(--itk-accent-hover);
}

.itk-accent {
	color: var(--itk-accent);
}

/* ==========================================================================
   3. Layout & Container
   ========================================================================== */

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

/* ==========================================================================
   3.5 Site Header
   ========================================================================== */

.itk-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background: rgba(15, 15, 20, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	padding: 0.75rem 0;
}

.itk-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.itk-header__logo {
	height: 36px;
	width: auto;
	filter: invert(1) brightness(2);
	flex-shrink: 0;
}

.itk-header__nav {
	display: flex;
	gap: 1.5rem;
	list-style: none;
}

.itk-header__nav a {
	color: var(--itk-text-secondary);
	font-size: 0.9rem;
	font-weight: 500;
	text-decoration: none;
	transition: color var(--itk-transition);
}

.itk-header__nav a:hover {
	color: var(--itk-accent);
}

/* Language Switcher */
.itk-lang {
	position: relative;
	flex-shrink: 0;
	display: none; /* Hidden until translations are ready */
}

.itk-lang__toggle {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: var(--itk-text-secondary);
	padding: 0.35rem 0.75rem;
	border-radius: var(--itk-border-radius);
	font-size: 0.85rem;
	font-family: inherit;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.4rem;
	transition: all var(--itk-transition);
}

.itk-lang__toggle:hover {
	border-color: var(--itk-accent);
	color: var(--itk-text-primary);
}

.itk-lang__arrow {
	font-size: 0.7rem;
}

.itk-lang__menu {
	position: absolute;
	top: 100%;
	right: 0;
	margin-top: 0.35rem;
	background: var(--itk-bg-surface);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--itk-border-radius);
	list-style: none;
	min-width: 100%;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-4px);
	transition: all var(--itk-transition);
}

.itk-lang:hover .itk-lang__menu,
.itk-lang:focus-within .itk-lang__menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.itk-lang__option {
	display: block;
	padding: 0.4rem 0.75rem;
	font-size: 0.85rem;
	color: var(--itk-text-secondary);
	white-space: nowrap;
}

.itk-lang__option:hover {
	background: var(--itk-accent-subtle);
	color: var(--itk-text-primary);
}

.itk-lang__option--active {
	color: var(--itk-accent);
	font-weight: 600;
}

/* Mobile hamburger (hidden on desktop) */
.itk-header__hamburger {
	display: none;
	background: none;
	border: none;
	color: var(--itk-text-secondary);
	font-size: 1.4rem;
	cursor: pointer;
	padding: 0.25rem;
	line-height: 1;
}

/* ==========================================================================
   4. Sections (generic)
   ========================================================================== */

.itk-section,
.itk-hero {
	scroll-margin-top: 4rem;
}

.itk-section {
	padding: var(--itk-section-padding);
}

.itk-section--alt {
	background-color: var(--itk-bg-secondary);
}

.itk-section__title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--itk-text-primary);
}

.itk-section__intro {
	color: var(--itk-text-secondary);
	font-size: 1.1rem;
	max-width: 700px;
	margin-bottom: 3rem;
}

/* ==========================================================================
   5. Hero
   ========================================================================== */

.itk-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 6rem 0 2rem;
}

.itk-hero__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	width: 100%;
}

.itk-hero__content {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.itk-hero__logo {
	display: none;
}

.itk-hero__claim {
	font-size: 2.8rem;
	font-weight: 800;
	line-height: 1.15;
	color: var(--itk-text-primary);
}

.itk-hero__subline {
	font-size: 1.2rem;
	color: var(--itk-text-secondary);
	line-height: 1.6;
}

.itk-hero__subline strong {
	color: var(--itk-accent);
	font-weight: 600;
}

.itk-hero__bio {
	font-size: 0.95rem;
	color: var(--itk-text-muted);
	line-height: 1.6;
}

.itk-hero__ctas {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 0.5rem;
}

.itk-hero__trust {
	margin-top: 0.5rem;
	font-size: 0.85rem;
	color: var(--itk-text-muted);
}

.itk-hero__illustration {
	display: block;
	width: 100%;
	max-width: 520px;
	justify-self: end;
	align-self: center;
}

.itk-hero__illustration img {
	width: 100%;
	height: auto;
}

/* ==========================================================================
   6. Fokusbereiche
   ========================================================================== */

.itk-fokus-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-bottom: 2rem;
}

.itk-fokus-card {
	background-color: var(--itk-bg-surface);
	border-radius: var(--itk-border-radius-lg);
	padding: 2rem;
	border-top: 3px solid var(--itk-accent);
	transition: transform var(--itk-transition);
}

.itk-fokus-card:hover {
	transform: translateY(-3px);
}

.itk-fokus-card__icon {
	color: var(--itk-accent);
	margin-bottom: 0.75rem;
	line-height: 1;
}

.itk-fokus-card__icon svg {
	width: 32px;
	height: 32px;
}

.itk-fokus-card__label {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--itk-accent);
	margin-bottom: 0.5rem;
}

.itk-fokus-card__title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: var(--itk-text-primary);
}

.itk-fokus-card__trigger {
	font-style: italic;
	font-size: 0.9rem;
	color: var(--itk-text-muted);
	margin-bottom: 0.75rem;
}

.itk-fokus-card__text {
	color: var(--itk-text-secondary);
	font-size: 0.95rem;
}

/* ==========================================================================
   7. Arbeitsweise (Steps)
   ========================================================================== */

.itk-steps {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.5rem;
}

.itk-step {
	display: flex;
	gap: 1.25rem;
}

.itk-step__number {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--itk-accent);
	line-height: 1;
	min-width: 3rem;
}

.itk-step__title {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 0.4rem;
	color: var(--itk-text-primary);
}

.itk-step__text {
	color: var(--itk-text-secondary);
	font-size: 0.95rem;
}

/* ==========================================================================
   7b. Über mich (About)
   ========================================================================== */

.itk-about__inner {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 3rem;
	align-items: center;
}

.itk-about__photo {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.itk-about__name {
	margin-top: 0.75rem;
	font-size: 0.9rem;
	color: var(--itk-text-secondary);
	font-weight: 500;
	text-align: center;
}

.itk-about__photo img {
	width: 100%;
	height: auto;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	object-position: top;
	border: 3px solid var(--itk-accent);
}

.itk-about__content {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.itk-about__statement {
	color: var(--itk-text-secondary);
	font-size: 1.05rem;
	line-height: 1.7;
	font-style: italic;
}

/* Tree / network-line design */
.itk-about__tree {
	display: flex;
	flex-direction: column;
	gap: 0;
	position: relative;
	padding-left: 1.5rem;
	border-left: 2px solid var(--itk-accent);
}

.itk-about__node {
	position: relative;
	padding: 0.45rem 0 0.45rem 1.25rem;
}

.itk-about__node::before {
	content: '';
	position: absolute;
	left: -2px;
	top: 50%;
	width: 1.25rem;
	height: 2px;
	background: var(--itk-accent);
}

.itk-about__node::after {
	content: '';
	position: absolute;
	left: calc(1.25rem - 2px);
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	background: var(--itk-accent);
	border-radius: 50%;
}

.itk-about__label {
	color: var(--itk-text-secondary);
	font-size: 0.9rem;
	padding-left: 0.75rem;
}

/* MTO nodes */
.itk-about__node--mto {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.itk-about__mto-label {
	color: var(--itk-accent);
	font-weight: 600;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding-left: 0.75rem;
	min-width: 6rem;
}

.itk-about__mto-detail {
	color: var(--itk-text-muted);
	font-size: 0.85rem;
}

/* Personal interests */
.itk-about__interests {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.5rem 0 0.25rem 0.75rem;
	margin-left: 1.25rem;
	position: relative;
}

.itk-about__interests::before {
	content: '';
	position: absolute;
	left: -1.5rem;
	top: 50%;
	width: 1.25rem;
	height: 2px;
	background: var(--itk-accent);
}

.itk-about__interests::after {
	content: '';
	position: absolute;
	left: calc(1.25rem - 1.5rem);
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	background: var(--itk-accent);
	border-radius: 50%;
}

.itk-about__interests-label {
	font-size: 0.8rem;
	color: var(--itk-text-muted);
	font-weight: 500;
	white-space: nowrap;
	margin-right: 0.25rem;
}

.itk-about__interest {
	color: var(--itk-accent);
	opacity: 0.6;
	transition: opacity var(--itk-transition);
}

.itk-about__interest:hover {
	opacity: 1;
}

.itk-about__interest svg {
	width: 20px;
	height: 20px;
}

/* ==========================================================================
   8. Referenzen (Testimonials)
   ========================================================================== */

.itk-testimonials {
	display: flex;
	gap: 2rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.itk-testimonials::-webkit-scrollbar {
	display: none;
}

.itk-testimonial {
	flex: 0 0 calc((100% - 4rem) / 3);
	scroll-snap-align: start;
	background-color: var(--itk-bg-surface);
	border-left: 3px solid var(--itk-accent);
	padding: 2rem;
	border-radius: var(--itk-border-radius-lg);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/* Carousel dot indicators */
.itk-carousel-dots {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 2rem;
}

.itk-carousel-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	border: none;
	padding: 0;
	cursor: pointer;
	transition: background var(--itk-transition);
}

.itk-carousel-dot--active,
.itk-carousel-dot:hover {
	background: var(--itk-accent);
}

/* Carousel wrapper + arrows */
.itk-carousel-wrapper {
	position: relative;
}

.itk-carousel-arrow {
	display: flex;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(15, 15, 20, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: var(--itk-text-secondary);
	width: 42px;
	height: 42px;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all var(--itk-transition);
	z-index: 2;
	font-size: 1.2rem;
	line-height: 1;
	padding: 0;
}

.itk-carousel-arrow:hover {
	background: var(--itk-accent);
	color: var(--itk-bg-primary);
	border-color: var(--itk-accent);
}

.itk-carousel-arrow--prev {
	left: -1.25rem;
}

.itk-carousel-arrow--next {
	right: -1.25rem;
}

.itk-testimonial > div:first-child {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.itk-testimonial__tag {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--itk-accent);
	margin-bottom: 0.75rem;
}

.itk-testimonial__narrative {
	font-size: 0.95rem;
	color: var(--itk-text-secondary);
	margin-bottom: 1.5rem;
	line-height: 1.7;
	flex-grow: 1;
}

.itk-testimonial__narrative em {
	display: block;
	margin-top: 0.75rem;
	color: var(--itk-text-muted);
	font-size: 0.9rem;
}

.itk-testimonial__author {
	color: var(--itk-accent);
	font-weight: 600;
	font-size: 0.9rem;
}

.itk-testimonial__role {
	color: var(--itk-text-muted);
	font-size: 0.85rem;
	line-height: 1.4;
}

.itk-testimonial__footer {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.itk-testimonial__photo {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--itk-accent);
	flex-shrink: 0;
}

/* ==========================================================================
   9. Kontakt
   ========================================================================== */

.itk-contact {
	text-align: center;
	padding: 4rem 0;
}

.itk-contact__title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.itk-contact__text {
	color: var(--itk-text-secondary);
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
}

.itk-contact__ctas {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.itk-contact__trust {
	margin-top: 0.75rem;
	font-size: 0.85rem;
	color: var(--itk-text-muted);
}

/* ==========================================================================
   10. Footer
   ========================================================================== */

.itk-footer {
	background-color: var(--itk-bg-footer);
	padding: 3rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.itk-footer__inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 2rem;
}

.itk-footer__brand {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
}

.itk-footer__logo {
	height: 60px;
	width: auto;
	filter: invert(1) brightness(2);
	opacity: 0.7;
	flex-shrink: 0;
}

.itk-footer__company {
	color: var(--itk-text-secondary);
	font-size: 0.9rem;
	line-height: 1.8;
}

.itk-footer__company strong {
	color: var(--itk-text-primary);
	font-size: 1rem;
}

.itk-footer__links {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	text-align: right;
}

.itk-footer__links a {
	color: var(--itk-text-muted);
	font-size: 0.9rem;
}

.itk-footer__links a:hover {
	color: var(--itk-accent);
}

/* ==========================================================================
   11. CTA Buttons
   ========================================================================== */

.itk-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.8rem 1.8rem;
	border: 2px solid var(--itk-accent);
	color: var(--itk-accent);
	background: transparent;
	border-radius: var(--itk-border-radius);
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: all var(--itk-transition);
	cursor: pointer;
}

.itk-cta:hover {
	background-color: var(--itk-accent);
	color: var(--itk-bg-primary);
}

.itk-cta--filled {
	background-color: var(--itk-accent);
	color: var(--itk-bg-primary);
}

.itk-cta--filled:hover {
	background-color: var(--itk-accent-hover);
}

/* ==========================================================================
   12. Accessibility
   ========================================================================== */

a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
	outline: none;
	box-shadow: var(--itk-focus-ring);
}

/* Skip link (keyboard navigation) */
.itk-skip-link {
	position: absolute;
	top: -100%;
	left: 0;
	background: var(--itk-accent);
	color: var(--itk-bg-primary);
	padding: 0.5rem 1rem;
	z-index: 9999;
	font-weight: 600;
}

.itk-skip-link:focus {
	top: 0;
}

/* Screen reader only */
.itk-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ==========================================================================
   13. Legal Pages (Impressum, Datenschutz, AGB)
   ========================================================================== */

.itk-legal-page {
	padding: var(--itk-section-padding);
	padding-top: 6rem;
}

.itk-legal-content {
	max-width: 800px;
}

.itk-legal-content h1 {
	margin-bottom: 2rem;
}

.itk-legal-content h2 {
	font-size: 1.4rem;
	margin-top: 2.5rem;
	margin-bottom: 0.75rem;
	color: var(--itk-accent);
}

.itk-legal-content h3 {
	font-size: 1.15rem;
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
	color: var(--itk-text-primary);
}

.itk-legal-content strong {
	color: var(--itk-text-primary);
}

.itk-legal-content p,
.itk-legal-content ul,
.itk-legal-content ol {
	color: var(--itk-text-secondary);
	margin-bottom: 1rem;
	line-height: 1.8;
}

.itk-legal-content ul,
.itk-legal-content ol {
	padding-left: 1.5rem;
}

.itk-legal-content a {
	color: var(--itk-accent);
}

/* ==========================================================================
   14. Scroll-to-Top Button
   ========================================================================== */

.itk-scroll-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	z-index: 40;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(15, 15, 20, 0.85);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: var(--itk-text-secondary);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	line-height: 1;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: all 0.3s ease;
}

.itk-scroll-top--visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.itk-scroll-top:hover {
	background: var(--itk-accent);
	color: var(--itk-bg-primary);
	border-color: var(--itk-accent);
}

/* ==========================================================================
   15. Responsive
   ========================================================================== */

@media (max-width: 900px) {
	/* Header: hide nav, show hamburger */
	.itk-header__nav {
		display: none;
	}

	.itk-header__nav--open {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(15, 15, 20, 0.97);
		padding: 1rem 2rem;
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
		gap: 0.75rem;
	}

	.itk-header__hamburger {
		display: block;
	}

	/* Hero */
	.itk-hero__inner {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.itk-hero__illustration {
		max-width: 380px;
		justify-self: center;
		order: -1;
	}

	.itk-hero__ctas {
		justify-content: center;
	}

	.itk-hero__claim {
		font-size: 2.2rem;
	}

	/* Fokusbereiche */
	.itk-fokus-grid {
		grid-template-columns: 1fr;
	}

	/* Arbeitsweise */
	.itk-steps {
		grid-template-columns: 1fr;
	}

	/* About */
	.itk-about__inner {
		grid-template-columns: 1fr;
		justify-items: center;
	}

	.itk-about__content {
		width: 100%;
	}

	.itk-about__photo {
		max-width: 150px;
	}

	.itk-about__statement {
		text-align: center;
	}

	.itk-about__tree {
		padding-left: 1rem;
	}

	.itk-about__node {
		padding: 0.4rem 0 0.4rem 0.75rem;
	}

	.itk-about__node::before {
		width: 0.75rem;
		top: 1rem;
	}

	.itk-about__node::after {
		left: calc(0.75rem - 2px);
		top: 1rem;
	}

	.itk-about__label {
		padding-left: 0.5rem;
	}

	.itk-about__interests {
		margin-left: 0.75rem;
		padding-left: 0.5rem;
	}

	.itk-about__interests::before {
		left: -1rem;
		width: 0.75rem;
	}

	.itk-about__interests::after {
		left: calc(0.75rem - 1rem);
	}

	/* Testimonial carousel: 2 visible */
	.itk-testimonial {
		flex: 0 0 calc((100% - 2rem) / 2);
	}

	.itk-carousel-dots {
		display: flex;
	}

	.itk-carousel-arrow {
		display: flex;
	}

	/* Footer */
	.itk-footer__inner {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.itk-footer__brand {
		flex-direction: column;
		align-items: center;
	}

	.itk-footer__links {
		text-align: center;
		flex-direction: row;
		justify-content: center;
		gap: 1.5rem;
	}

}

@media (max-width: 480px) {
	:root {
		--itk-section-padding: 3rem 0;
	}

	.itk-hero__claim {
		font-size: 1.8rem;
	}

	.itk-hero__subline {
		font-size: 1rem;
	}

	.itk-section__title {
		font-size: 1.6rem;
	}

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

	.itk-hero__ctas,
	.itk-contact__ctas {
		flex-direction: column;
	}

	/* About: tighter tree on small screens */
	.itk-about__node--mto {
		flex-direction: column;
		gap: 0.15rem;
	}

	.itk-about__node--mto::before,
	.itk-about__node--mto::after {
		top: 1rem;
	}

	.itk-about__mto-detail {
		padding-left: 0.75rem;
	}

	/* Testimonial carousel: 1 visible */
	.itk-testimonial {
		flex: 0 0 100%;
	}
}
