@media (max-width: 900px) {}

@media (max-width: 768px) {}

@media (max-width: 768px) {}

@media (max-width: 1024px) {}

@media (max-width: 768px) {}

.snake-input-wrapper {
	position: relative;
	padding: 2px;
	border-radius: var(--radius-md);
	background: #e2e8f0;
	overflow: visible;
	margin-bottom: 16px;
}

.snake-border-svg {
	position: absolute;
	top: -2px;
	left: -2px;
	width: calc(100% + 4px);
	height: calc(100% + 4px);
	pointer-events: none;
	z-index: 10;
	overflow: visible;
}

.snake-border-path {
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-dasharray: 1000;
	stroke-dashoffset: 1000;
	opacity: 0;
}

.snake-input-wrapper input, .snake-input-wrapper select, .snake-input-wrapper textarea {
	width: 100%;
	padding: 12px 16px;
	border: none !important;
	border-radius: calc(var(--radius-md) - 2px);
	font-family: var(--font-sans);
	font-size: 1rem;
	color: var(--text-main);
	background: #f8fafc;
	margin-bottom: 0 !important;
	transition: background .2s ease;
	box-sizing: border-box;
	position: relative;
	z-index: 2;
}

.snake-input-wrapper input:focus, .snake-input-wrapper select:focus, .snake-input-wrapper textarea:focus {
	outline: none;
	background: #fff;
}

.snake-card-svg {
	position: absolute;
	top: -1px;
	left: -1px;
	width: calc(100% + 2px);
	height: calc(100% + 2px);
	pointer-events: none;
	z-index: 0;
	overflow: visible;
}

.snake-card-path {
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-dasharray: 2000;
	stroke-dashoffset: 2000;
	opacity: 0;
}

@media (max-width: 600px) {}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: var(--space-lg);
}

.testimonial-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-xl);
	padding: var(--space-xl);
	box-shadow: var(--shadow-md);
	position: relative;
	transition: all .4s ease;
}

.testimonial-card:hover {
	transform: translateY(-6px) scale(1.02);
	box-shadow: var(--shadow-premium);
	border-color: var(--primary);
}

.testimonial-card::after {
	content: "";
	position: absolute;
	top: 32px;
	right: 32px;
	width: 36px;
	height: 36px;
	background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="%230F172A" xmlns="http://www.w3.org/2000/svg"><path d="M14.017 21v-7.391c0-5.704 3.731-9.57 8.983-10.609l.995 2.151c-2.432.917-3.995 3.638-3.995 5.849h4v10h-9.983zm-14.017 0v-7.391c0-5.704 3.748-9.57 9-10.609l.996 2.151c-2.433.917-3.996 3.638-3.996 5.849h3.983v10h-9.983z"/></svg>') no-repeat center;
	opacity: .05;
}

.testimonial-stars {
	color: #f59e0b;
	font-size: 1.2rem;
	letter-spacing: 4px;
	margin-bottom: 24px;
	background: rgba(245, 158, 11, .1);
	display: inline-block;
	padding: 6px 16px;
	border-radius: var(--radius-pill);
}

.testimonial-text {
	font-size: 1.1rem;
	color: var(--text-main);
	font-weight: 500;
	margin-bottom: 28px;
	position: relative;
	z-index: 1;
	line-height: 1.7;
}

.testimonial-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid var(--border-subtle);
	padding-top: 20px;
}

.testimonial-author {
	font-weight: 800;
	color: var(--primary);
	font-size: 1.1rem;
}

.testimonial-company {
	font-size: .85rem;
	background: var(--bg-page);
	padding: 6px 12px;
	border-radius: var(--radius-pill);
	font-weight: 700;
	color: var(--text-muted);
}

@media (max-width: 900px) {}