/* ===== RESET & БАЗА ===== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	background-color: #0a0a0a;
	color: #e0e0e0;
	line-height: 1.5;
	scroll-behavior: smooth;
	overflow-x: hidden;
	width: 100%;
	max-width: 100%;
}

html {
	overflow-x: hidden;
	width: 100%;
	max-width: 100%;
}

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
	width: 100%;
	overflow-x: hidden;
}

/* Scrollbar gold theme */
::-webkit-scrollbar {
	width: 8px;
}
::-webkit-scrollbar-track {
	background: #101010;
}
::-webkit-scrollbar-thumb {
	background: #b8860b;
	border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
	background: #d4af37;
}

/* ===== TYPOGRAPHY & GOLD ===== */
.gold-text {
	color: #d4af37;
	text-shadow: 0 0 4px rgba(212, 175, 55, 0.3);
}

.section-header {
	text-align: center;
	margin-bottom: 64px;
}

.section-subtitle {
	display: inline-block;
	font-size: 0.9rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #d4af37;
	background: rgba(212, 175, 55, 0.1);
	padding: 6px 16px;
	border-radius: 40px;
	margin-bottom: 16px;
	backdrop-filter: blur(2px);
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	background: linear-gradient(135deg, #fff 30%, #d4af37 80%);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	margin-bottom: 16px;
	word-break: break-word;
}

.section-desc {
	font-size: 1.1rem;
	opacity: 0.8;
	max-width: 640px;
	margin: 0 auto;
}

/* ===== BUTTONS ===== */
.gold-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(95deg, #b8860b, #d4af37);
	border: none;
	padding: 12px 28px;
	border-radius: 40px;
	font-weight: 600;
	font-size: 1rem;
	color: #0a0a0a;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.gold-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
	background: linear-gradient(95deg, #d4af37, #e6c756);
	color: #000;
}

.outline-btn {
	background: transparent;
	border: 1.5px solid #d4af37;
	padding: 12px 28px;
	border-radius: 40px;
	color: #d4af37;
	font-weight: 600;
	transition: 0.3s;
	text-decoration: none;
	display: inline-block;
}

.outline-btn:hover {
	background: rgba(212, 175, 55, 0.1);
	transform: translateY(-2px);
}

.gold-btn.small {
	padding: 8px 18px;
	font-size: 0.85rem;
}

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

/* ===== NAVBAR ===== */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(10, 10, 10, 0.9);
	backdrop-filter: blur(12px);
	z-index: 1000;
	padding: 18px 0;
	border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
}

.logo {
	font-size: 1.8rem;
	font-weight: 800;
	text-decoration: none;
	letter-spacing: -0.5px;
	background: linear-gradient(135deg, #fff, #d4af37);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
}

.logo span {
	background: none;
	color: #d4af37;
	-webkit-background-clip: unset;
	background-clip: unset;
}

.nav-links {
	display: flex;
	gap: 32px;
}

.nav-link {
	text-decoration: none;
	color: #ddd;
	font-weight: 500;
	transition: 0.3s;
	position: relative;
}

.nav-link:hover, .nav-link.active {
	color: #d4af37;
}

.nav-actions {
	display: flex;
	gap: 16px;
}

.mobile-toggle {
	display: none;
	font-size: 1.8rem;
	cursor: pointer;
	color: #d4af37;
}

/* mobile menu */
.mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 70%;
	max-width: 300px;
	height: 100vh;
	background: #0c0c0cd9;
	backdrop-filter: blur(20px);
	z-index: 2000;
	transition: 0.4s;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	border-left: 1px solid #d4af37;
}

.mobile-menu.open {
	right: 0;
}

.close-menu {
	font-size: 2.5rem;
	cursor: pointer;
	color: #d4af37;
	align-self: flex-end;
}

.mobile-menu-links {
	display: flex;
	flex-direction: column;
	gap: 28px;
	margin-top: 60px;
}

.mobile-link {
	color: white;
	font-size: 1.3rem;
	text-decoration: none;
	font-weight: 500;
}

.mobile-cta {
	text-align: center;
}

/* ===== HERO ===== */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 100px 0 80px;
	background: radial-gradient(circle at 80% 20%, #121212 0%, #030303 100%);
	overflow-x: hidden;
}

.hero-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
}

.hero-badge {
	background: rgba(212, 175, 55, 0.2);
	border-left: 3px solid #d4af37;
	padding: 8px 20px;
	display: inline-block;
	margin-bottom: 20px;
	font-weight: 500;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 20px;
	word-break: break-word;
}

.hero-desc {
	font-size: 1.1rem;
	opacity: 0.8;
	margin-bottom: 32px;
}

.hero-buttons {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 48px;
}

.hero-stats {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
}

.stat-number {
	font-weight: 800;
	font-size: 1.8rem;
	color: #d4af37;
	display: block;
}

.hero-visual {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 400px;
}

.crystal {
	position: relative;
	width: 200px;
	height: 200px;
	transform-style: preserve-3d;
	animation: floatCrystal 4s ease-in-out infinite, rotateCrystal 8s linear infinite;
}

.crystal-face {
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, 
		rgba(212,175,55,0.3) 0%,
		rgba(212,175,55,0.1) 100%);
	border: 1px solid rgba(212,175,55,0.5);
	backdrop-filter: blur(2px);
}

.crystal-face:nth-child(1) { transform: rotateY(0deg) translateZ(100px); }
.crystal-face:nth-child(2) { transform: rotateY(90deg) translateZ(100px); }
.crystal-face:nth-child(3) { transform: rotateY(180deg) translateZ(100px); }
.crystal-face:nth-child(4) { transform: rotateY(270deg) translateZ(100px); }
.crystal-face:nth-child(5) { transform: rotateX(90deg) translateZ(100px); }
.crystal-face:nth-child(6) { transform: rotateX(-90deg) translateZ(100px); }

.crystal-inner {
	position: absolute;
	top: 25%;
	left: 25%;
	width: 50%;
	height: 50%;
	background: radial-gradient(circle, #d4af37, #b8860b);
	border-radius: 50%;
	box-shadow: 0 0 30px rgba(212,175,55,0.8);
	animation: innerPulse 2s ease-in-out infinite;
}

@keyframes floatCrystal {
	0%, 100% { transform: translateY(0px) rotateX(0deg); }
	50% { transform: translateY(-20px) rotateX(5deg); }
}

@keyframes rotateCrystal {
	from { transform: rotateY(0deg); }
	to { transform: rotateY(360deg); }
}

@keyframes innerPulse {
	0%, 100% { transform: scale(1); opacity: 0.8; }
	50% { transform: scale(1.2); opacity: 1; }
}

/* Fallback для браузеров без 3D */
@supports (not (transform-style: preserve-3d)) {
	.crystal {
		display: none;
	}
	.fallback-icon {
		display: flex;
		font-size: 8rem;
		color: #d4af37;
	}
}

/* ===== SHOWCASE (Модели) ===== */
.showcase {
	padding: 100px 0;
	background: #050505;
	overflow-x: hidden;
}

.models-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 32px;
	margin-top: 20px;
	width: 100%;
}

.model-card {
	background: #111;
	border-radius: 28px;
	overflow: hidden;
	transition: all 0.4s;
	border: 1px solid #222;
	cursor: pointer;
	width: 100%;
}

.model-card:hover {
	transform: translateY(-10px);
	border-color: #d4af37;
	box-shadow: 0 20px 30px -15px rgba(212, 175, 55, 0.2);
}

.model-img {
	background: linear-gradient(145deg, #1a1a2e, #0a0a0a);
	height: 260px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
}

.model-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s;
}

.model-card:hover .model-img img {
	transform: scale(1.05);
}

.model-img i {
	font-size: 4rem;
	color: #d4af37;
}

.model-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	background: rgba(212, 175, 55, 0.9);
	color: #0a0a0a;
	padding: 4px 10px;
	border-radius: 20px;
	font-size: 0.7rem;
	font-weight: 700;
	z-index: 2;
}

.model-info {
	padding: 20px;
}

.model-title {
	font-size: 1.35rem;
	font-weight: 700;
	margin-bottom: 8px;
}

.model-desc {
	font-size: 0.85rem;
	opacity: 0.7;
	margin-bottom: 12px;
}

.model-price {
	color: #d4af37;
	font-weight: 700;
	font-size: 1.2rem;
	margin: 12px 0;
}

.model-btn {
	background: transparent;
	border: 1px solid #d4af37;
	border-radius: 30px;
	padding: 8px 0;
	width: 100%;
	color: #d4af37;
	font-weight: 600;
	transition: 0.2s;
	cursor: pointer;
}

.model-btn:hover {
	background: #d4af37;
	color: #0a0a0a;
}

/* ===== FEATURES ===== */
.features {
	padding: 100px 0;
	background: radial-gradient(ellipse at center, #111111 0%, #020202 100%);
	overflow-x: hidden;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 32px;
	width: 100%;
}

.feature-card {
	background: #0b0b0b;
	padding: 32px 24px;
	border-radius: 28px;
	text-align: center;
	border: 1px solid rgba(212, 175, 55, 0.15);
	transition: 0.3s;
}

.feature-card:hover {
	border-color: #d4af37;
}

.feature-icon {
	font-size: 3rem;
	color: #d4af37;
	margin-bottom: 20px;
}

/* ===== TESTIMONIALS (СЛАЙДЕР) ===== */
.testimonials {
	padding: 100px 0;
	background: #050505;
	overflow-x: hidden;
}

.review-button-container {
	text-align: center;
	margin-bottom: 48px;
}

.show-review-btn {
	background: linear-gradient(95deg, #b8860b, #d4af37);
	padding: 14px 32px;
	font-size: 1.1rem;
}

.review-form-container {
	background: #0d0d0d;
	border: 1px solid #d4af37;
	border-radius: 28px;
	padding: 32px;
	margin-bottom: 48px;
	animation: fadeInUp 0.4s ease;
}

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

.review-form-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}

.review-form-header h3 {
	color: #d4af37;
	font-size: 1.5rem;
	margin: 0;
}

.review-form-header h3 i {
	margin-right: 10px;
}

.close-review-form {
	background: none;
	border: none;
	font-size: 28px;
	color: #888;
	cursor: pointer;
	transition: 0.2s;
}

.close-review-form:hover {
	color: #ff5555;
}

.review-form-row {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 24px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.review-form-group {
	margin-bottom: 20px;
}

.review-form-group input,
.review-form-group textarea {
	width: 100%;
	background: #111;
	border: 1px solid #2a2a2a;
	padding: 14px 20px;
	border-radius: 16px;
	color: white;
	font-family: inherit;
	transition: 0.2s;
}

.review-form-group input:focus,
.review-form-group textarea:focus {
	border-color: #d4af37;
	outline: none;
}

.rating-group {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.rating-group label {
	color: #d4af37;
	margin: 0;
}

.star-rating {
	display: flex;
	flex-direction: row-reverse;
	gap: 8px;
}

.star-rating input {
	display: none;
}

.star-rating label {
	font-size: 28px;
	color: #444;
	cursor: pointer;
	transition: 0.2s;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
	color: #d4af37;
	text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.review-form-status {
	margin-top: 16px;
	padding: 10px;
	border-radius: 12px;
	text-align: center;
	display: none;
}

.review-form-status.success {
	background: rgba(76, 175, 80, 0.2);
	color: #8bc34a;
	border-left: 3px solid #4caf50;
}

.review-form-status.error {
	background: rgba(255, 80, 80, 0.2);
	color: #ff9999;
	border-left: 3px solid #ff5555;
}

.testimonial-slider {
	position: relative;
	overflow: hidden;
	padding: 20px 0;
	width: 100%;
}

.testimonial-track {
	display: flex;
	transition: transform 0.5s ease;
	gap: 32px;
	width: 100%;
}

.testimonial-item {
	min-width: calc(33.333% - 22px);
	background: #101010;
	border-radius: 28px;
	padding: 32px;
	border-left: 4px solid #d4af37;
}

.testimonial-stars {
	color: #d4af37;
	font-size: 1rem;
	margin-bottom: 16px;
	display: flex;
	justify-content: center;
	gap: 4px;
}

.testimonial-stars i {
	margin-right: 2px;
}

.testimonial-text {
	font-size: 1rem;
	margin-bottom: 20px;
	font-style: italic;
	line-height: 1.5;
}

.testimonial-author {
	font-weight: 700;
	color: #d4af37;
	text-align: center;
}

.testimonial-date {
	font-size: 0.75rem;
	color: #666;
	margin-top: 12px;
	text-align: center;
}

.testimonial-date i {
	margin-right: 6px;
}

.slider-controls {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-top: 40px;
}

.slider-btn {
	background: transparent;
	border: 1px solid #d4af37;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	color: #d4af37;
	font-size: 1.2rem;
	cursor: pointer;
	transition: 0.2s;
}

.slider-btn:hover {
	background: #d4af37;
	color: black;
}

.no-reviews {
	text-align: center;
	padding: 60px 20px;
	color: #888;
	font-size: 1.1rem;
	min-width: 100%;
}

.no-reviews i {
	font-size: 2rem;
	color: #d4af37;
	margin-left: 8px;
}

/* ===== CONTACT ===== */
.contact {
	padding: 100px 0;
	background: #080808;
	overflow-x: hidden;
}

.contact-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
}

.contact-title {
	font-size: 2rem;
	margin-bottom: 20px;
}

.contact-details {
	margin: 32px 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.contact-details i {
	width: 32px;
	color: #d4af37;
}

.social-links {
	display: flex;
	gap: 20px;
	margin-top: 20px;
	flex-wrap: wrap;
}

.social-links a {
	color: #ccc;
	font-size: 1.6rem;
	transition: 0.2s;
}

.social-links a:hover {
	color: #d4af37;
}

.contact-form .form-group {
	margin-bottom: 20px;
}

.contact-form input, .contact-form textarea {
	width: 100%;
	background: #111;
	border: 1px solid #2a2a2a;
	padding: 14px 20px;
	border-radius: 16px;
	color: white;
	font-family: inherit;
	transition: 0.2s;
}

.contact-form input:focus, .contact-form textarea:focus {
	border-color: #d4af37;
	outline: none;
}

.form-status {
	margin-top: 16px;
	font-size: 0.9rem;
	text-align: center;
}

/* ===== FOOTER ===== */
.footer {
	background: #020202;
	padding: 48px 0 24px;
	border-top: 1px solid #d4af3733;
	overflow-x: hidden;
}

.footer-container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 32px;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
}

.footer-brand h3 {
	font-size: 1.8rem;
}

.footer-brand span {
	color: #d4af37;
}

.footer-links {
	display: flex;
	gap: 32px;
	flex-wrap: wrap;
}

.footer-links a {
	color: #aaa;
	text-decoration: none;
}

.footer-links a:hover {
	color: #d4af37;
}

/* scroll to top */
.scroll-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background: #d4af37;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: none;
	color: #0a0a0a;
	font-size: 1.2rem;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
	z-index: 99;
}

.scroll-top.show {
	opacity: 1;
	visibility: visible;
}

/* preloader */
.preloader {
	position: fixed;
	background: #0a0a0a;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.6s;
}
.preloader-gold {
	width: 60px;
	height: 60px;
	border: 4px solid #d4af37;
	border-top-color: transparent;
	border-radius: 50%;
	animation: spin 1s infinite;
}
@keyframes spin {
	to {transform: rotate(360deg);}
}

/* Курсор для изображений в галерее */
.model-img {
	cursor: pointer;
}

.model-img a {
	display: block;
	width: 100%;
	height: 100%;
}

.model-img a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
	.hero-container, .contact-container {
		grid-template-columns: 1fr;
	}
	
	.nav-links, .nav-actions {
		display: none;
	}
	
	.mobile-toggle {
		display: block;
	}
	
	.testimonial-item {
		min-width: calc(100% - 20px);
	}
	
	.section-title {
		font-size: 1.8rem;
	}
	
	.hero-title {
		font-size: 2.2rem;
	}
	
	.container {
		padding: 0 20px;
	}
	
	.nav-container, .hero-container, .contact-container, .footer-container {
		padding: 0 20px;
	}
	
	.models-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	
	.features-grid {
		grid-template-columns: 1fr;
	}
	
	.hero-stats {
		gap: 20px;
		justify-content: center;
		text-align: center;
	}
	
	.hero-buttons {
		justify-content: center;
	}
	
	.hero-content {
		text-align: center;
	}
	
	.hero-badge {
		display: inline-block;
	}
	
	.section-header {
		margin-bottom: 40px;
	}
	
	.showcase, .features, .testimonials, .contact {
		padding: 60px 0;
	}
	
	.contact-info {
		text-align: center;
	}
	
	.contact-details {
		align-items: center;
	}
	
	.social-links {
		justify-content: center;
	}
	
	.footer-container {
		flex-direction: column;
		text-align: center;
	}
	
	.footer-links {
		justify-content: center;
	}
	
	.review-form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 1.8rem;
	}
	
	.section-title {
		font-size: 1.5rem;
	}
	
	.gold-btn, .outline-btn {
		padding: 10px 20px;
		font-size: 0.9rem;
	}
	
	.model-title {
		font-size: 1.2rem;
	}
	
	.container, .nav-container, .hero-container, .contact-container, .footer-container {
		padding: 0 16px;
	}
}

.checkbox-label {
	display: flex !important;
	align-items: center;
}

#orderAgree {
	width: 20px;
	height: 20px;
}

/*---------------------------------------*/

/* ===== SVG PRINTER ANIMATION ===== */
.hero-visual{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:500px;
    overflow:hidden;
}

/* ===== CINEMATIC GLOW ===== */

.hero-visual::after{

    content:"";

    position:absolute;

    width:320px;
    height:320px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(212,175,55,.18) 0%,
            rgba(212,175,55,.08) 35%,
            rgba(212,175,55,.03) 55%,
            transparent 75%
        );

    filter:blur(25px);

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    animation:orbMove 7s ease-in-out infinite;

    pointer-events:none;

    mix-blend-mode:screen;

    z-index:0;
}

@keyframes orbMove{

    0%{
        transform:
            translate(-50%,-50%)
            translate(-120px,-40px)
            scale(1);
    }

    25%{
        transform:
            translate(-50%,-50%)
            translate(80px,-90px)
            scale(1.15);
    }

    50%{
        transform:
            translate(-50%,-50%)
            translate(130px,40px)
            scale(.95);
    }

    75%{
        transform:
            translate(-50%,-50%)
            translate(-70px,90px)
            scale(1.1);
    }

    100%{
        transform:
            translate(-50%,-50%)
            translate(-120px,-40px)
            scale(1);
    }

}

/* ===== SVG CONTAINER ===== */

.printer-svg-container{
    width:100%;
    max-width:560px;
    margin:0 auto;
    display:flex;
    justify-content:center;
    align-items:center;
    perspective:1200px;
    position:relative;
    z-index:2;
}

.printer-svg{
    width:100%;
    height:auto;
    max-height:520px;

    overflow:visible;

    filter:
        drop-shadow(0 25px 50px rgba(0,0,0,.45))
        drop-shadow(0 0 25px rgba(212,175,55,.15));

    animation:printerFloat 6s ease-in-out infinite;
}

/* ===== FLOAT ===== */

@keyframes printerFloat{

    0%,100%{
        transform:
            translateY(0px)
            rotateX(0deg);
    }

    50%{
        transform:
            translateY(-8px)
            rotateX(1deg);
    }

}

/* ===== HEAD ===== */

.carriage-group{

    transform-box:fill-box;
    transform-origin:center;

    animation:
        carriageX 3.2s cubic-bezier(.55,.05,.45,.95) infinite,
        carriageShake .12s linear infinite;

    will-change:transform;
}

@keyframes carriageX{

    0%{
        transform:translateX(-65px);
    }

    25%{
        transform:translateX(70px);
    }

    50%{
        transform:translateX(20px);
    }

    75%{
        transform:translateX(-70px);
    }

    100%{
        transform:translateX(-65px);
    }

}

@keyframes carriageShake{

    0%{
        filter:blur(0px);
    }

    50%{
        filter:blur(.25px);
    }

    100%{
        filter:blur(0px);
    }

}

/* ===== FAN ===== */

.fan-blades{

    transform-origin:center;
    transform-box:fill-box;

    animation:spinFan .22s linear infinite;
}

@keyframes spinFan{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}

/* ===== HOTEND ===== */

.nozzle-hot{
    animation:nozzleHeat .8s ease-in-out infinite;
}

@keyframes nozzleHeat{

    0%,100%{
        fill:#ff5e00;
        opacity:.7;
    }

    50%{
        fill:#ff2200;
        opacity:1;
    }

}

.nozzle-glow{
    animation:nozzleGlow 1s ease-in-out infinite;
}

@keyframes nozzleGlow{

    0%,100%{
        opacity:.4;
    }

    50%{
        opacity:1;
    }

}

/* ===== FILAMENT ===== */

.filament-extrude{

    transform-box:fill-box;
    transform-origin:top center;

    animation:extrudeFlow .45s linear infinite;

    will-change:transform, opacity;
}

@keyframes extrudeFlow{

    0%{
        opacity:0;
        transform:scaleY(.2);
    }

    50%{
        opacity:1;
        transform:scaleY(1);
    }

    100%{
        opacity:0;
        transform:scaleY(.2);
    }

}

/* ===== PRINT MODEL ===== */

.layer{

    opacity:0;

    transform-box:fill-box;
    transform-origin:center;

    animation:layerPrint 6s linear infinite;

    will-change:transform, opacity;
}

.l1{ animation-delay:0s; }
.l2{ animation-delay:.7s; }
.l3{ animation-delay:1.4s; }
.l4{ animation-delay:2.1s; }
.l5{ animation-delay:2.8s; }
.l6{ animation-delay:3.5s; }

@keyframes layerPrint{

    0%{
        opacity:0;
        transform:scaleX(.05);
    }

    10%{
        opacity:1;
        transform:scaleX(1);
    }

    90%{
        opacity:1;
        transform:scaleX(1);
    }

    100%{
        opacity:0;
        transform:scaleX(.05);
    }

}

/* ===== BED ===== */

.bed-group{

    transform-box:fill-box;
    transform-origin:center;

    animation:bedMove 3.2s ease-in-out infinite;
}

@keyframes bedMove{

    0%,100%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(7px);
    }

}

/* ===== LED ===== */

.led{

    transform-box:fill-box;
    transform-origin:center;

    animation:ledPulse 1.8s ease-in-out infinite;
}

.r1{ animation-delay:0s; }
.r2{ animation-delay:.2s; }
.r3{ animation-delay:.4s; }
.r4{ animation-delay:.6s; }
.r5{ animation-delay:.8s; }
.r6{ animation-delay:1s; }

@keyframes ledPulse{

    0%,100%{
        opacity:.35;
        transform:scale(1);
    }

    50%{
        opacity:1;
        transform:scale(1.15);
    }

}

/* ===== CABLE ===== */

.cable{

    stroke-dasharray:240;
    stroke-dashoffset:240;

    animation:cableFlow 2.4s linear infinite;
}

@keyframes cableFlow{

    0%{
        stroke-dashoffset:0;
    }

    50%{
        stroke-dashoffset:240;
    }

    100%{
        stroke-dashoffset:0;
    }

}

/* ===== MOBILE ===== */

@media (max-width:900px){

    .printer-svg-container{
        max-width:360px;
    }

}

@media (max-width:480px){

    .hero-visual{
        min-height:340px;
    }

    .printer-svg-container{
        max-width:290px;
    }

    .hero-visual::after{
        width:220px;
        height:220px;
    }

}

.footer-seo-links {
	margin-top: 8px;
	font-size: 0.7rem;
	opacity: 0.5;
}

.footer-seo-links a {
	color: #aaa;
	text-decoration: none;
}

.footer-seo-links a:hover {
	color: #d4af37;
	opacity: 1;
}