/* ========================================
   5 Linguagens do Amor - Frontend Styles
   Version: 1.0.0
   ======================================== */

:root {
	--5la-primary: #ec4899;
	--5la-secondary: #8b5cf6;
	--5la-gradient: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
	--5la-text: #1f2937;
	--5la-text-light: #6b7280;
	--5la-bg: #f9fafb;
	--5la-white: #ffffff;
	--5la-border: #e5e7eb;
	--5la-success: #10b981;
	--5la-warning: #f59e0b;
	--5la-danger: #ef4444;
}

/* ========================================
   Base Styles
   ======================================== */

.5la-landing-page,
.5la-quiz-page,
.5la-results-container,
.5la-payment-container {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	color: var(--5la-text);
	line-height: 1.6;
	box-sizing: border-box;
}

.5la-landing-page *,
.5la-quiz-page *,
.5la-results-container *,
.5la-payment-container * {
	box-sizing: border-box;
}

.5la-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ========================================
   Navigation
   ======================================== */

.5la-nav {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--5la-border);
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.5la-nav .5la-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
}

.5la-nav-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--5la-text);
}

.5la-heart-icon {
	width: 40px;
	height: 40px;
	background: var(--5la-gradient);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	animation: heartbeat 1.5s ease infinite;
}

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

.5la-nav-links {
	display: flex;
	align-items: center;
	gap: 30px;
}

.5la-nav-links a {
	color: var(--5la-text-light);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.5la-nav-links a:hover {
	color: var(--5la-primary);
}

/* ========================================
   Buttons
   ======================================== */

.5la-btn-primary,
.5la-btn-secondary,
.5la-btn-white {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: 1rem;
}

.5la-btn-primary {
	background: var(--5la-gradient);
	color: white;
	box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.5la-btn-primary:hover {
	opacity: 0.9;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

.5la-btn-secondary {
	background: white;
	color: var(--5la-text);
	border: 2px solid var(--5la-border);
}

.5la-btn-secondary:hover {
	border-color: var(--5la-primary);
	color: var(--5la-primary);
}

.5la-btn-white {
	background: white;
	color: var(--5la-primary);
}

.5la-btn-white:hover {
	background: #f9fafb;
}

.5la-btn-lg {
	padding: 16px 32px;
	font-size: 1.1rem;
}

.5la-btn-full {
	width: 100%;
}

.5la-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* ========================================
   Hero Section
   ======================================== */

.5la-hero {
	background: linear-gradient(135deg, #fce7f3 0%, #f3e8ff 100%);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.5la-hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.5la-badge {
	display: inline-block;
	background: #fce7f3;
	color: var(--5la-primary);
	padding: 8px 16px;
	border-radius: 50px;
	font-size: 0.9rem;
	font-weight: 500;
	margin-bottom: 20px;
}

.5la-hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
	color: var(--5la-text);
}

.5la-gradient-text {
	background: var(--5la-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.5la-hero-desc {
	font-size: 1.2rem;
	color: var(--5la-text-light);
	margin-bottom: 30px;
	line-height: 1.8;
}

.5la-hero-buttons {
	display: flex;
	gap: 15px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.5la-hero-social {
	display: flex;
	align-items: center;
	gap: 20px;
}

.5la-avatars {
	display: flex;
}

.5la-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 3px solid white;
	margin-left: -10px;
}

.5la-avatar:first-child {
	margin-left: 0;
}

.5la-stars {
	color: #fbbf24;
	letter-spacing: 2px;
	font-size: 1.2rem;
}

.5la-rating p {
	font-size: 0.9rem;
	color: var(--5la-text-light);
	margin: 0;
}

/* ========================================
   Hero Image
   ======================================== */

.5la-hero-image {
	position: relative;
}

.5la-img-rounded {
	border-radius: 30px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
	width: 100%;
	object-fit: cover;
}

.5la-floating-card {
	position: absolute;
	background: white;
	padding: 20px;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	gap: 15px;
	animation: float 3s ease infinite;
}

.5la-card-1 {
	bottom: -30px;
	left: -30px;
}

.5la-card-2 {
	top: -30px;
	right: -30px;
	animation-delay: 1.5s;
}

.5la-card-icon {
	width: 50px;
	height: 50px;
	background: var(--5la-gradient);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
}

@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

/* ========================================
   Sections
   ======================================== */

.5la-section {
	padding: 80px 0;
}

.5la-section-alt {
	background: linear-gradient(135deg, #fce7f3 0%, #f3e8ff 100%);
}

.5la-section-header {
	text-align: center;
	margin-bottom: 60px;
}

.5la-section-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: var(--5la-text);
}

.5la-section-desc {
	font-size: 1.2rem;
	color: var(--5la-text-light);
	max-width: 600px;
	margin: 0 auto;
}

/* ========================================
   Steps
   ======================================== */

.5la-steps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.5la-step-card {
	background: white;
	padding: 40px 30px;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.5la-step-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.5la-step-number {
	width: 60px;
	height: 60px;
	background: var(--5la-gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	color: white;
	margin: 0 auto 20px;
}

.5la-step-card h3 {
	font-size: 1.3rem;
	margin-bottom: 15px;
	color: var(--5la-text);
}

.5la-step-card p {
	color: var(--5la-text-light);
	line-height: 1.8;
}

/* ========================================
   Languages Grid
   ======================================== */

.5la-languages-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

.5la-language-card {
	background: white;
	padding: 30px 20px;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.5la-language-card:hover {
	transform: scale(1.05);
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.5la-lang-icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	margin: 0 auto 20px;
}

.5la-language-card h3 {
	font-size: 1.1rem;
	margin-bottom: 10px;
	color: var(--5la-text);
}

.5la-language-card p {
	font-size: 0.9rem;
	color: var(--5la-text-light);
}

/* ========================================
   Benefits
   ======================================== */

.5la-benefits-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.5la-benefits-image img {
	border-radius: 30px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
	width: 100%;
	object-fit: cover;
}

.5la-benefits-list {
	display: flex;
	flex-direction: column;
	gap: 25px;
	margin: 30px 0;
}

.5la-benefit-item {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.5la-benefit-icon {
	width: 50px;
	height: 50px;
	background: var(--5la-gradient);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	flex-shrink: 0;
}

.5la-benefit-item h4 {
	font-size: 1.1rem;
	margin-bottom: 5px;
	color: var(--5la-text);
}

.5la-benefit-item p {
	color: var(--5la-text-light);
	font-size: 0.95rem;
}

/* ========================================
   Testimonials
   ======================================== */

.5la-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.5la-testimonial-card {
	background: white;
	padding: 30px;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

.5la-testimonial-card:hover {
	transform: translateY(-5px);
}

.5la-testimonial-card p {
	color: var(--5la-text-light);
	font-style: italic;
	line-height: 1.8;
	margin-bottom: 20px;
}

.5la-testimonial-author {
	display: flex;
	align-items: center;
	gap: 15px;
}

.5la-author-avatar {
	width: 50px;
	height: 50px;
	background: var(--5la-gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	font-size: 1.2rem;
}

.5la-testimonial-author strong {
	display: block;
	color: var(--5la-text);
}

.5la-testimonial-author p {
	font-size: 0.85rem;
	margin: 0;
	font-style: normal;
}

/* ========================================
   CTA Section
   ======================================== */

.5la-cta-box {
	background: var(--5la-gradient);
	padding: 60px;
	border-radius: 30px;
	text-align: center;
	color: white;
	box-shadow: 0 25px 50px rgba(236, 72, 153, 0.3);
}

.5la-cta-box h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
}

.5la-cta-box p {
	font-size: 1.2rem;
	margin-bottom: 30px;
	opacity: 0.95;
}

.5la-cta-note {
	margin-top: 20px;
	font-size: 0.9rem;
	opacity: 0.8;
}

/* ========================================
   Footer
   ======================================== */

.5la-footer {
	background: #1f2937;
	color: white;
	padding: 60px 0 30px;
}

.5la-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.5la-footer h4 {
	margin-bottom: 20px;
	font-size: 1.1rem;
}

.5la-footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.5la-footer li {
	margin-bottom: 10px;
}

.5la-footer a {
	color: #9ca3af;
	text-decoration: none;
	transition: color 0.3s ease;
}

.5la-footer a:hover {
	color: white;
}

.5la-payment-badges {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.5la-hotmart-badge,
.5la-secure-badge {
	background: white;
	color: #1f2937;
	padding: 8px 15px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.9rem;
}

.5la-footer-bottom {
	border-top: 1px solid #374151;
	padding-top: 30px;
	text-align: center;
	color: #9ca3af;
}

/* ========================================
   Quiz Styles
   ======================================== */

.5la-quiz-header {
	background: white;
	border-bottom: 1px solid var(--5la-border);
	padding: 20px 0;
	position: sticky;
	top: 0;
	z-index: 50;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.5la-quiz-header-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
}

.5la-back-btn {
	color: var(--5la-text-light);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.5la-back-btn:hover {
	color: var(--5la-primary);
}

.5la-question-counter {
	font-weight: 600;
	color: var(--5la-text);
}

.5la-progress-bar {
	background: #e5e7eb;
	height: 8px;
	border-radius: 10px;
	overflow: hidden;
}

.5la-progress-fill {
	background: var(--5la-gradient);
	height: 100%;
	border-radius: 10px;
	transition: width 0.5s ease;
}

.5la-quiz-container {
	padding: 60px 0;
	min-height: 80vh;
}

.5la-quiz-intro {
	max-width: 600px;
	margin: 0 auto;
	background: white;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.5la-quiz-intro h2 {
	text-align: center;
	margin-bottom: 10px;
}

.5la-quiz-intro > p {
	text-align: center;
	color: var(--5la-text-light);
	margin-bottom: 30px;
}

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

.5la-form-group label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--5la-text);
}

.5la-input {
	width: 100%;
	padding: 15px 20px;
	border: 2px solid var(--5la-border);
	border-radius: 12px;
	font-size: 1rem;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.5la-input:focus {
	outline: none;
	border-color: var(--5la-primary);
	box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.5la-gender-select {
	margin: 30px 0;
}

.5la-gender-select label {
	display: block;
	font-weight: 600;
	margin-bottom: 15px;
	text-align: center;
}

.5la-gender-options {
	display: flex;
	gap: 20px;
	margin-top: 15px;
}

.5la-gender-option {
	flex: 1;
	padding: 20px;
	border: 2px solid var(--5la-border);
	border-radius: 15px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.5la-gender-option.selected {
	border-color: var(--5la-primary);
	background: #fce7f3;
}

.5la-gender-icon {
	font-size: 2.5rem;
	display: block;
	margin-bottom: 10px;
}

.5la-gender-option input {
	display: none;
}

/* ========================================
   Question Cards
   ======================================== */

.5la-question-card {
	background: white;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
	margin-bottom: 30px;
	animation: fadeIn 0.5s ease;
}

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

.5la-question-text {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 30px;
	text-align: center;
	color: var(--5la-text);
}

.5la-choice-btn {
	display: block;
	width: 100%;
	padding: 25px;
	margin-bottom: 15px;
	border: 2px solid var(--5la-border);
	border-radius: 15px;
	background: white;
	text-align: left;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 1.1rem;
	color: var(--5la-text);
}

.5la-choice-btn:hover {
	border-color: var(--5la-primary);
	background: #fce7f3;
}

.5la-choice-btn.selected {
	border-color: var(--5la-primary);
	background: linear-gradient(135deg, #fce7f3 0%, #f3e8ff 100%);
	box-shadow: 0 4px 15px rgba(236, 72, 153, 0.2);
}

.5la-choice-btn strong {
	margin-right: 10px;
	color: var(--5la-primary);
}

.5la-quiz-navigation {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 30px;
}

/* ========================================
   Payment Styles
   ======================================== */

.5la-payment-container {
	padding: 60px 0;
	min-height: 80vh;
}

.5la-payment-box {
	max-width: 900px;
	margin: 0 auto;
	background: white;
	border-radius: 30px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.5la-payment-header {
	background: var(--5la-gradient);
	color: white;
	padding: 50px;
	text-align: center;
}

.5la-payment-icon {
	font-size: 4rem;
	margin-bottom: 20px;
}

.5la-payment-header h2 {
	font-size: 2rem;
	margin-bottom: 10px;
}

.5la-payment-header p {
	opacity: 0.95;
}

.5la-payment-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding: 50px;
	gap: 50px;
}

.5la-check-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.5la-check-list li {
	padding: 12px 0;
	border-bottom: 1px solid var(--5la-border);
	color: var(--5la-text-light);
}

.5la-check-list li:last-child {
	border-bottom: none;
}

.5la-price {
	margin: 20px 0;
}

.5la-price-current {
	font-size: 3rem;
	font-weight: 700;
	color: var(--5la-primary);
}

.5la-price-old {
	font-size: 1.5rem;
	color: var(--5la-text-light);
	text-decoration: line-through;
	margin-left: 15px;
}

.5la-offer-note {
	color: var(--5la-text-light);
	font-size: 0.95rem;
	margin-bottom: 25px;
}

.5la-payment-badges {
	justify-content: center;
	margin-top: 20px;
}

.5la-payment-badges span {
	background: #f9fafb;
	padding: 8px 15px;
	border-radius: 8px;
	font-size: 0.85rem;
	color: var(--5la-text-light);
}

.5la-trust-badges {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	padding: 40px 50px;
	background: #f9fafb;
	text-align: center;
}

.5la-trust-number {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--5la-primary);
}

.5la-trust-label {
	font-size: 0.9rem;
	color: var(--5la-text-light);
	margin-top: 5px;
}

.5la-payment-back {
	text-align: center;
	padding: 30px;
	border-top: 1px solid var(--5la-border);
}

.5la-payment-back a {
	color: var(--5la-text-light);
	text-decoration: none;
	transition: color 0.3s ease;
}

.5la-payment-back a:hover {
	color: var(--5la-primary);
}

/* ========================================
   Results Styles
   ======================================== */

.5la-results-container {
	padding: 60px 0;
	min-height: 80vh;
}

.5la-results-header {
	text-align: center;
	margin-bottom: 50px;
}

.5la-results-icon {
	font-size: 5rem;
	margin-bottom: 20px;
	animation: heartbeat 1.5s ease infinite;
}

.5la-results-content {
	max-width: 900px;
	margin: 0 auto;
}

.5la-result-card {
	background: white;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
	margin-bottom: 30px;
}

.5la-result-badge {
	display: inline-block;
	background: var(--5la-gradient);
	color: white;
	padding: 8px 20px;
	border-radius: 50px;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 15px;
}

.5la-result-badge.secondary {
	background: linear-gradient(135deg, #8b5cf6, #6366f1);
}

.5la-result-card h3 {
	font-size: 2rem;
	margin-bottom: 15px;
	color: var(--5la-text);
}

.5la-result-desc {
	color: var(--5la-text-light);
	font-size: 1.1rem;
	line-height: 1.8;
}

.5la-result-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin: 30px 0;
}

.5la-result-subcard {
	background: #f9fafb;
	padding: 25px;
	border-radius: 15px;
}

.5la-result-subcard h4 {
	font-size: 1.1rem;
	margin-bottom: 15px;
	color: var(--5la-text);
}

.5la-list-check {
	list-style: none;
	padding: 0;
	margin: 0;
}

.5la-list-check li {
	padding: 10px 0 10px 30px;
	position: relative;
	color: var(--5la-text-light);
}

.5la-list-check li:before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--5la-success);
	font-weight: 700;
}

.5la-tips-box {
	background: linear-gradient(135deg, #fce7f3 0%, #f3e8ff 100%);
	padding: 30px;
	border-radius: 15px;
	margin-top: 30px;
}

.5la-tips-box h4 {
	font-size: 1.2rem;
	margin-bottom: 20px;
	color: var(--5la-text);
}

.5la-tips-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.5la-tip-item {
	display: flex;
	gap: 15px;
	align-items: flex-start;
}

.5la-tip-number {
	width: 35px;
	height: 35px;
	background: var(--5la-gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	flex-shrink: 0;
}

.5la-tip-item p {
	color: var(--5la-text-light);
	margin: 0;
}

.5la-score-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.5la-score-item {
	display: flex;
	align-items: center;
	gap: 15px;
}

.5la-score-label {
	width: 180px;
	font-size: 0.95rem;
	color: var(--5la-text);
}

.5la-score-bar {
	flex: 1;
	background: #e5e7eb;
	height: 12px;
	border-radius: 10px;
	overflow: hidden;
}

.5la-score-fill {
	height: 100%;
	border-radius: 10px;
	background: var(--5la-gradient);
	transition: width 1s ease;
}

.5la-score-value {
	width: 50px;
	text-align: right;
	font-weight: 600;
	color: var(--5la-text);
}

.5la-results-actions {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin: 40px 0;
	flex-wrap: wrap;
}

.5la-upsell-box {
	background: var(--5la-gradient);
	color: white;
	padding: 50px;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 20px 50px rgba(236, 72, 153, 0.3);
}

.5la-upsell-box h3 {
	font-size: 1.8rem;
	margin-bottom: 15px;
}

.5la-upsell-box p {
	opacity: 0.95;
	margin-bottom: 25px;
}

/* ========================================
   Loading & Error States
   ======================================== */

.5la-loading {
	text-align: center;
	padding: 60px 20px;
	color: var(--5la-text-light);
	font-size: 1.1rem;
}

.5la-error {
	background: #fee2e2;
	color: var(--5la-danger);
	padding: 20px;
	border-radius: 12px;
	text-align: center;
	margin: 20px 0;
}

.5la-success {
	background: #d1fae5;
	color: var(--5la-success);
	padding: 20px;
	border-radius: 12px;
	text-align: center;
	margin: 20px 0;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
	.5la-hero-grid,
	.5la-benefits-grid,
	.5la-payment-grid {
		grid-template-columns: 1fr;
	}

	.5la-steps-grid,
	.5la-testimonials-grid {
		grid-template-columns: 1fr;
	}

	.5la-languages-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.5la-footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.5la-result-grid {
		grid-template-columns: 1fr;
	}

	.5la-trust-badges {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.5la-hero-title {
		font-size: 2.5rem;
	}

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

	.5la-nav-links {
		display: none;
	}

	.5la-languages-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.5la-gender-options {
		flex-direction: column;
	}

	.5la-hero-buttons {
		flex-direction: column;
	}

	.5la-btn-lg {
		width: 100%;
	}

	.5la-payment-header {
		padding: 30px;
	}

	.5la-payment-grid {
		padding: 30px;
	}

	.5la-result-card {
		padding: 25px;
	}

	.5la-upsell-box {
		padding: 30px;
	}
}

@media (max-width: 480px) {
	.5la-container {
		padding: 0 15px;
	}

	.5la-hero {
		padding: 40px 0;
	}

	.5la-section {
		padding: 40px 0;
	}

	.5la-languages-grid {
		grid-template-columns: 1fr;
	}

	.5la-footer-grid {
		grid-template-columns: 1fr;
	}
}

/* ========================================
   Print Styles
   ======================================== */

@media print {
	.5la-nav,
	.5la-quiz-header,
	.5la-results-actions,
	.5la-upsell-box {
		display: none !important;
	}

	.5la-result-card {
		box-shadow: none;
		border: 1px solid #ddd;
	}
}