:root {
	--gold: #c89b57;
	--gold-dark: #b8863d;
	--text: #2f2b27;
	--muted: #6d675f;
	--bg: #fcf8f3;
	--white: #fff;
	--shadow: 0 15px 40px rgba(0, 0, 0, .08);
	--radius: 18px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	font-family: 'Inter', sans-serif;
	color: var(--text);
	background: linear-gradient(#fff, #faf5ef);
	line-height: 1.6;
}

img {
	max-width: 100%;
	display: block
}

a {
	text-decoration: none;
	color: inherit
}

.container {
	width: min(1600px, 92%);
	margin: auto;
}

/* HEADER */
.header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: rgba(255, 255, 255, .92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 90px;
}

.logo h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.3rem;
	letter-spacing: 2px;
}

.logo span {
	font-size: .75rem;
	color: var(--muted);
	letter-spacing: 2px;
}

.nav ul {
	list-style: none;
	display: flex;
	gap: 38px;
}

.nav a {
	font-size: .92rem;
	font-weight: 500;
	transition: .25s;
}

.nav a:hover {
	color: var(--gold);
}

.btn {
	padding: 14px 24px;
	border-radius: 10px;
	display: inline-block;
	transition: .3s;
	font-weight: 600;
}

.gold {
	background: var(--gold);
	color: #fff;
}

.gold:hover {
	background: var(--gold-dark);
	transform: translateY(-2px);
}

.white {
	border: 1px solid #ddd;
	background: #fff;
}

.white:hover {
	box-shadow: var(--shadow);
}

.hamburger {
	display: none;
	background: none;
	border: none;
	font-size: 2rem;
	cursor: pointer;
}

/* Pagination */

.page-nav:disabled {
	opacity: .4;
	cursor: not-allowed;
}

.page-dots {
	padding: 0 10px;
	color: #999;
	font-weight: 600;
}

/* HERO */
.hero {
	padding: 70px 0;
	background: url('../img/licensing/header-licensing.png') no-repeat center;
	background-size: cover;
}

.hero-text {
	margin-top: 160px;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
	align-items: center;
}

.eyebrow {
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: .8rem;
	margin-bottom: 20px;
}

.hero h1 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 4rem;
	line-height: 1.05;
	margin-bottom: 25px;
}

.hero h1 span {
	color: var(--gold);
}

.lead {
	max-width: 600px;
	color: var(--muted);
	margin-bottom: 35px;
}

.buttons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.hero-image {
	position: relative;
}

.hero-image img {
	border-radius: 28px;
	box-shadow: var(--shadow);
}

.license-badge {
	position: absolute;
	right: -25px;
	bottom: 30px;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: #fff;
	border: 6px solid #f2e5d3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow);
}

.license-badge strong {
	font-family: 'Cormorant Garamond', serif;
	color: var(--gold);
	font-size: 3rem;
}

.license-badge span {
	text-align: center;
	text-transform: uppercase;
	font-size: .7rem;
	letter-spacing: 1px;
}

/* Form */
.success-message {
	margin-top: 25px;
	padding: 18px 24px;
	border-radius: 10px;
	background: #eef9f1;
	border: 1px solid #8bc48f;
	color: #2d6a35;
}

.error-message {
	margin-top: 25px;
	padding: 18px 24px;
	border-radius: 10px;
	background: #fff2f2;
	border: 1px solid #d85b5b;
	color: #a32020;
}

/* About */
.licensing-values,
.licensing-brand {
	padding: 90px 8%;
	background: #faf8f6;
}

.licensing-values:nth-child(even),
.licensing-brand:nth-child(even) {
	background: #fff;
}

.licensing-values-inner,
.licensing-brand-inner {
	max-width: 850px;
	margin: auto;
}

.section-label {
	display: inline-block;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #bf9364;
	font-size: 13px;
	margin-bottom: 20px;
}

.licensing-values h2,
.licensing-brand h2 {
	font-size: 42px;
	margin-bottom: 25px;
	line-height: 120%;
}

.licensing-values p,
.licensing-brand p {
	line-height: 1.9;
	margin-bottom: 18px;
	color: #555;
}

.highlight {
	padding: 25px;
	border-left: 4px solid #bf9364;
	background: #fff;
	font-weight: 500;
}

.info-card {
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 22px;
	border-radius: 28px;
	background: #fff;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
	transition:
		transform .35s ease,
		box-shadow .35s ease,
		border-color .35s ease;
	border: 1px solid transparent;
}

.info-card img {
	width: 110px;
	height: 110px;
	object-fit: cover;
	border-radius: 18px;
	transition: .35s;
}

.info-content {
	flex: 1;
}

.info-content h3 {
	margin-bottom: 10px;
}

.info-content p {
	color: #666;
	line-height: 1.6;
}

.info-arrow {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #faf7f2;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #b88650;
	font-size: 20px;
	transition: .35s;
}

.info-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 28px 60px rgba(184, 134, 80, .18);
	border-color: #d9b27b;
}

.info-card:hover img {
	transform: scale(1.05);
}

.info-card:hover .info-arrow {
	background: #b88650;
	color: #fff;
	transform: translateX(8px);
}

.info-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 4px;
	height: 100%;
	border-radius: 30px 0 0 30px;
	background: #b88650;
	transform: scaleY(0);
	transition: .35s;
}

.info-card {
	position: relative;
	overflow: hidden;
}

.info-card:hover::before {
	transform: scaleY(1);
}

.info-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 4px;
	height: 100%;
	border-radius: 30px 0 0 30px;
	background: #b88650;
	transform: scaleY(0);
	transition: .35s;
}

.info-card {
	position: relative;
	overflow: hidden;
}

.info-card:hover::before {
	transform: scaleY(1);
}

.partner-principles {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 35px;
	padding: 90px 8%;
}

.principle {
	text-align: center;
	background: #fff;
	padding: 40px 30px;
	border-radius: 16px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.principle .icon {
	width: 80px;
	height: 80px;
	background: none;
	margin: 0 auto 20px;
}

.principle h3 {
	margin-bottom: 15px;
}

.principle p {
	line-height: 1.8;
	color: #666;
}

/* licensing */
.materials-section {
	padding: 110px 0;
	background:
		radial-gradient(circle at top, #fff9f2 0%, #ffffff 70%);
}

.materials-section .container {
	width: min(1450px, 92%);
	margin: auto;
}

.materials-header {
	text-align: center;
	margin-bottom: 70px;
}

.materials-header .eyebrow {
	display: inline-block;
	margin-bottom: 18px;
	letter-spacing: 4px;
	font-size: .9rem;
	font-weight: 600;
	color: #c49445;
}

.materials-header h2 {
	font-family: "Cormorant Garamond", serif;
	font-size: 4rem;
	font-weight: 500;
	line-height: 1.1;
	margin-bottom: 18px;
	color: #2b241f;
}

.subtitle {
	font-size: 1.25rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #c49445;
	margin-bottom: 30px;
}

.intro {
	max-width: 900px;
	margin: auto;
	color: #666;
	line-height: 1.8;
	font-size: 1.1rem;
}

.materials-grid {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 14px;
	margin-top: 70px;
}

.material-card {
	background: #fff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
	transition: .35s;
}

.material-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 22px 45px rgba(0, 0, 0, .14);
}

.material-card img {
	display: block;
	width: 100%;
	aspect-ratio: 1/3.2;
	object-fit: cover;
	transition: .45s;
}

.material-card:hover img {
	transform: scale(1.06);
}

.material-card span {
	display: block;
	text-align: center;
	padding: 18px 10px;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.55rem;
	letter-spacing: 1px;
	color: #2d2621;
}

.materials-info {
	margin: 70px auto 0;
	max-width: 1050px;
	background: #fff;
	border: 1px solid #ead3ad;
	border-radius: 18px;
	padding: 32px 40px;
	display: flex;
	align-items: center;
	gap: 30px;
	box-shadow: 0 10px 35px rgba(0, 0, 0, .05);
}

.info-icon {
	width: 78px;
	height: 78px;
	flex-shrink: 0;
	border-radius: 50%;
	background: #faf3e6;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #c49445;
	font-size: 2rem;
}

.info-text strong {
	display: block;
	margin-bottom: 10px;
	font-size: 1.25rem;
	color: #2d2621;
}

.info-text p {
	color: #666;
	line-height: 1.8;
	margin: 0;
}

@media (max-width:1200px) {
	.materials-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.material-card img {
		aspect-ratio: 1/1.8;
	}
}

@media (max-width:768px) {
	.materials-section {
		padding: 70px 0;
	}

	.materials-header h2 {
		font-size: 2.7rem;
	}

	.subtitle {
		font-size: 1rem;
	}

	.intro {
		font-size: 1rem;
	}

	.materials-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 18px;
	}

	.material-card img {
		aspect-ratio: 1/1.4;
	}

	.material-card span {
		font-size: 1.3rem;
	}

	.materials-info {
		flex-direction: column;
		text-align: center;
		padding: 30px 24px;
	}
}

@media (max-width:480px) {
	.materials-grid {
		grid-template-columns: 1fr;
	}

	.material-card img {
		aspect-ratio: 16/10;
	}

	.materials-header h2 {
		font-size: 2.2rem;
	}
}

/* STATS */
.stats {
	padding: 60px 0 90px;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

.stat {
	background: #fff;
	border-radius: 16px;
	padding: 30px;
	text-align: center;
	box-shadow: var(--shadow);
}

.stat h2 {
	font-family: 'Cormorant Garamond', serif;
	color: var(--gold);
	font-size: 2.4rem;
	margin-bottom: 10px;
}

.stat p {
	color: var(--muted);
	font-size: .95rem;
}

/* ==========================================
TEIL 2 – STYLE.CSS ERWEITERUNG
An das Ende deiner style.css anhängen
========================================== */
.benefits,
.license,
.products {
	padding: 90px 0;
}

.section-eyebrow {
	text-align: center;
	color: var(--gold);
	font-size: .82rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.section-eyebrow-left {
	text-align: left;
	color: var(--gold);
	font-size: .82rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.section-title {
	text-align: center;
	font-family: 'Cormorant Garamond', serif;
	font-size: 3rem;
	margin-bottom: 60px;
	line-height: 1.1;
}

/* Vorteile */
.benefit-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px;
}

.card {
	background: #fff;
	border-radius: 18px;
	padding: 36px 28px;
	text-align: center;
	box-shadow: var(--shadow);
	transition: .3s;
}

.card:hover {
	transform: translateY(-8px);
}

.icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	s font-size: 2rem;
}

.card h3 {
	margin-bottom: 12px;
	font-size: 1.15rem;
}

.card p {
	color: var(--muted);
}

/* Lizenzmodell */
.license-grid {
	display: grid;
	grid-template-columns: 1fr 1.8fr !important;
	gap: 60px;
	align-items: start;
}

.license-grid2 {
	display: grid;
	grid-template-columns: 0.8fr 2fr !important;
	gap: 60px;
	align-items: start;
}

.license-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

.license-cards2 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

.license h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 3rem;
	line-height: 1.15;
	margin-bottom: 30px;
}

.license-card ul {
	margin: 22px 0 28px;
	padding: 0;
	list-style: none;
}

.license-card li {
	position: relative;
	padding-left: 0;
	margin-bottom: 12px;
	color: #666;
	line-height: 1.6;
}

.license-price {
	display: inline-block;
	margin-top: auto;
	color: #c49445;
	font-weight: 600;
	letter-spacing: .5px;
}

.checklist {
	list-style: none;
	margin: 0 0 35px;
	padding: 0;
}

.contact-img {
	margin: 30px 0 0 0;
}

.checklist li {
	padding: 12px 0;
	border-bottom: 1px solid #eee;
	color: var(--muted);
}

.license-card {
	background: #fff;
	border-radius: 18px;
	padding: 30px;
	box-shadow: var(--shadow);
	transition: .3s;
}

.license-card:hover {
	transform: translateY(-6px);
}

.license-card h3 {
	margin-bottom: 10px;
}

.license-card p {
	color: var(--muted);
	margin-bottom: 20px;
}

.license-card strong {
	color: var(--gold);
	font-size: 1.1rem;
}

/* Produkte */
.product-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 22px;
}

.product {
	overflow: hidden;
	border-radius: 22px;
	box-shadow: var(--shadow);
}

.product img {
	width: 100%;
	aspect-ratio: 3/5;
	object-fit: cover;
	transition: transform .4s;
}

.product:hover img {
	transform: scale(1.05);
}

/* ==========================================
TEIL 3 CSS
========================================== */
.process {
	padding: 100px 0;
	background: #fff;
}

.timeline {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 28px;
	margin-top: 60px;
}

.step {
	background: #fff;
	padding: 35px 25px;
	border-radius: 20px;
	box-shadow: var(--shadow);
	text-align: center;
	transition: .3s;
	position: relative;
}

.step:hover {
	transform: translateY(-8px);
}

.number {
	width: 64px;
	height: 64px;
	margin: auto auto 20px;
	border-radius: 50%;
	background: linear-gradient(135deg, #d8b27d, var(--gold));
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.4rem;
	font-weight: bold;
}

.number img {
	padding: 10px !important;
}

.step h3 {
	margin-bottom: 10px;
}

.step p {
	color: var(--muted);
}

.cta {
	padding: 100px 0;
}

.cta-box {
	/*background: linear-gradient(135deg, #b98744, #d7bb8d);*/
	background: url('../img/licensing/cta-background.jpg') no-repeat center;
	background-size: cover;
	border-radius: 30px;
	padding: 70px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 50px;
	color: #fff;
}

.cta .light {
	color: #000;
	text-align: left;
}

.cta h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 3rem;
	margin: 18px 0;
	color: #000;
	line-height: 120%;
}

.cta p {
	max-width: 650px;
	color: #000;
}

.cta-buttons {
	margin-top: 25px;
}

.footer {
	background: #222;
	color: #ddd;
	padding: 70px 0 25px;
	margin-top: 100px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 50px;
}

.footer-logo img {
	height: 130px;
	display: block;
	margin-bottom: 15px;
}

.footer h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.5rem;
	margin-bottom: 15px;
	color: #fff;
}

.footer h4 {
	margin-bottom: 15px;
	color: #fff;
}

.footer ul {
	list-style: none;
}

.footer li {
	margin-bottom: 10px;
}

.footer a {
	transition: .25s;
}

.footer a:hover {
	color: #fff;
}

.copyright {
	margin-top: 50px;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, .08);
	padding-top: 25px;
	font-size: .9rem;
	color: #999;
}

.socials-icons {
	display: flex;
	gap: 12px;
	margin-top: 20px;
}

.socials a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #f0d8e5;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	font-size: 18px;
	transition: .2s;
	text-decoration: none;
	margin-right: 12px;
	margin-top: 20px;
	float: left;
}

.socials a img {
	filter: brightness(0);
}

/* ==========================================
STYLE – TEIL 4
Featured • Formular • Partner • FAQ
An das Ende deiner style.css anhängen
========================================== */
/* ---------- Allgemein ---------- */
.featured-designs,
.interest,
.partners,
.faq {
	padding: 100px 0;
	position: relative;
}

.partners {
	background: url('../img/licensing/bg_frau.jpg') no-repeat center;
	background-size: cover;
}

.partners::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(to bottom,
			rgba(255, 255, 255, 0.90) 0%,
			rgba(255, 255, 255, 0.60) 10%,
			rgba(255, 255, 255, 0.40) 20%,
			rgba(255, 255, 255, 0.20) 40%);
}

.partners>* {
	position: relative;
	z-index: 1;
}

.featured-designs {
	background: linear-gradient(180deg, #fff, #faf7f2);
}

/* ---------- Featured Designs ---------- */
.featured-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 30px;
	align-items: stretch;
}

.featured-card {
	position: relative;
	overflow: hidden;
	border-radius: 28px;
	box-shadow: var(--shadow);
}

.featured-card img {
	width: 100%;
	height: 100%;
	min-height: 620px;
	object-fit: cover;
	transition: transform .6s ease;
}

.featured-card:hover img {
	transform: scale(1.05);
}

.overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 45px;
	background: linear-gradient(to top, rgba(0, 0, 0, .75), rgba(0, 0, 0, .05));
	color: #fff;
}

.tag {
	display: inline-block;
	align-self: flex-start;
	background: rgba(255, 255, 255, .18);
	border: 1px solid rgba(255, 255, 255, .35);
	backdrop-filter: blur(10px);
	padding: 8px 16px;
	border-radius: 40px;
	margin-bottom: 18px;
	font-size: .8rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.overlay h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.4rem;
	margin-bottom: 12px;
}

.overlay p {
	margin-bottom: 28px;
	max-width: 420px;
}

/* ---------- Mini Cards ---------- */
.side-cards {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.mini-card {
	display: flex;
	gap: 18px;
	align-items: center;
	padding: 18px;
	border-radius: 22px;
	background: #fff;
	box-shadow: var(--shadow);
	transition: .35s;
}

.mini-card:hover {
	transform: translateX(6px);
}

.mini-card img {
	width: 110px;
	height: 110px;
	object-fit: cover;
	border-radius: 16px;
}

.mini-card h4 {
	margin-bottom: 6px;
	font-size: 1.15rem;
}

.mini-card p {
	color: var(--muted);
}

/* ---------- Formular ---------- */
.interest-box {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	background: #fff;
	border-radius: 30px;
	padding: 60px;
	box-shadow: var(--shadow);
}

.interest-text h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 3rem;
	margin: 18px 0;
	line-height: 120%;
}

.interest-text p {
	color: var(--muted);
	max-width: 520px;
	text-align: left;
}

.interest-form {
	display: grid;
	gap: 18px;
}

.interest-form input,
.interest-form select,
.interest-form textarea {
	width: 100%;
	padding: 22px 18px;
	border: 1px solid #ddd;
	border-radius: 12px;
	font: inherit;
	transition: .3s;
	background: #fff;
}

.interest-form input:focus,
.interest-form select:focus,
.interest-form textarea:focus {
	outline: none;
	border-color: var(--gold);
	box-shadow: 0 0 0 4px rgba(200, 155, 87, .12);
}

/* =====================================================
ABOUT DESIGNER
===================================================== */

.about-designer {
	padding: 120px 0;
	background: #fff;
}

.about-grid {
	display: grid;
	grid-template-columns: 380px 1fr;
	gap: 80px;
	align-items: center;
}

.about-image {
	position: relative;
}

.about-image img {
	width: 100%;
	display: block;
	border-radius: 24px;
	box-shadow: 0 30px 70px rgba(0, 0, 0, .12);
}

.about-content h2 {
	margin: 15px 0 35px;
	font-size: 42px !important;
	line-height: 1.15;
	text-align: left;
}

.about-content p {
	margin-bottom: 22px;
	line-height: 1.9;
	color: #666;
	font-size: 18px;
	text-align: left;
}

.about-content blockquote {
    position:relative;
    margin:45px 0;
    padding:30px 35px;
    background:linear-gradient(
        90deg,
        rgba(187,136,80,.10),
        transparent
    );
    border-left:6px solid #bb8850;
    font-size:20px;
    line-height:1.8;
    color:#333;
    font-style:italic;
}

p.section-eyebrow {
	letter-spacing: 2px;
 	text-transform: uppercase;
 	color: #bf9364 !important;
 	font-size: 13px !important;
 	margin-bottom: 20px;
}

.about-highlights {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 45px;
}

.about-highlights div {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 15px 22px;
	border: 1px solid #eadfd2;
	border-radius: 100px;
	background: white;

}

.about-highlights i {
	color: #bb8850;
	font-size: 18px;
}

.about-highlights span {
	font-weight: 600;
}

/* ---------- Partner ---------- */
.partner-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 22px;
}

.partner-card {
	text-align: center;
	padding: 35px 20px;
	background: #fff;
	border-radius: 20px;
	box-shadow: var(--shadow);
	transition: .35s;
}

.partner-card:hover {
	transform: translateY(-8px);
}

.partner-card h3 {
	font-family: 'Cormorant Garamond', serif;
	color: var(--gold);
	font-size: 2rem;
	margin-bottom: 10px;
}

.partner-card p {
	color: var(--muted);
}

/* ---------- FAQ ---------- */
.faq-list {
	max-width: 900px;
	margin: 0 auto;
}

.faq details {
	background: #fff;
	margin-bottom: 18px;
	border-radius: 16px;
	box-shadow: var(--shadow);
	overflow: hidden;
}

.faq summary {
	cursor: pointer;
	list-style: none;
	padding: 24px 28px;
	font-weight: 600;
	position: relative;
}

.faq summary::-webkit-details-marker {
	display: none;
}

.faq summary::after {
	content: "+";
	position: absolute;
	right: 28px;
	font-size: 1.4rem;
	color: var(--gold);
}

.faq details[open] summary::after {
	content: "–";
}

.faq details p {
	padding: 0 28px 28px;
	color: var(--muted);
}

/* Responsive */
@media (max-width:1100px) {
	.benefit-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.product-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.timeline {
		grid-template-columns: repeat(3, 1fr);
	}

	.featured-grid,
	.interest-box {
		grid-template-columns: 1fr;

	}

	.partner-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width:992px) {
	.hero-grid {
		grid-template-columns: 1fr;
	}

	.hero-image {
		order: -1;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.nav {
		display: none;
		position: absolute;
		left: 0;
		top: 90px;
		width: 100%;
		background: #fff;
		box-shadow: var(--shadow);
	}

	.nav.active {
		display: block;
	}

	.nav ul {
		flex-direction: column;
		padding: 25px;
		gap: 20px;
	}

	.hamburger {
		display: block;
	}

	.header .gold {
		display: none;
	}

	.hero h1 {
		font-size: 3rem;
	}

	.license-badge {
		right: 15px;
		bottom: 15px;
		width: 140px;
		height: 140px;
		top: 5px;
	}

	.license-grid,
	.license-grid2 {
		grid-template-columns: 1fr !important;
	}

	.benefit-grid,
	.product-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.section-title,
	.license h2 {
		font-size: 2.5rem;
	}

	.about-grid {

		grid-template-columns: 1fr;
		gap: 50px;

	}

	.about-image {

		max-width: 420px;
		margin: auto;

	}

	.about-content {

		text-align: center;

	}

	.about-content h2 {

		font-size: 42px;

	}

	.about-highlights {

		justify-content: center;

	}

}

@media(max-width:900px) {
	.timeline {
		grid-template-columns: 1fr;
	}

	.cta-box {
		flex-direction: column;
		text-align: center;
		padding: 45px;
	}

	.cta .light {
		text-align: center;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

@media (max-width:768px) {
	.partner-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.featured-card img {
		min-height: 420px;
	}

	.overlay {
		padding: 28px;
	}

	.overlay h3 {
		font-size: 2rem;
	}

	.interest-box {
		padding: 35px;
	}

	.interest-text h2 {
		font-size: 2.3rem;
	}
}

@media (max-width:600px) {
	.hero {
		padding: 40px 0;
	}

	.hero h1 {
		font-size: 2.35rem;
	}

	.stats-grid {
		grid-template-columns: 1fr;
	}

	.buttons {
		flex-direction: column;
	}

	.btn {
		text-align: center;
	}

	.logo h2 {
		font-size: 1.9rem;
	}

	.benefit-grid,
	.product-grid {
		grid-template-columns: 1fr;
	}

	.section-title,
	.license h2 {
		font-size: 2rem;
	}

	.card,
	.license-card {
		padding: 26px;
	}

	.cta h2 {
		font-size: 2.2rem;
	}

	.process,
	.cta {
		padding: 70px 0;
	}
}

@media (max-width:560px) {
	.partner-grid {
		grid-template-columns: 1fr;
	}

	.mini-card {
		flex-direction: column;
		text-align: center;
	}

	.featured-designs,
	.interest,
	.partners,
	.faq {
		padding: 70px 0;
	}

	.about-designer {

		padding: 70px 0;

	}

	.about-content h2 {

		font-size: 34px;

	}

	.about-content p {

		font-size: 17px;
		line-height: 1.8;

	}

	.about-highlights {

		flex-direction: column;

	}

	.about-highlights div {

		width: 100%;
		justify-content: center;

	}

}:root {
	--gold: #c89b57;
	--gold-dark: #b8863d;
	--text: #2f2b27;
	--muted: #6d675f;
	--bg: #fcf8f3;
	--white: #fff;
	--shadow: 0 15px 40px rgba(0, 0, 0, .08);
	--radius: 18px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	font-family: 'Inter', sans-serif;
	color: var(--text);
	background: linear-gradient(#fff, #faf5ef);
	line-height: 1.6;
}

img {
	max-width: 100%;
	display: block
}

a {
	text-decoration: none;
	color: inherit
}

.container {
	width: min(1600px, 92%);
	margin: auto;
}

/* HEADER */
.header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: rgba(255, 255, 255, .92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 90px;
}

.logo h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.3rem;
	letter-spacing: 2px;
}

.logo span {
	font-size: .75rem;
	color: var(--muted);
	letter-spacing: 2px;
}

.nav ul {
	list-style: none;
	display: flex;
	gap: 38px;
}

.nav a {
	font-size: .92rem;
	font-weight: 500;
	transition: .25s;
}

.nav a:hover {
	color: var(--gold);
}

.btn {
	padding: 14px 24px;
	border-radius: 10px;
	display: inline-block;
	transition: .3s;
	font-weight: 600;
}

.gold {
	background: var(--gold);
	color: #fff;
}

.gold:hover {
	background: var(--gold-dark);
	transform: translateY(-2px);
}

.white {
	border: 1px solid #ddd;
	background: #fff;
}

.white:hover {
	box-shadow: var(--shadow);
}

.hamburger {
	display: none;
	background: none;
	border: none;
	font-size: 2rem;
	cursor: pointer;
}

/* Pagination */
.page-nav:disabled {
	opacity: .4;
	cursor: not-allowed;
}

.page-dots {
	padding: 0 10px;
	color: #999;
	font-weight: 600;
}

/* HERO */
.hero {
	padding: 70px 0;
	background: url('../img/licensing/header-licensing.png') no-repeat center;
	background-size: cover;
}

.hero-text {
	margin-top: 160px;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
	align-items: center;
}

.eyebrow {
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: .8rem;
	margin-bottom: 20px;
}

.hero h1 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 4rem;
	line-height: 1.05;
	margin-bottom: 25px;
}

.hero h1 span {
	color: var(--gold);
}

.lead {
	max-width: 600px;
	color: var(--muted);
	margin-bottom: 35px;
}

.buttons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.hero-image {
	position: relative;
}

.hero-image img {
	border-radius: 28px;
	box-shadow: var(--shadow);
}

.license-badge {
	position: absolute;
	right: -25px;
	bottom: 30px;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: #fff;
	border: 6px solid #f2e5d3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow);
}

.license-badge strong {
	font-family: 'Cormorant Garamond', serif;
	color: var(--gold);
	font-size: 3rem;
}

.license-badge span {
	text-align: center;
	text-transform: uppercase;
	font-size: .7rem;
	letter-spacing: 1px;
}

/* Form */
.success-message {
	margin-top: 25px;
	padding: 18px 24px;
	border-radius: 10px;
	background: #eef9f1;
	border: 1px solid #8bc48f;
	color: #2d6a35;
}

.error-message {
	margin-top: 25px;
	padding: 18px 24px;
	border-radius: 10px;
	background: #fff2f2;
	border: 1px solid #d85b5b;
	color: #a32020;
}

/* About */
.licensing-values,
.licensing-brand {
	padding: 90px 8%;
	background: #faf8f6;
}

.licensing-values:nth-child(even),
.licensing-brand:nth-child(even) {
	background: #fff;
}

.licensing-values-inner,
.licensing-brand-inner {
	max-width: 850px;
	margin: auto;
}

.section-label {
	display: inline-block;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #bf9364;
	font-size: 13px;
	margin-bottom: 20px;

}

.licensing-values h2,
.licensing-brand h2 {
	font-size: 42px;
	margin-bottom: 25px;
	line-height: 120%;
}

.licensing-values p,
.licensing-brand p {
	line-height: 1.9;
	margin-bottom: 18px;
	color: #555;
}

.highlight {
	padding: 25px;
	border-left: 4px solid #bf9364;
	background: #fff;
	font-weight: 500;
}

.info-card {
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 22px;
	border-radius: 28px;
	background: #fff;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
	transition:
		transform .35s ease,
		box-shadow .35s ease,
		border-color .35s ease;
	border: 1px solid transparent;
}

.info-card img {
	width: 110px;
	height: 110px;
	object-fit: cover;
	border-radius: 18px;
	transition: .35s;
}

.info-content {
	flex: 1;
}

.info-content h3 {
	margin-bottom: 10px;
}

.info-content p {
	color: #666;
	line-height: 1.6;
}

.info-arrow {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #faf7f2;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #b88650;
	font-size: 20px;
	transition: .35s;
}

.info-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 28px 60px rgba(184, 134, 80, .18);
	border-color: #d9b27b;
}

.info-card:hover img {
	transform: scale(1.05);
}

.info-card:hover .info-arrow {
	background: #b88650;
	color: #fff;
	transform: translateX(8px);
}

.info-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 4px;
	height: 100%;
	border-radius: 30px 0 0 30px;
	background: #b88650;
	transform: scaleY(0);
	transition: .35s;
}

.info-card {
	position: relative;
	overflow: hidden;
}

.info-card:hover::before {
	transform: scaleY(1);
}

.info-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 4px;
	height: 100%;
	border-radius: 30px 0 0 30px;
	background: #b88650;
	transform: scaleY(0);
	transition: .35s;
}

.info-card {
	position: relative;
	overflow: hidden;
}

.info-card:hover::before {
	transform: scaleY(1);
}

.partner-principles {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 35px;
	padding: 90px 8%;
}

.principle {
	text-align: center;
	background: #fff;
	padding: 40px 30px;
	border-radius: 16px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.principle .icon {
	width: 80px;
	height: 80px;
	background: none;
	margin: 0 auto 20px;
}

.principle h3 {
	margin-bottom: 15px;
}

.principle p {
	line-height: 1.8;
	color: #666;
}

/* licensing */
.materials-section {
	padding: 110px 0;
	background:
		radial-gradient(circle at top, #fff9f2 0%, #ffffff 70%);
}

.materials-section .container {
	width: min(1450px, 92%);
	margin: auto;
}

.materials-header {
	text-align: center;
	margin-bottom: 70px;
}

.materials-header .eyebrow {
	display: inline-block;
	margin-bottom: 18px;
	letter-spacing: 4px;
	font-size: .9rem;
	font-weight: 600;
	color: #c49445;
}

.materials-header h2 {
	font-family: "Cormorant Garamond", serif;
	font-size: 4rem;
	font-weight: 500;
	line-height: 1.1;
	margin-bottom: 18px;
	color: #2b241f;
}

.subtitle {
	font-size: 1.25rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #c49445;
	margin-bottom: 30px;
}

.intro {
	max-width: 900px;
	margin: auto;
	color: #666;
	line-height: 1.8;
	font-size: 1.1rem;
}

.materials-grid {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 14px;
	margin-top: 70px;
}

.material-card {
	background: #fff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
	transition: .35s;
}

.material-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 22px 45px rgba(0, 0, 0, .14);
}

.material-card img {
	display: block;
	width: 100%;
	aspect-ratio: 1/3.2;
	object-fit: cover;
	transition: .45s;
}

.material-card:hover img {
	transform: scale(1.06);
}

.material-card span {
	display: block;
	text-align: center;
	padding: 18px 10px;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.55rem;
	letter-spacing: 1px;
	color: #2d2621;
}

.materials-info {
	margin: 70px auto 0;
	max-width: 1050px;
	background: #fff;
	border: 1px solid #ead3ad;
	border-radius: 18px;
	padding: 32px 40px;
	display: flex;
	align-items: center;
	gap: 30px;
	box-shadow: 0 10px 35px rgba(0, 0, 0, .05);
}

.info-icon {
	width: 78px;
	height: 78px;
	flex-shrink: 0;
	border-radius: 50%;
	background: #faf3e6;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #c49445;
	font-size: 2rem;
}

.info-text strong {
	display: block;
	margin-bottom: 10px;
	font-size: 1.25rem;
	color: #2d2621;
}

.info-text p {
	color: #666;
	line-height: 1.8;
	margin: 0;
}

@media (max-width:1200px) {
	.materials-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.material-card img {
		aspect-ratio: 1/1.8;
	}
}

@media (max-width:768px) {
	.materials-section {
		padding: 70px 0;
	}

	.materials-header h2 {
		font-size: 2.7rem;
	}

	.subtitle {
		font-size: 1rem;
	}

	.intro {
		font-size: 1rem;
	}

	.materials-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 18px;
	}

	.material-card img {
		aspect-ratio: 1/1.4;
	}

	.material-card span {
		font-size: 1.3rem;
	}

	.materials-info {
		flex-direction: column;
		text-align: center;
		padding: 30px 24px;
	}
}

@media (max-width:480px) {
	.materials-grid {
		grid-template-columns: 1fr;
	}

	.material-card img {
		aspect-ratio: 16/10;
	}

	.materials-header h2 {
		font-size: 2.2rem;
	}
}

/* STATS */
.stats {
	padding: 60px 0 90px;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

.stat {
	background: #fff;
	border-radius: 16px;
	padding: 30px;
	text-align: center;
	box-shadow: var(--shadow);
}

.stat h2 {
	font-family: 'Cormorant Garamond', serif;
	color: var(--gold);
	font-size: 2.4rem;
	margin-bottom: 10px;
}

.stat p {
	color: var(--muted);
	font-size: .95rem;
}

/* ==========================================
TEIL 2 – STYLE.CSS ERWEITERUNG
An das Ende deiner style.css anhängen
========================================== */
.benefits,
.license,
.products {
	padding: 90px 0;
}

.section-eyebrow {
	text-align: center;
	color: var(--gold);
	font-size: .82rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.benefits .section-eyebrow {
	text-align: center;
}

.section-eyebrow-left {
	text-align: left;
	color: var(--gold);
	font-size: .82rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.section-title {
	text-align: center;
	font-family: 'Cormorant Garamond', serif;
	font-size: 3rem;
	margin-bottom: 60px;
	line-height: 1.1;
}

/* Vorteile */
.benefit-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px;
}

.card {
	background: #fff;
	border-radius: 18px;
	padding: 36px 28px;
	text-align: center;
	box-shadow: var(--shadow);
	transition: .3s;
}

.card:hover {
	transform: translateY(-8px);
}

.icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	s font-size: 2rem;
}

.card h3 {
	margin-bottom: 12px;
	font-size: 1.15rem;
}

.card p {
	color: var(--muted);
}

/* Lizenzmodell */
.license-grid {
	display: grid;
	grid-template-columns: 1fr 1.8fr !important;
	gap: 60px;
	align-items: start;
}

.license-grid2 {
	display: grid;
	grid-template-columns: 0.8fr 2fr !important;
	gap: 60px;
	align-items: start;
}

.license-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

.license-cards2 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

.license h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 3rem;
	line-height: 1.15;
	margin-bottom: 30px;
}

.license-card ul {
	margin: 22px 0 28px;
	padding: 0;
	list-style: none;
}

.license-card li {
	position: relative;
	padding-left: 0;
	margin-bottom: 12px;
	color: #666;
	line-height: 1.6;
}

.license-price {
	display: inline-block;
	margin-top: auto;
	color: #c49445;
	font-weight: 600;
	letter-spacing: .5px;
}

.checklist {
	list-style: none;
	margin: 0 0 35px;
	padding: 0;
}

.contact-img {
	margin: 30px 0 0 0;
}

.checklist li {
	padding: 12px 0;
	border-bottom: 1px solid #eee;
	color: var(--muted);
}

.license-card {
	background: #fff;
	border-radius: 18px;
	padding: 30px;
	box-shadow: var(--shadow);
	transition: .3s;
}

.license-card:hover {
	transform: translateY(-6px);
}

.license-card h3 {
	margin-bottom: 10px;
}

.license-card p {
	color: var(--muted);
	margin-bottom: 20px;
}

.license-card strong {
	color: var(--gold);
	font-size: 1.1rem;
}

/* Produkte */
.product-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 22px;
}

.product {
	overflow: hidden;
	border-radius: 22px;
	box-shadow: var(--shadow);
}

.product img {
	width: 100%;
	aspect-ratio: 3/5;
	object-fit: cover;
	transition: transform .4s;
}

.product:hover img {
	transform: scale(1.05);
}

/* ==========================================
TEIL 3 CSS
========================================== */
.process {
	padding: 100px 0;
	background: #fff;
}

.timeline {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 28px;
	margin-top: 60px;
}

.step {
	background: #fff;
	padding: 35px 25px;
	border-radius: 20px;
	box-shadow: var(--shadow);
	text-align: center;
	transition: .3s;
	position: relative;
}

.step:hover {
	transform: translateY(-8px);
}

.number {
	width: 64px;
	height: 64px;
	margin: auto auto 20px;
	border-radius: 50%;
	background: linear-gradient(135deg, #d8b27d, var(--gold));
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.4rem;
	font-weight: bold;
}

.number img {
	padding: 10px !important;
}

.step h3 {
	margin-bottom: 10px;
}

.step p {
	color: var(--muted);
}

.cta {
	padding: 100px 0;
}

.cta-box {
	/*background: linear-gradient(135deg, #b98744, #d7bb8d);*/
	background: url('../img/licensing/cta-background.jpg') no-repeat center;
	background-size: cover;
	border-radius: 30px;
	padding: 70px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 50px;
	color: #fff;
}

.cta .light {
	color: #000;
	text-align: left;
}

.cta h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 3rem;
	margin: 18px 0;
	color: #000;
	line-height: 120%;
}

.cta p {
	max-width: 650px;
	color: #000;
}

.cta-buttons {
	margin-top: 25px;
}

.footer {
	background: #222;
	color: #ddd;
	padding: 70px 0 25px;
	margin-top: 100px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 50px;
}

.footer-logo img {
	height: 130px;
	display: block;
	margin-bottom: 15px;
}

.footer h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.5rem;
	margin-bottom: 15px;
	color: #fff;
}

.footer h4 {
	margin-bottom: 15px;
	color: #fff;
}

.footer ul {
	list-style: none;
}

.footer li {
	margin-bottom: 10px;
}

.footer a {
	transition: .25s;
}

.footer a:hover {
	color: #fff;
}

.copyright {
	margin-top: 50px;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, .08);
	padding-top: 25px;
	font-size: .9rem;
	color: #999;
}

.socials-icons {
	display: flex;
	gap: 12px;
	margin-top: 20px;
}

.socials a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #f0d8e5;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	font-size: 18px;
	transition: .2s;
	text-decoration: none;
	margin-right: 12px;
	margin-top: 20px;
	float: left;
}

.socials a img {
	filter: brightness(0);
}

/* ==========================================
STYLE – TEIL 4
Featured • Formular • Partner • FAQ
An das Ende deiner style.css anhängen
========================================== */
/* ---------- Allgemein ---------- */
.featured-designs,
.interest,
.partners,
.faq {
	padding: 100px 0;
	position: relative;
}

.partners {
	background: url('../img/licensing/bg_frau.jpg') no-repeat center;
	background-size: cover;
}

.partners::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(to bottom,
			rgba(255, 255, 255, 0.90) 0%,
			rgba(255, 255, 255, 0.60) 10%,
			rgba(255, 255, 255, 0.40) 20%,
			rgba(255, 255, 255, 0.20) 40%);
}

.partners>* {
	position: relative;
	z-index: 1;
}

.featured-designs {
	background: linear-gradient(180deg, #fff, #faf7f2);
}

/* ---------- Featured Designs ---------- */
.featured-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 30px;
	align-items: stretch;
}

.featured-card {
	position: relative;
	overflow: hidden;
	border-radius: 28px;
	box-shadow: var(--shadow);
}

.featured-card img {
	width: 100%;
	height: 100%;
	min-height: 620px;
	object-fit: cover;
	transition: transform .6s ease;
}

.featured-card:hover img {
	transform: scale(1.05);
}

.overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 45px;
	background: linear-gradient(to top, rgba(0, 0, 0, .75), rgba(0, 0, 0, .05));
	color: #fff;
}

.tag {
	display: inline-block;
	align-self: flex-start;
	background: rgba(255, 255, 255, .18);
	border: 1px solid rgba(255, 255, 255, .35);
	backdrop-filter: blur(10px);
	padding: 8px 16px;
	border-radius: 40px;
	margin-bottom: 18px;
	font-size: .8rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.overlay h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.4rem;
	margin-bottom: 12px;
}

.overlay p {
	margin-bottom: 28px;
	max-width: 420px;
}

/* ---------- Mini Cards ---------- */
.side-cards {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.mini-card {
	display: flex;
	gap: 18px;
	align-items: center;
	padding: 18px;
	border-radius: 22px;
	background: #fff;
	box-shadow: var(--shadow);
	transition: .35s;
}

.mini-card:hover {
	transform: translateX(6px);
}

.mini-card img {
	width: 110px;
	height: 110px;
	object-fit: cover;
	border-radius: 16px;
}

.mini-card h4 {
	margin-bottom: 6px;
	font-size: 1.15rem;
}

.mini-card p {
	color: var(--muted);
}

/* ---------- Formular ---------- */
.interest-box {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	background: #fff;
	border-radius: 30px;
	padding: 60px;
	box-shadow: var(--shadow);
}

.interest-text h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 3rem;
	margin: 18px 0;
	line-height: 120%;
}

.interest-text p {
	color: var(--muted);
	max-width: 520px;
	text-align: left;
}

.interest-form {
	display: grid;
	gap: 18px;
}

.interest-form input,
.interest-form select,
.interest-form textarea {
	width: 100%;
	padding: 22px 18px;
	border: 1px solid #ddd;
	border-radius: 12px;
	font: inherit;
	transition: .3s;
	background: #fff;
}

.interest-form input:focus,
.interest-form select:focus,
.interest-form textarea:focus {
	outline: none;
	border-color: var(--gold);
	box-shadow: 0 0 0 4px rgba(200, 155, 87, .12);
}

/* =====================================================
ABOUT DESIGNER
===================================================== */
.about-designer {
	padding: 120px 0;
}

.about-grid {
	display: grid;
	grid-template-columns: 380px 1fr;
	gap: 80px;
	align-items: center;
}

.about-image {
	position: relative;
}

.about-image img {
	width: 100%;
	display: block;
	border-radius: 24px;
	box-shadow: 0 30px 70px rgba(0, 0, 0, .12);
}

.about-content h2 {
	margin: 15px 0 35px;
	font-size: 52px;
	line-height: 1.15;
}

.about-content p {
	margin-bottom: 22px;
	line-height: 1.9;
	color: #666;
	font-size: 18px;
}

.about-highlights {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 45px;
}

.about-highlights div {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 15px 22px;
	border: 1px solid #eadfd2;
	border-radius: 100px;
	background: white;
}

.about-highlights i {
	color: #bb8850;
	font-size: 18px;
}

.about-highlights span {
	font-weight: 600;
}

/* ---------- Partner ---------- */
.partner-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 22px;
}

.partner-card {
	text-align: center;
	padding: 35px 20px;
	background: #fff;
	border-radius: 20px;
	box-shadow: var(--shadow);
	transition: .35s;
}

.partner-card:hover {
	transform: translateY(-8px);
}

.partner-card h3 {
	font-family: 'Cormorant Garamond', serif;
	color: var(--gold);
	font-size: 2rem;
	margin-bottom: 10px;
}

.partner-card p {
	color: var(--muted);
}

/* ---------- FAQ ---------- */
.faq-list {
	max-width: 900px;
	margin: 0 auto;
}

.faq details {
	background: #fff;
	margin-bottom: 18px;
	border-radius: 16px;
	box-shadow: var(--shadow);
	overflow: hidden;
}

.faq summary {
	cursor: pointer;
	list-style: none;
	padding: 24px 28px;
	font-weight: 600;
	position: relative;
}

.faq summary::-webkit-details-marker {
	display: none;
}

.faq summary::after {
	content: "+";
	position: absolute;
	right: 28px;
	font-size: 1.4rem;
	color: var(--gold);
}

.faq details[open] summary::after {
	content: "–";
}

.faq details p {
	padding: 0 28px 28px;
	color: var(--muted);
}

/* Responsive */
@media (max-width:1100px) {
	.benefit-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.product-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.timeline {
		grid-template-columns: repeat(3, 1fr);
	}

	.featured-grid,
	.interest-box {
		grid-template-columns: 1fr;
	}

	.partner-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width:992px) {
	.hero-grid {
		grid-template-columns: 1fr;
	}

	.hero-image {
		order: -1;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.nav {
		display: none;
		position: absolute;
		left: 0;
		top: 90px;
		width: 100%;
		background: #fff;
		box-shadow: var(--shadow);
	}

	.nav.active {
		display: block;
	}

	.nav ul {
		flex-direction: column;
		padding: 25px;
		gap: 20px;
	}

	.hamburger {
		display: block;
	}

	.header .gold {
		display: none;
	}

	.hero h1 {
		font-size: 3rem;
	}

	.license-badge {
		right: 15px;
		bottom: 15px;
		width: 140px;
		height: 140px;
		top: 5px;
	}

	.license-grid,
	.license-grid2 {
		grid-template-columns: 1fr !important;
	}

	.benefit-grid,
	.product-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.section-title,
	.license h2 {
		font-size: 2.5rem;
	}

	.about-grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.about-image {
		max-width: 420px;
		margin: auto;
	}

	.about-content {
		text-align: center;
	}

	.about-content h2 {
		font-size: 42px;
	}

	.about-highlights {
		justify-content: center;
	}
}

@media(max-width:900px) {
	.timeline {
		grid-template-columns: 1fr;
	}

	.cta-box {
		flex-direction: column;
		text-align: center;
		padding: 45px;
	}

	.cta .light {
		text-align: center;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}
	
	.footer-logo img {
		text-align: center;
		margin: 0 auto 13px;
	}
}

@media (max-width:768px) {
	.partner-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.featured-card img {
		min-height: 420px;
	}

	.overlay {
		padding: 28px;
	}

	.overlay h3 {
		font-size: 2rem;
	}

	.interest-box {
		padding: 35px;
	}

	.interest-text h2 {
		font-size: 2.3rem;
	}
}

@media (max-width:600px) {
	.hero {
		padding: 40px 0;
	}

	.hero h1 {
		font-size: 2.35rem;
	}

	.stats-grid {
		grid-template-columns: 1fr;
	}

	.buttons {
		flex-direction: column;
	}

	.btn {
		text-align: center;
	}

	.logo h2 {
		font-size: 1.9rem;
	}

	.benefit-grid,
	.product-grid {
		grid-template-columns: 1fr;
	}

	.section-title,
	.license h2 {
		font-size: 2rem;
	}

	.card,
	.license-card {
		padding: 26px;
	}

	.cta h2 {
		font-size: 2.2rem;
	}

	.process,
	.cta {
		padding: 70px 0;
	}
}

@media (max-width:560px) {
	.partner-grid {
		grid-template-columns: 1fr;
	}

	.mini-card {
		flex-direction: column;
		text-align: center;
	}

	.featured-designs,
	.interest,
	.partners,
	.faq {
		padding: 70px 0;
	}

	.about-designer {
		padding: 70px 0;
	}

	.about-content h2 {
		font-size: 34px;
	}

	.about-content p {
		font-size: 17px;
		line-height: 1.8;
	}

	.about-highlights {
		flex-direction: column;
	}

	.about-highlights div {
		width: 100%;
		justify-content: center;
	}
}