/* HOLLOW FOX LTD - main stylesheet
   fitness & wellness app - 2025
   Scandinavian Natural Design with Organic Forms */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
	--color-primary: #2d6a4f;
	--color-primary-light: #40916c;
	--color-primary-dark: #1b4332;
	--color-accent: #e07a5f;
	--color-accent-light: #f4a261;
	--color-warm: #d4a373;
	--color-bg: #fefae0;
	--color-bg-alt: #faedcd;
	--color-bg-dark: #283618;
	--color-text: #283618;
	--color-text-light: #606c38;
	--color-white: #ffffff;
	--font-display: 'Playfair Display', Georgia, serif;
	--font-body: 'DM Sans', system-ui, sans-serif;
	--shadow-soft: 0 4px 20px rgba(40, 54, 24, 0.08);
	--shadow-medium: 0 8px 40px rgba(40, 54, 24, 0.12);
	--shadow-strong: 0 16px 60px rgba(40, 54, 24, 0.15);
	--radius: 16px;
	--radius-lg: 24px;
	--radius-xl: 40px;
	--header-h: 80px;
	--transition: 0.35s ease;
	--transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.7;
	color: var(--color-text);
	background: var(--color-bg);
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color var(--transition);
}

a:hover {
	color: var(--color-accent);
}


/* ===== HEADER ===== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: var(--header-h);
	background: rgba(254, 250, 224, 0.9);
	backdrop-filter: blur(12px);
	z-index: 1000;
	transition: all var(--transition);
}

.site-header.scrolled {
	box-shadow: var(--shadow-soft);
	height: 70px;
}

.header-inner {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 48px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.6rem;
	color: var(--color-primary-dark);
	letter-spacing: -0.02em;
}

.logo:hover {
	color: var(--color-primary);
}

.nav-list {
	display: flex;
	align-items: center;
	gap: 6px;
	list-style: none;
}

.nav-list a {
	display: block;
	padding: 10px 18px;
	color: var(--color-text);
	font-weight: 500;
	font-size: 0.95rem;
	border-radius: var(--radius);
	transition: all var(--transition);
}

.nav-list a:hover {
	background: var(--color-primary);
	color: var(--color-white);
}

.burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
}

.burger span {
	width: 26px;
	height: 2px;
	background: var(--color-text);
	border-radius: 2px;
	transition: var(--transition);
}

.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 1024px) {
	.header-inner { padding: 0 24px; }
	.burger { display: flex; }
	.nav-list {
		position: fixed;
		top: var(--header-h);
		left: 0;
		right: 0;
		background: var(--color-bg);
		flex-direction: column;
		padding: 32px 24px;
		gap: 8px;
		box-shadow: var(--shadow-medium);
		transform: translateY(-120%);
		opacity: 0;
		visibility: hidden;
		transition: all var(--transition);
	}
	.nav-list.open {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}
	.nav-list a {
		padding: 14px 20px;
		width: 100%;
		text-align: center;
	}
}


/* ===== HERO SECTION ===== */
.hero {
	position: relative;
	min-height: 100vh;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 80px;
	padding: calc(var(--header-h) + 80px) 48px 100px;
	max-width: 1600px;
	margin: 0 auto;
	overflow: hidden;
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-badge {
	display: inline-block;
	background: var(--color-primary);
	color: var(--color-white);
	padding: 8px 20px;
	border-radius: 30px;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 28px;
	letter-spacing: 0.03em;
}

.hero h1 {
	font-family: var(--font-display);
	font-size: clamp(3rem, 5.5vw, 4.5rem);
	font-weight: 700;
	color: var(--color-primary-dark);
	line-height: 1.1;
	margin-bottom: 28px;
	letter-spacing: -0.02em;
}

.hero h1 span {
	color: var(--color-accent);
}

.hero .lead {
	font-size: 1.2rem;
	color: var(--color-text-light);
	max-width: 480px;
	margin-bottom: 40px;
	line-height: 1.8;
}

.hero-cta {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.hero-visual {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-img-wrap {
	position: relative;
	width: 100%;
	max-width: 540px;
}

.hero-img-main {
	width: 100%;
	height: 600px;
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-strong);
}

.hero-img-main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-img-float {
	position: absolute;
	width: 200px;
	height: 200px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-medium);
	border: 4px solid var(--color-white);
}

.hero-img-float:nth-child(2) {
	bottom: -40px;
	left: -60px;
}

.hero-img-float:nth-child(3) {
	top: 60px;
	right: -40px;
	width: 160px;
	height: 160px;
}

.hero-img-float img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-decoration {
	position: absolute;
	width: 300px;
	height: 300px;
	background: var(--color-accent-light);
	opacity: 0.2;
	border-radius: 50%;
	top: 20%;
	right: -100px;
	z-index: 0;
}

@media (max-width: 1024px) {
	.hero {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 60px;
		padding: calc(var(--header-h) + 60px) 24px 80px;
	}
	.hero .lead { margin: 0 auto 40px; }
	.hero-cta { justify-content: center; }
	.hero-img-main { height: 450px; max-width: 400px; margin: 0 auto; }
	.hero-img-float { display: none; }
}


/* ===== BUTTONS ===== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 32px;
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 600;
	border-radius: var(--radius);
	border: none;
	cursor: pointer;
	transition: all var(--transition);
}

.btn:hover {
	transform: translateY(-3px);
}

.btn-primary {
	background: var(--color-primary);
	color: var(--color-white);
	box-shadow: 0 8px 24px rgba(45, 106, 79, 0.25);
}

.btn-primary:hover {
	background: var(--color-primary-dark);
	box-shadow: 0 12px 32px rgba(45, 106, 79, 0.35);
}

.btn-outline {
	background: transparent;
	color: var(--color-primary);
	border: 2px solid var(--color-primary);
}

.btn-outline:hover {
	background: var(--color-primary);
	color: var(--color-white);
}


/* ===== SECTION COMMON ===== */
section {
	padding: 120px 48px;
	max-width: 1600px;
	margin: 0 auto;
}

.section-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 80px;
}

.section-tag {
	display: inline-block;
	color: var(--color-accent);
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 16px;
}

.section-title {
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	font-weight: 700;
	color: var(--color-primary-dark);
	margin-bottom: 20px;
	letter-spacing: -0.02em;
}

.section-desc {
	color: var(--color-text-light);
	font-size: 1.1rem;
	line-height: 1.8;
}

@media (max-width: 768px) {
	section { padding: 80px 24px; }
	.section-header { margin-bottom: 60px; }
}


/* ===== FEATURES SECTION ===== */
.features-section {
	background: var(--color-bg-alt);
	padding: 120px 48px;
	position: relative;
}

.features-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 80px;
	background: var(--color-bg);
	clip-path: ellipse(60% 100% at 50% 0%);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px;
	max-width: 1400px;
	margin: 0 auto;
}

.feature-card {
	background: var(--color-white);
	border-radius: var(--radius-lg);
	padding: 40px 36px;
	box-shadow: var(--shadow-soft);
	transition: all var(--transition);
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 0;
	background: var(--color-primary);
	transition: height var(--transition);
}

.feature-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-medium);
}

.feature-card:hover::before {
	height: 100%;
}

.feature-icon {
	width: 60px;
	height: 60px;
	background: var(--color-bg-alt);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	font-size: 1.8rem;
}

.feature-card h3 {
	font-family: var(--font-display);
	font-size: 1.4rem;
	color: var(--color-primary-dark);
	margin-bottom: 14px;
}

.feature-card p {
	color: var(--color-text-light);
	line-height: 1.7;
}


/* ===== ALTERNATING CONTENT SECTIONS ===== */
.content-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	padding: 100px 48px;
	max-width: 1400px;
	margin: 0 auto;
}

.content-block.reverse {
	direction: rtl;
}

.content-block.reverse > * {
	direction: ltr;
}

.content-block-text {
	max-width: 520px;
}

.content-block-text h2 {
	font-family: var(--font-display);
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	color: var(--color-primary-dark);
	margin-bottom: 20px;
	line-height: 1.2;
}

.content-block-text p {
	color: var(--color-text-light);
	margin-bottom: 28px;
	line-height: 1.8;
}

.content-block-text ul {
	list-style: none;
	margin-bottom: 32px;
}

.content-block-text li {
	padding: 10px 0;
	padding-left: 32px;
	position: relative;
	color: var(--color-text-light);
}

.content-block-text li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--color-primary);
	font-weight: 700;
}

.content-block-image {
	position: relative;
}

.content-block-image img {
	width: 100%;
	height: 450px;
	object-fit: cover;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-medium);
}

.content-block-image::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 20px;
	left: 20px;
	background: var(--color-accent-light);
	opacity: 0.3;
	border-radius: var(--radius-xl);
	z-index: -1;
}

@media (max-width: 900px) {
	.content-block {
		grid-template-columns: 1fr;
		gap: 48px;
		padding: 60px 24px;
	}
	.content-block.reverse { direction: ltr; }
	.content-block-image img { height: 350px; }
}


/* ===== STATS SECTION ===== */
.stats-section {
	background: var(--color-primary-dark);
	padding: 100px 48px;
	color: var(--color-white);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 48px;
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.stat-item h3 {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--color-accent-light);
}

.stat-item p {
	font-size: 1rem;
	opacity: 0.85;
}

@media (max-width: 768px) {
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}
}


/* ===== ACCORDION ===== */
.accordion-section {
	background: var(--color-bg);
}

.accordion-wrap {
	max-width: 800px;
	margin: 0 auto;
}

.accordion-item {
	background: var(--color-white);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	margin-bottom: 16px;
	overflow: hidden;
}

.accordion-trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 28px;
	background: none;
	border: none;
	font-family: var(--font-body);
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--color-primary-dark);
	text-align: left;
	cursor: pointer;
	transition: all var(--transition);
}

.accordion-trigger:hover {
	background: var(--color-bg-alt);
}

.accordion-trigger::after {
	content: '+';
	font-size: 1.5rem;
	color: var(--color-primary);
	transition: transform var(--transition);
}

.accordion-item.open .accordion-trigger::after {
	transform: rotate(45deg);
}

.accordion-panel {
	display: none;
	padding: 0 28px 24px;
}

.accordion-item.open .accordion-panel {
	display: block;
}

.accordion-panel p {
	color: var(--color-text-light);
	line-height: 1.8;
}


/* ===== TESTIMONIALS / SLIDER ===== */
.slider-section {
	background: var(--color-bg-alt);
	padding: 120px 48px;
	position: relative;
	overflow: hidden;
}

.slider-track-wrap {
	max-width: 1400px;
	margin: 0 auto;
	overflow: visible;
}

.slider-track {
	display: flex;
	gap: 32px;
	transition: transform 0.5s ease;
}

.slider-card {
	flex: 0 0 calc(50% - 16px);
	max-width: 600px;
	background: var(--color-white);
	border-radius: var(--radius-lg);
	padding: 48px 40px;
	box-shadow: var(--shadow-soft);
	transition: all var(--transition);
}

.slider-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-medium);
}

.slider-card h3 {
	font-family: var(--font-display);
	font-size: 1.5rem;
	color: var(--color-primary-dark);
	margin-bottom: 16px;
}

.slider-card p {
	color: var(--color-text-light);
	line-height: 1.8;
}

.slider-dots {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 48px;
}

.slider-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--color-primary);
	opacity: 0.3;
	border: none;
	cursor: pointer;
	transition: all var(--transition);
}

.slider-dot.active {
	opacity: 1;
	width: 36px;
	border-radius: 6px;
}

@media (max-width: 900px) {
	.slider-card { flex: 0 0 calc(100% - 48px); }
}


/* ===== CONTACT FORM ===== */
.contact-section {
	background: var(--color-bg);
	padding: 120px 48px;
}

.contact-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	max-width: 1200px;
	margin: 0 auto;
	align-items: start;
}

.contact-info h2 {
	font-family: var(--font-display);
	font-size: 2.4rem;
	color: var(--color-primary-dark);
	margin-bottom: 24px;
}

.contact-info p {
	color: var(--color-text-light);
	margin-bottom: 40px;
	line-height: 1.8;
}

.contact-details {
	list-style: none;
}

.contact-details li {
	padding: 16px 0;
	border-bottom: 1px solid rgba(40, 54, 24, 0.1);
	color: var(--color-text);
}

.contact-details li strong {
	display: block;
	color: var(--color-primary-dark);
	font-weight: 600;
	margin-bottom: 4px;
}

.form-wrap {
	background: var(--color-white);
	padding: 48px;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-medium);
}

.form-group {
	margin-bottom: 24px;
}

.form-group label {
	display: block;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--color-primary-dark);
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 16px 20px;
	border: 2px solid var(--color-bg-alt);
	border-radius: var(--radius);
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--color-text);
	background: var(--color-bg);
	transition: all var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--color-primary);
	background: var(--color-white);
}

.form-group textarea {
	min-height: 140px;
	resize: vertical;
}

.form-wrap .btn {
	width: 100%;
}

@media (max-width: 900px) {
	.contact-wrap {
		grid-template-columns: 1fr;
		gap: 48px;
	}
}


/* ===== FOOTER ===== */
.site-footer {
	background: var(--color-bg-dark);
	color: var(--color-white);
	padding: 80px 48px 40px;
}

.footer-inner {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 60px;
}

.footer-col h4 {
	font-family: var(--font-display);
	font-size: 1.2rem;
	margin-bottom: 24px;
	color: var(--color-accent-light);
}

.footer-col p {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.8;
	margin-bottom: 20px;
}

.footer-col ul {
	list-style: none;
}

.footer-col li {
	margin-bottom: 12px;
}

.footer-col a {
	color: rgba(255, 255, 255, 0.7);
	transition: color var(--transition);
}

.footer-col a:hover {
	color: var(--color-white);
}

.footer-bottom {
	max-width: 1400px;
	margin: 60px auto 0;
	padding-top: 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 900px) {
	.footer-inner {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
}

@media (max-width: 600px) {
	.footer-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
}


/* ===== COOKIE BANNER ===== */
.cookie-banner {
	position: fixed;
	bottom: 24px;
	left: 24px;
	right: 24px;
	max-width: 500px;
	background: var(--color-white);
	padding: 28px 32px;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-strong);
	z-index: 9999;
	display: none;
}

.cookie-banner.show {
	display: block;
}

.cookie-banner p {
	margin: 0 0 20px;
	color: var(--color-text-light);
	font-size: 0.95rem;
	line-height: 1.7;
}

.cookie-banner a {
	color: var(--color-primary);
	text-decoration: underline;
}

.cookie-banner .btn {
	width: 100%;
}


/* ===== POLICY PAGES ===== */
.page-content {
	padding-top: calc(var(--header-h) + 60px);
	padding-bottom: 100px;
	min-height: 100vh;
}

.page-content .inner {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 48px;
}

.page-content h1 {
	font-family: var(--font-display);
	font-size: 2.8rem;
	color: var(--color-primary-dark);
	margin-bottom: 32px;
}

.page-content h2 {
	font-family: var(--font-display);
	font-size: 1.6rem;
	color: var(--color-primary-dark);
	margin-top: 48px;
	margin-bottom: 16px;
}

.page-content p,
.page-content li {
	color: var(--color-text-light);
	margin-bottom: 16px;
	line-height: 1.8;
}

.page-content ul {
	padding-left: 28px;
	margin-bottom: 24px;
}


/* ===== THANKS PAGE ===== */
.thanks-block {
	text-align: center;
	padding: 160px 48px 120px;
	max-width: 600px;
	margin: 0 auto;
}

.thanks-block h1 {
	font-family: var(--font-display);
	font-size: 3rem;
	color: var(--color-primary-dark);
	margin-bottom: 20px;
}

.thanks-block p {
	color: var(--color-text-light);
	margin-bottom: 32px;
	font-size: 1.15rem;
	line-height: 1.8;
}


/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-fade-up {
	animation: fadeInUp 0.7s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }


/* ===== PROCESS STEPS SECTION ===== */
.process-section {
	background: var(--color-bg);
	padding: 120px 48px;
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	max-width: 1400px;
	margin: 0 auto;
}

.process-step {
	text-align: center;
	padding: 40px 28px;
	position: relative;
}

.process-step::after {
	content: '';
	position: absolute;
	top: 60px;
	right: -16px;
	width: 32px;
	height: 2px;
	background: var(--color-primary);
	opacity: 0.3;
}

.process-step:last-child::after {
	display: none;
}

.process-number {
	font-family: var(--font-display);
	font-size: 3.5rem;
	font-weight: 700;
	color: var(--color-primary);
	opacity: 0.2;
	margin-bottom: 20px;
	line-height: 1;
}

.process-step h3 {
	font-family: var(--font-display);
	font-size: 1.3rem;
	color: var(--color-primary-dark);
	margin-bottom: 14px;
}

.process-step p {
	color: var(--color-text-light);
	font-size: 0.95rem;
	line-height: 1.7;
}

@media (max-width: 1024px) {
	.process-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}
	.process-step::after {
		display: none;
	}
}

@media (max-width: 600px) {
	.process-grid {
		grid-template-columns: 1fr;
	}
}


/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
	background: var(--color-primary-dark);
	padding: 120px 48px;
}

.testimonials-section .section-header {
	color: var(--color-white);
}

.testimonials-section .section-tag {
	color: var(--color-accent-light);
}

.testimonials-section .section-title {
	color: var(--color-white);
}

.testimonials-section .section-desc {
	color: rgba(255, 255, 255, 0.75);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	max-width: 1400px;
	margin: 0 auto;
}

.testimonial-card {
	background: rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-lg);
	padding: 40px 32px;
	transition: all var(--transition);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card:hover {
	background: rgba(255, 255, 255, 0.12);
	transform: translateY(-6px);
}

.testimonial-content {
	margin-bottom: 28px;
}

.testimonial-content p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1rem;
	line-height: 1.8;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 16px;
}

.testimonial-avatar {
	width: 50px;
	height: 50px;
	background: var(--color-accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: var(--color-white);
	font-size: 1rem;
}

.testimonial-info strong {
	display: block;
	color: var(--color-white);
	font-weight: 600;
	margin-bottom: 2px;
}

.testimonial-info span {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
}

@media (max-width: 1024px) {
	.testimonials-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 700px) {
	.testimonials-grid {
		grid-template-columns: 1fr;
	}
}
