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

:root {
	--flame-orange: #ff6b35;
	--fire-red: #ff0000;
	--ember-yellow: #ffa726;
	--phoenix-gold: #ffb300;
	--dark-ember: #1a0000;
	--smoke: #2d2d2d;
	--ash: #f5f5f5;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: var(--smoke);
	background: var(--dark-ember);
	overflow-x: hidden;

	text-align: justify;
	text-justify: inter-word;
	hyphens: none;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
}

html {
	scroll-behavior: smooth;
}

/* Animations */
@keyframes softGlow {
	0% {
		opacity: 0;
		transform: scale(0.5);
	}
	50% {
		opacity: 0.6;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(0.5);
	}
}

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

@keyframes float {
	0%, 100% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-30px) rotate(5deg);
	}
}

@keyframes ember {
	0% {
		transform: translateY(0) translateX(0) scale(1);
		opacity: 1;
	}
	50% {
		transform: translateY(-50vh) translateX(30px) scale(0.8);
		opacity: 0.8;
	}
	100% {
		transform: translateY(-100vh) translateX(-20px) scale(0.3);
		opacity: 0;
	}
}

@keyframes gradient-shift {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

/* Glow lights */
.glow-light {
	position: fixed;
	width: 3px;
	height: 3px;
	background: var(--ember-yellow);
	border-radius: 50%;
	pointer-events: none;
	z-index: 1;
	animation: softGlow 6s ease-in-out infinite;
	box-shadow: 0 0 20px var(--ember-yellow);
	filter: blur(1px);
}

.glow-light:nth-child(1) {
	left: 10%;
	top: 20%;
	animation-delay: 0s;
	animation-duration: 7s;
}

.glow-light:nth-child(2) {
	left: 25%;
	top: 60%;
	animation-delay: 2s;
	animation-duration: 6s;
}

.glow-light:nth-child(3) {
	left: 40%;
	top: 15%;
	animation-delay: 4s;
	animation-duration: 8s;
}

.glow-light:nth-child(4) {
	left: 55%;
	top: 70%;
	animation-delay: 1s;
	animation-duration: 7s;
}

.glow-light:nth-child(5) {
	left: 70%;
	top: 30%;
	animation-delay: 3s;
	animation-duration: 6s;
}

.glow-light:nth-child(6) {
	left: 85%;
	top: 50%;
	animation-delay: 5s;
	animation-duration: 8s;
}

.glow-light:nth-child(7) {
	left: 15%;
	top: 80%;
	animation-delay: 6s;
	animation-duration: 7s;
}

.glow-light:nth-child(8) {
	left: 60%;
	top: 10%;
	animation-delay: 2.5s;
	animation-duration: 6s;
}

.glow-light:nth-child(9) {
	left: 80%;
	top: 90%;
	animation-delay: 4.5s;
	animation-duration: 8s;
}

.glow-light:nth-child(10) {
	left: 35%;
	top: 40%;
	animation-delay: 1.5s;
	animation-duration: 7s;
}

/* Fire particles */
.fire-particle {
	position: fixed;
	width: 6px;
	height: 6px;
	background: var(--ember-yellow);
	border-radius: 50%;
	pointer-events: none;
	z-index: 1;
	animation: ember 12s infinite;
	box-shadow: 0 0 15px var(--ember-yellow);
}

.fire-particle:nth-child(11) {
	left: 5%;
	animation-delay: 0s;
}

.fire-particle:nth-child(12) {
	left: 15%;
	animation-delay: 2s;
}

.fire-particle:nth-child(13) {
	left: 25%;
	animation-delay: 4s;
}

.fire-particle:nth-child(14) {
	left: 35%;
	animation-delay: 1s;
}

.fire-particle:nth-child(15) {
	left: 45%;
	animation-delay: 3s;
}

.fire-particle:nth-child(16) {
	left: 55%;
	animation-delay: 5s;
}

.fire-particle:nth-child(17) {
	left: 65%;
	animation-delay: 2.5s;
}

.fire-particle:nth-child(18) {
	left: 75%;
	animation-delay: 4.5s;
}

.fire-particle:nth-child(19) {
	left: 85%;
	animation-delay: 1.5s;
}

.fire-particle:nth-child(20) {
	left: 95%;
	animation-delay: 3.5s;
}

/* Navigation */
nav {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(26, 0, 0, 0.85);
	backdrop-filter: blur(15px);
	padding: 1rem 2rem;
	z-index: 1000;
	border-bottom: 3px solid var(--flame-orange);
	box-shadow: 0 8px 40px rgba(255, 107, 53, 0.5);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

nav::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 10% 50%, rgba(255, 107, 53, 0.3) 0%, transparent 30%),
	radial-gradient(circle at 30% 50%, rgba(255, 0, 0, 0.2) 0%, transparent 30%),
	radial-gradient(circle at 50% 50%, rgba(255, 179, 0, 0.2) 0%, transparent 30%),
	radial-gradient(circle at 70% 50%, rgba(255, 107, 53, 0.25) 0%, transparent 30%),
	radial-gradient(circle at 90% 50%, rgba(255, 0, 0, 0.2) 0%, transparent 30%);
	animation: fireGlow 3s ease-in-out infinite;
	z-index: -1;
}

/* Logo */
.logo-container {
	display: flex;
	align-items: center;
	gap: 1rem;
	z-index: 1001;
}

.logo-icon {
	font-size: 2.5rem;
	filter: drop-shadow(0 0 10px var(--flame-orange));
}

.logo-text {
	font-size: 1.4rem;
	font-weight: 900;
	background: linear-gradient(45deg, var(--flame-orange), var(--phoenix-gold), var(--fire-red));
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: gradient-shift 3s ease infinite;
	letter-spacing: 1px;
	white-space: nowrap;
}

/* Desktop Menu */
.desktop-menu {
	list-style: none;
	display: flex;
	gap: 3rem;
	align-items: center;
}

.desktop-menu a {
	color: var(--ash);
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 600;
	letter-spacing: 1px;
	position: relative;
	transition: all 0.3s;
}

.desktop-menu a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--flame-orange), var(--phoenix-gold));
	transition: width 0.3s;
	box-shadow: 0 0 10px var(--flame-orange);
}

.desktop-menu a:hover {
	color: var(--phoenix-gold);
	text-shadow: 0 0 10px var(--phoenix-gold);
}

.desktop-menu a:hover::after {
	width: 100%;
}

/* Hamburger Menu Button */
.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 0.5rem;
	z-index: 1001;
	background: none;
	border: none;
}

.hamburger span {
	width: 30px;
	height: 3px;
	background: var(--ash);
	border-radius: 2px;
	transition: all 0.3s;
}

.hamburger:hover span {
	background: var(--phoenix-gold);
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.mobile-menu {
	position: fixed;
	top: 70px;
	left: 0;
	right: 0;
	background: rgba(26, 0, 0, 0.98);
	backdrop-filter: blur(15px);
	border-bottom: 3px solid var(--flame-orange);
	box-shadow: 0 8px 40px rgba(255, 107, 53, 0.5);
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
	z-index: 999;
}

.mobile-menu.active {
	max-height: 500px;
}

.mobile-menu ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	padding: 1rem 0;
}

.mobile-menu a {
	color: var(--ash);
	font-size: 1.3rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s;
	padding: 1rem 2rem;
	display: block;
	width: 100%;
	text-align: center;
	border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.mobile-menu li:last-child a {
	border-bottom: none;
}

.mobile-menu a:hover {
	color: var(--phoenix-gold);
	background: rgba(255, 107, 53, 0.1);
}

/* Responsive - Show hamburger on mobile */
@media (max-width: 968px) {
	.desktop-menu {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.logo-text {
		font-size: 1.2rem;
	}

	.logo-icon {
		font-size: 2rem;
	}
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: linear-gradient(135deg, #1a0000 0%, #330000 30%, #1a0000 60%, #0d0000 100%);
	overflow: hidden;
	padding-top: 100px;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(ellipse at 30% 40%, rgba(255, 107, 53, 0.4) 0%, transparent 50%),
	radial-gradient(ellipse at 70% 60%, rgba(255, 0, 0, 0.3) 0%, transparent 50%),
	radial-gradient(ellipse at 50% 20%, rgba(255, 179, 0, 0.3) 0%, transparent 50%),
	radial-gradient(ellipse at 20% 80%, rgba(255, 107, 53, 0.3) 0%, transparent 50%);
	animation: fireGlow 5s ease-in-out infinite;
}

.hero-content {
	text-align: center;
	position: relative;
	z-index: 10;
	animation: float 6s ease-in-out infinite;
	padding: 0 1rem;
}

.hero-logo-big {
	margin-bottom: 2rem;
}

.hero-logo-icon {
	font-size: 10rem;
	filter: drop-shadow(0 0 40px var(--flame-orange)) drop-shadow(0 0 80px var(--fire-red));
	animation: pulse 3s ease-in-out infinite;
}

.hero h1 {
	font-size: 5rem;
	background: linear-gradient(45deg, var(--flame-orange), var(--phoenix-gold), var(--fire-red), var(--ember-yellow));
	background-size: 300% auto;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: gradient-shift 4s ease infinite;
	font-weight: 900;
	margin-bottom: 1rem;
	text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
	letter-spacing: 2px;
}

.hero h2 {
	font-size: 2rem;
	color: var(--ash);
	font-weight: 300;
	margin-bottom: 3rem;
	font-style: italic;
}

.cta-button {
	display: inline-block;
	padding: 1.5rem 4rem;
	background: linear-gradient(135deg, var(--flame-orange), var(--fire-red));
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: 2px;
	box-shadow: 0 10px 40px rgba(255, 107, 53, 0.6);
	transition: all 0.3s;
	border: 2px solid transparent;
	position: relative;
	overflow: hidden;
}

.cta-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s;
}

.cta-button:hover::before {
	left: 100%;
}

.cta-button:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 15px 60px rgba(255, 0, 0, 0.8);
	border-color: var(--phoenix-gold);
}

/* About Section */
.about {
	padding: 8rem 2rem;
	background: linear-gradient(180deg, var(--dark-ember) 0%, #0d0000 100%);
	position: relative;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
}

.section-title {
	font-size: 4rem;
	text-align: center;
	background: linear-gradient(45deg, var(--flame-orange), var(--phoenix-gold));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 1rem;
	font-weight: 800;
}

.section-subtitle {
	text-align: center;
	font-size: 1.5rem;
	color: var(--ash);
	margin-bottom: 4rem;
	font-weight: 300;
}

.about-content {
	background: rgba(255, 107, 53, 0.08);
	padding: 4rem;
	border-radius: 30px;
	border: 2px solid var(--flame-orange);
	box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
}

.about-content::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
	border-radius: 50%;
	animation: pulse 4s ease-in-out infinite;
}

.about-content p {
	font-size: 1.3rem;
	line-height: 2;
	color: var(--ash);
	margin-bottom: 2rem;
	position: relative;
	z-index: 1;
}

.highlight {
	color: var(--phoenix-gold);
	font-weight: 700;
}

/* Packages Section */
.packages {
	padding: 8rem 2rem;
	background: var(--dark-ember);
	position: relative;
}

.packages::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 200px;
	background: linear-gradient(to bottom, #0d0000, transparent);
}

.packages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 3rem;
	margin-top: 4rem;
	position: relative;
	z-index: 2;
	align-items: start;
}

.package-card {
	background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 0, 0, 0.05));
	padding: 3rem;
	border-radius: 30px;
	border: 2px solid transparent;
	transition: all 0.4s;
	position: relative;
	overflow: hidden;
	height: fit-content;
}

.package-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, var(--flame-orange), var(--fire-red));
	opacity: 0;
	transition: opacity 0.4s;
	z-index: -1;
}

.package-card:hover::before {
	opacity: 0.15;
}

.package-card:hover {
	transform: translateY(-15px) scale(1.02);
	border-color: var(--flame-orange);
	box-shadow: 0 30px 80px rgba(255, 107, 53, 0.5);
}

.package-icon {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	filter: drop-shadow(0 5px 15px var(--flame-orange));
}

.package-card h3 {
	font-size: 2.5rem;
	color: var(--phoenix-gold);
	margin-bottom: 1rem;
}

.package-card .price {
	font-size: 1.8rem;
	color: var(--ash);
	margin-bottom: 1rem;
	font-weight: 700;
}

.package-card .price strong {
	font-size: 2.5rem;
	color: var(--phoenix-gold);
	text-shadow: 0 0 20px rgba(255, 179, 0, 0.5);
	display: inline-block;
	padding: 0.5rem 1rem;
	background: rgba(255, 179, 0, 0.1);
	border-radius: 15px;
	border: 2px solid var(--phoenix-gold);
	margin-top: 0.75rem;
}

.package-card .price-sub {
	font-size: 1.1rem;
	color: var(--ember-yellow);
	margin-bottom: 2rem;
}

.package-card p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--ash);
	margin-bottom: 2rem;
}

.package-features {
	list-style: none;
	padding: 0;
}

.package-features li {
	padding: 1rem 0;
	padding-left: 2rem;
	position: relative;
	color: var(--ash);
	font-size: 1.05rem;
	border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.package-features li:last-child {
	border-bottom: none;
}

.package-features li::before {
	content: '🔥';
	position: absolute;
	left: 0;
	font-size: 1.2rem;
}

.package-features li.no-icon::before {
	content: none; /* vagy content: ''; */
}

.package-features .bonus {
	color: var(--phoenix-gold);
}

.package-cta {
	display: inline-block;
	margin-top: 2rem;
	padding: 1rem 2.5rem;
	background: linear-gradient(135deg, var(--flame-orange), var(--fire-red));
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 700;
	transition: all 0.3s;
	border: 2px solid transparent;
	margin-bottom: 1rem;
}

.package-cta:hover {
	background: linear-gradient(135deg, var(--fire-red), var(--flame-orange));
	transform: scale(1.05);
	border-color: var(--phoenix-gold);
	box-shadow: 0 10px 30px rgba(255, 0, 0, 0.6);
}

.package-card.featured {
	border-color: var(--phoenix-gold);
	background: linear-gradient(135deg, rgba(255, 179, 0, 0.15), rgba(255, 107, 53, 0.1));
	position: relative;
}

.featured-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: linear-gradient(135deg, var(--phoenix-gold), var(--ember-yellow));
	color: var(--dark-ember);
	padding: 0.5rem 1.5rem;
	border-radius: 20px;
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 1px;
	animation: pulse 2s ease-in-out infinite;
}

/* References Section */
.references {
	padding: 8rem 2rem;
	background: linear-gradient(180deg, var(--dark-ember) 0%, #1a0000 100%);
}

.references-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 4rem;
}

.reference-card {
	background: rgba(255, 107, 53, 0.08);
	padding: 2rem;
	border-radius: 20px;
	border: 2px solid rgba(255, 107, 53, 0.3);
	transition: all 0.3s;
}

.reference-card:hover {
	transform: translateY(-10px);
	border-color: var(--flame-orange);
	box-shadow: 0 20px 50px rgba(255, 107, 53, 0.4);
}

.reference-card h4 {
	color: var(--phoenix-gold);
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.reference-card p {
	color: var(--ash);
	font-size: 1.05rem;
	line-height: 1.8;
}

/* Testimonials */
.testimonials {
	padding: 8rem 2rem;
	background: #0d0000;
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 3rem;
	margin-top: 4rem;
}

.testimonial-card {
	background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(26, 0, 0, 0.8));
	padding: 3rem;
	border-radius: 25px;
	border-left: 5px solid var(--flame-orange);
	position: relative;
}

.testimonial-card::before {
	content: '"';
	position: absolute;
	top: 20px;
	left: 20px;
	font-size: 6rem;
	color: var(--flame-orange);
	opacity: 0.3;
	font-family: Georgia, serif;
}

.testimonial-text {
	color: var(--ash);
	font-size: 1.15rem;
	line-height: 1.8;
	margin-bottom: 2rem;
	position: relative;
	z-index: 1;
}

.testimonial-author {
	color: var(--phoenix-gold);
	font-weight: 700;
	font-size: 1.2rem;
}

.testimonial-role {
	color: var(--ember-yellow);
	font-size: 0.95rem;
}

/* Contact Section */
.contact {
	padding: 8rem 2rem;
	background: linear-gradient(135deg, var(--dark-ember), #1a0000);
	position: relative;
}

.contact-container {
	max-width: 900px;
	margin: 0 auto;
	background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(255, 0, 0, 0.08));
	border-radius: 30px;
	border: 2px solid var(--flame-orange);
	box-shadow: 0 30px 80px rgba(255, 107, 53, 0.4);
	padding: 3rem;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-top: 3rem;
	text-align: center;
}

.contact-item {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.contact-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
	filter: drop-shadow(0 5px 15px var(--flame-orange));
}

.contact-item h4 {
	color: var(--phoenix-gold);
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.contact-item p {
	color: var(--ash);
	font-size: 1.1rem;
	line-height: 1.6;
}

.contact-item a {
	color: var(--ember-yellow);
	text-decoration: none;
	transition: all 0.3s;
}

.contact-item a:hover {
	color: var(--phoenix-gold);
}

/* Footer */
footer {
	background: var(--dark-ember);
	color: var(--ash);
	text-align: center;
	padding: 3rem 2rem;
	border-top: 2px solid var(--flame-orange);
}

footer p {
	margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 3rem;
	}

	.hero h2 {
		font-size: 1.5rem;
	}

	.hero-logo-icon {
		font-size: 6rem;
	}

	.cta-button {
		padding: 1rem 2rem;
		font-size: 1rem;
	}

	.about-content {
		padding: 2rem;
	}

	.section-title {
		font-size: 2.5rem;
	}

	.packages-grid,
	.references-grid,
	.testimonial-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.hero h1 {
		font-size: 2rem;
	}

	.section-title {
		font-size: 2rem;
	}
}

/* GYIK accordion */
#gyik {
	padding: 5rem 2rem;
	background: linear-gradient(180deg, var(--dark-ember), #0d0000);
}

.faq-container {
	max-width: 900px;
	margin: 0 auto;
}

.faq-item {
	border-bottom: 1px solid rgba(255, 179, 0, 0.3);
	padding: 1rem 0;
}

.faq-question {
	cursor: pointer;
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--phoenix-gold);
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: color 0.3s;
}

.faq-question:hover {
	color: var(--ember-yellow);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: all 0.4s ease;
	line-height: 1.7;
	color: var(--ash);
	margin-top: 0.5rem;
}

.faq-item.active .faq-answer {
	max-height: 500px;
	opacity: 1;
}

.toggle-icon {
	font-size: 1.5rem;
	transition: transform 0.3s;
}

.faq-item.active .toggle-icon {
	transform: rotate(45deg);
}

.hero-quicklink {
	margin-top: 1.5rem;
	text-align: center;
}

.hero-quicklink a {
	font-size: 0.95rem;
	color: var(--ember-yellow);
	text-decoration: none;
	opacity: 0.75;
	transition: all 0.3s ease;
	border-bottom: 1px dashed rgba(255, 179, 0, 0.4);
	padding-bottom: 2px;
}

.hero-quicklink a:hover {
	opacity: 1;
	color: var(--phoenix-gold);
	border-bottom-color: var(--phoenix-gold);
}

.testimonial-link {
	margin-top: 0.5rem;
}

.testimonial-link a {
	display: inline-block;
	font-size: 0.95rem;
	color: var(--ember-yellow);
	text-decoration: none;
	padding: 0.3rem 0.9rem;
	border-radius: 20px;
	border: 1px solid rgba(255, 179, 0, 0.4);
	background: rgba(255, 179, 0, 0.08);
	transition: all 0.3s ease;
}

.testimonial-link a:hover {
	color: var(--dark-ember);
	background: linear-gradient(
			135deg,
			var(--phoenix-gold),
			var(--ember-yellow)
	);
	border-color: var(--phoenix-gold);
}

