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

:root {
	--primary-yellow: #FFC93E;
	--primary-yellow-light: #FFD96A;
	--primary-yellow-dark: #F5B92D;
	--text-dark: #2D2D2D;
	--text-gray: #757575;
	--bg-light: #F8F9FA;
	--white: #FFFFFF;
}

body {
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background: var(--bg-light);
	color: var(--text-dark);
	overflow-x: hidden;
}

/* Navigation */
nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 5%;
	background: var(--white);
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	position: relative;
	z-index: 100;
}

.logo {
	font-size: 1.8rem;
	font-weight: 900;
	letter-spacing: 2px;
	color: var(--text-dark);
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 0.3rem;
	text-decoration: none;
}

.logo-icon {
	width: 35px;
	height: 35px;
	background: var(--primary-yellow);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	text-decoration: none;
}

.logo-subtitle {
	font-size: 0.65rem;
	font-weight: 500;
	color: var(--text-gray);
	text-transform: lowercase;
	letter-spacing: 1px;
	display: block;
	margin-top: -3px;
	text-decoration: none;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2.5rem;
	align-items: center;
}

.nav-menu li a {
	text-decoration: none;
	color: var(--text-gray);
	font-weight: 500;
	font-size: 0.95rem;
	transition: color 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
	color: var(--text-dark);
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.phone-number {
	color: var(--text-dark);
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.nav-connect {
	display: none;
}

.cta-btn {
	background: var(--primary-yellow);
	color: var(--text-dark);
	padding: 0.8rem 1.8rem;
	border-radius: 30px;
	font-weight: 700;
	font-size: 0.95rem;
	text-decoration: none;
	transition: all 0.3s;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(255, 201, 62, 0.3);
}

.cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 201, 62, 0.4);
	background: var(--primary-yellow-light);
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 1.8rem;
	cursor: pointer;
	color: var(--text-dark);
}

/* Hero Section */
.hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	padding: 4rem 5%;
	align-items: center;
	min-height: calc(100vh - 80px);
	position: relative;
}

.hero-title {
	grid-column: 1 / -1;
	text-align: center;
	font-size: clamp(2.2rem, 5vw, 4rem);
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: -1px;
}

/* Decorative elements */
.deco-circle {
	position: absolute;
	border-radius: 50%;
	z-index: 0;
}

.deco-1 {
	width: 120px;
	height: 120px;
	background: var(--primary-yellow);
	top: 10%;
	left: 5%;
	opacity: 0.6;
}

.deco-2 {
	width: 50px;
	height: 50px;
	background: var(--primary-yellow-light);
	top: 30%;
	right: 15%;
	opacity: 0.5;
}

.deco-3 {
	width: 30px;
	height: 30px;
	background: var(--primary-yellow);
	bottom: 20%;
	left: 10%;
	opacity: 0.4;
}

.deco-dots {
	position: absolute;
	width: 100px;
	height: 100px;
	background-image: radial-gradient(circle, var(--primary-yellow) 2px, transparent 2px);
	background-size: 15px 15px;
	opacity: 0.3;
}

.dots-1 {
	top: 15%;
	right: 35%;
}

.dots-2 {
	bottom: 15%;
	right: 10%;
}

/* Hero Left Content */
.hero-left {
	position: relative;
	z-index: 10;
}

.hero-subtitle {
	font-size: clamp(1rem, 2vw, 1.2rem);
	color: var(--text-gray);
	line-height: 1.6;
	margin-bottom: 2rem;
	border-left: 4px solid var(--primary-yellow);
	padding-left: 1.5rem;
}

/* Hero Right - Image/Form Section */
.hero-right {
	position: relative;
	z-index: 10;
}

.image-container {
	position: relative;
	width: 100%;
	max-width: 550px;
	margin: 0 auto;
}

.main-circle {
	width: 100%;
	aspect-ratio: 1;
	background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-light) 100%);
	border-radius: 50%;
	position: relative;
	box-shadow: 0 20px 60px rgba(255, 201, 62, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.video-wrapper {
	position: relative;
}

.pet-video {
	width: 85%;
	height: 85%;
	object-fit: cover;
	border-radius: 50%;
}

.video-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: none;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
	filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.2));
}

.video-play-btn:hover {
	transform: translate(-50%, -50%) scale(1.1);
	filter: drop-shadow(0 6px 25px rgba(0, 0, 0, 0.3));
}

.video-play-btn.hidden {
	opacity: 0;
	pointer-events: none;
}

.video-play-btn svg {
	width: 80px;
	height: 80px;
}

.circle-dots {
	position: absolute;
	width: 80px;
	height: 80px;
	background-image: radial-gradient(circle, var(--text-dark) 2px, transparent 2px);
	background-size: 12px 12px;
}

.dots-tl {
	top: 15%;
	left: -5%;
}

.dots-br {
	bottom: 15%;
	right: -5%;
}

/* Form Section */
.form-section {
	background: var(--white);
	border-radius: 30px;
	padding: 2.5rem;
	margin-top: 3rem;
	box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-group {
	margin-bottom: 1.8rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.7rem;
	font-weight: 600;
	color: var(--text-dark);
	font-size: 0.95rem;
}

.file-input {
	width: 100%;
	padding: 1.2rem;
	border: 2px dashed #ddd;
	border-radius: 15px;
	background: var(--bg-light);
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: inherit;
	font-size: 0.95rem;
}

.file-input:hover {
	border-color: var(--primary-yellow);
	background: #FFFBF0;
}

textarea {
	width: 100%;
	padding: 1.2rem;
	border: 2px solid #E0E0E0;
	border-radius: 15px;
	font-family: inherit;
	font-size: 0.95rem;
	resize: vertical;
	min-height: 100px;
	transition: all 0.3s;
}

textarea:focus {
	outline: none;
	border-color: var(--primary-yellow);
	box-shadow: 0 0 0 3px rgba(255, 201, 62, 0.1);
}

select {
	width: 100%;
	padding: 1rem;
	border: 2px solid #E0E0E0;
	border-radius: 15px;
	font-family: inherit;
	font-size: 0.95rem;
	background: var(--white);
	cursor: pointer;
	transition: all 0.3s;
}

select:focus {
	outline: none;
	border-color: var(--primary-yellow);
}

.checkbox-group {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 1rem;
	background: var(--bg-light);
	border-radius: 15px;
	border: 2px solid #E0E0E0;
	cursor: pointer;
	transition: all 0.3s;
}

.checkbox-group:hover {
	border-color: var(--primary-yellow);
	background: #FFFBF0;
}

.checkbox-group input[type="checkbox"] {
	width: 20px;
	height: 20px;
	cursor: pointer;
}

.submit-btn {
	background: var(--primary-yellow);
	color: var(--text-dark);
	padding: 1.2rem 2.5rem;
	border: none;
	border-radius: 30px;
	font-size: 1.1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	box-shadow: 0 6px 20px rgba(255, 201, 62, 0.3);
	font-family: inherit;
}

.submit-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(255, 201, 62, 0.4);
	background: var(--primary-yellow-light);
}

.char-count {
	text-align: right;
	margin-top: 0.5rem;
	font-size: 0.85rem;
	color: var(--text-gray);
}

small {
	color: var(--text-gray);
	font-size: 0.85rem;
}

/* Navigation dots */
.pagination {
	text-align: center;
	margin-top: 3rem;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--text-gray);
}

.pagination .current {
	color: var(--text-dark);
}

/* Messages */
.message {
	padding: 1.2rem;
	border-radius: 15px;
	margin-bottom: 1.5rem;
	font-weight: 500;
	font-size: 0.95rem;
}

.message.success {
	background: #E8F5E9;
	color: #2E7D32;
	border: 2px solid #81C784;
}

.message.error {
	background: #FFEBEE;
	color: #C62828;
	border: 2px solid #EF5350;
}

/* Modal styles */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.6);
	animation: fadeIn 0.3s;
	backdrop-filter: blur(5px);
}

.modal.show {
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-content {
	background-color: var(--white);
	padding: 3rem;
	border-radius: 30px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.3);
	text-align: center;
	max-width: 500px;
	width: 90%;
	animation: slideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-icon {
	font-size: 4.5em;
	margin-bottom: 1.5rem;
}

.modal-title {
	font-size: 1.8em;
	color: var(--text-dark);
	margin-bottom: 1rem;
	font-weight: 700;
}

.modal-text {
	font-size: 1.05em;
	color: var(--text-gray);
	margin-bottom: 2rem;
	line-height: 1.6;
}

.modal-btn {
	background: var(--primary-yellow);
	color: var(--text-dark);
	padding: 1rem 2.5rem;
	border: none;
	border-radius: 30px;
	font-size: 1.05em;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: inherit;
}

.modal-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(255, 201, 62, 0.4);
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes slideIn {
	from { 
		transform: translateY(-50px) scale(0.9); 
		opacity: 0; 
	}
	to { 
		transform: translateY(0) scale(1); 
		opacity: 1; 
	}
}

/* Responsive Design - Mobile First */
@media (max-width: 968px) {
	.nav-menu {
		display: none;
		position: fixed;
		top: 75px;
		right: -100%;
		width: 80%;
		max-width: 300px;
		background: var(--white);
		flex-direction: column;
		padding: 2rem;
		box-shadow: -5px 0 20px rgba(0,0,0,0.1);
		transition: right 0.3s ease;
		gap: 1.5rem;
		z-index: 99;
		height: calc(100vh - 75px);
	}
	
	.nav-menu.active {
		display: flex;
		right: 0;
	}
	
	.nav-menu li {
		width: 100%;
	}
	
	.nav-menu li a {
		display: block;
		padding: 1rem;
		font-size: 1.1rem;
		border-bottom: 1px solid var(--bg-light);
	}
	
	.nav-connect {
		display: block;
	}
	
	.nav-connect a {
		background: var(--primary-yellow);
		border-radius: 15px;
		font-weight: 600;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0.5rem;
		border-bottom: none;
	}
	
	.phone-number {
		display: none;
	}
	
	.mobile-menu-btn {
		display: block;
	}
	
	.hero {
		grid-template-columns: 1fr;
		padding: 2rem 5%;
		gap: 2rem;
	}
	
	.hero-title {
		font-size: 2.5rem;
		margin-bottom: 0rem;
		order: 1;
	}
	
	.hero-right {
		order: 2;
	}
	
	.hero-left {
		text-align: center;
		order: 3;
	}
	
	.hero-subtitle {
		border-left: none;
		border-top: 4px solid var(--primary-yellow);
		padding-left: 0;
		padding-top: 1rem;
		margin: 0 auto 2rem;
		max-width: 600px;
	}
	
	.deco-circle,
	.deco-dots {
		display: none;
	}
	
	nav {
		padding: 1rem 5%;
	}
	
	.logo {
		font-size: 1.4rem;
	}
	
	.form-section {
		padding: 1.8rem;
	}
}

@media (max-width: 640px) {
	.hero-title {
		font-size: 2rem;
	}
	
	.hero-subtitle {
		font-size: 0.95rem;
	}
	
	.form-section {
		padding: 1.5rem;
	}
	
	.modal-content {
		padding: 2rem;
	}
	
	nav {
		padding: 1rem 3%;
	}
	
	.hero {
		padding: 1.5rem 3%;
	}
	
	.video-play-btn svg {
		width: 60px;
		height: 60px;
	}
}

/* Hero Pricing Layout - wider left section */
.hero-pricing {
	grid-template-columns: 1.6fr 1fr;
	gap: 4rem;
}

.hero-pricing .image-container {
	max-width: 450px;
}

/* Hero Terms Full Width Layout */
.hero-terms-fullwidth {
	grid-template-columns: 1fr;
	max-width: 1200px;
	margin: 0 auto;
	padding: 4rem 5%;
}

.hero-terms-fullwidth .hero-left {
	max-width: 100%;
}

.hero-terms-fullwidth .hero-title {
	text-align: center;
	margin-bottom: 3rem;
}

@media (max-width: 968px) {
	.hero-terms-fullwidth {
		padding: 2rem 5%;
	}
}

/* Pricing Packs */
.pricing-packs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 2rem;
}

.pack-card {
	background: var(--white);
	border-radius: 20px;
	padding: 2rem 1.5rem;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	border: 2px solid #E0E0E0;
	position: relative;
	transition: all 0.3s ease;
	cursor: pointer;
}

.pack-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0,0,0,0.12);
	border-color: var(--primary-yellow);
}

.pack-card.popular {
	border: 3px solid var(--primary-yellow);
	transform: scale(1.05);
	box-shadow: 0 10px 40px rgba(255, 201, 62, 0.3);
}

.pack-card.popular:hover {
	transform: scale(1.05) translateY(-5px);
	box-shadow: 0 15px 50px rgba(255, 201, 62, 0.4);
}

.pack-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-light) 100%);
	color: var(--text-dark);
	padding: 0.4rem 1rem;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 700;
	box-shadow: 0 4px 15px rgba(255, 201, 62, 0.4);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.pack-header {
	text-align: center;
	padding-bottom: 1.5rem;
	border-bottom: 2px solid var(--bg-light);
	margin-bottom: 1.5rem;
}

.pack-name {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.pack-price {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0.2rem;
	margin-bottom: 0.5rem;
}

.price-euro {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-gray);
	margin-top: 0.5rem;
}

.price-number {
	font-size: 3.5rem;
	font-weight: 900;
	color: var(--text-dark);
	line-height: 1;
}

.pack-card.popular .price-number {
	color: var(--primary-yellow);
}

.pack-videos {
	font-size: 1rem;
	color: var(--text-gray);
	font-weight: 600;
	margin: 0;
}

.pack-saving {
	font-size: 0.85rem;
	color: #2E7D32;
	font-weight: 600;
	margin-top: 0.3rem;
}

.pack-features {
	margin-bottom: 1.5rem;
}

.pack-feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.6rem 0;
	font-size: 0.9rem;
	color: var(--text-dark);
	font-weight: 500;
}

.pack-feature span {
	color: #2E7D32;
	font-weight: 700;
	font-size: 1rem;
}

.pack-btn {
	background: var(--primary-yellow);
	color: var(--text-dark);
	padding: 0.9rem 2rem;
	border: none;
	border-radius: 25px;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	box-shadow: 0 4px 15px rgba(255, 201, 62, 0.3);
	font-family: inherit;
}

.pack-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 201, 62, 0.4);
	background: var(--primary-yellow-light);
}

.pack-card.popular .pack-btn {
	background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-light) 100%);
	box-shadow: 0 6px 20px rgba(255, 201, 62, 0.4);
}

.pack-card.popular .pack-btn:hover {
	box-shadow: 0 8px 25px rgba(255, 201, 62, 0.5);
}


.pricing-note {
	text-align: center;
	margin-top: 2rem;
	font-size: 0.85rem;
	color: var(--text-gray);
	font-weight: 500;
}

/* Responsive Pricing Packs */
@media (max-width: 968px) {
	.hero-pricing {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.hero-pricing .image-container {
		max-width: 550px;
	}
	
	.pricing-packs {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.pack-card {
		padding: 2rem;
	}
	
	.pack-card.popular {
		transform: scale(1);
	}
	
	.pack-card.popular:hover {
		transform: translateY(-5px);
	}
	
	.price-number {
		font-size: 3rem;
	}
}

@media (max-width: 640px) {
	.pack-card {
		padding: 1.5rem;
	}
	
	.pack-name {
		font-size: 1.1rem;
	}
	
	.price-number {
		font-size: 2.5rem;
	}
	
	.price-euro {
		font-size: 1.2rem;
	}
	
	.pack-btn {
		font-size: 0.95rem;
		padding: 0.8rem 1.5rem;
	}
	
	.pack-badge {
		font-size: 0.7rem;
		padding: 0.3rem 0.8rem;
	}
}

/* Marketing Content on Home */
.marketing-content {
	margin-top: 2rem;
}

.feature-list {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-bottom: 2.5rem;
}

.feature-item {
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
	padding: 1.5rem;
	background: var(--white);
	border-radius: 20px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.feature-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
	font-size: 2.5rem;
	flex-shrink: 0;
	background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-light) 100%);
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
	box-shadow: 0 4px 15px rgba(255, 201, 62, 0.3);
}

.feature-text {
	flex: 1;
}

.feature-text h3 {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--text-dark);
}

.feature-text p {
	color: var(--text-gray);
	font-size: 0.95rem;
	line-height: 1.6;
}

.cta-button {
	display: inline-block;
	background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-light) 100%);
	color: var(--text-dark);
	padding: 1.2rem 3rem;
	border-radius: 30px;
	font-size: 1.1rem;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 6px 25px rgba(255, 201, 62, 0.4);
	transition: all 0.3s ease;
	text-align: center;
	width: 100%;
	max-width: 400px;
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(255, 201, 62, 0.5);
}

/* WhatsApp Bot Section */
.whatsapp-section {
	padding: 4rem 5%;
	background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
	margin-top: 3rem;
	position: relative;
	overflow: hidden;
}

.whatsapp-section::before {
	content: '';
	position: absolute;
	top: -50px;
	right: -50px;
	width: 300px;
	height: 300px;
	background: rgba(37, 211, 102, 0.1);
	border-radius: 50%;
	z-index: 0;
}

.whatsapp-container {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.whatsapp-content {
	display: grid;
	align-items: center;
	background: var(--white);
	padding: 3rem;
	border-radius: 30px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.whatsapp-icon {
	width: 150px;
	height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
	border-radius: 30px;
	box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
	flex-shrink: 0;
}

.whatsapp-icon svg {
	width: 80px;
	height: 80px;
}

.whatsapp-title {
	font-size: 2rem;
	font-weight: 800;
	color: var(--text-dark);
	margin-bottom: 1rem;
	line-height: 1.2;
}

.whatsapp-description {
	font-size: 1.1rem;
	color: var(--text-gray);
	line-height: 1.6;
	margin-bottom: 2rem;
}

.whatsapp-description strong {
	color: #25D366;
	font-weight: 700;
}

.whatsapp-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin-bottom: 2rem;
}

.whatsapp-feature {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	font-size: 0.95rem;
	color: var(--text-dark);
	font-weight: 500;
}

.feature-check {
	color: #25D366;
	font-weight: 700;
	font-size: 1.2rem;
	flex-shrink: 0;
}

.whatsapp-cta {
	display: inline-block;
	background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
	color: var(--white);
	padding: 1.2rem 2.5rem;
	border-radius: 30px;
	font-size: 1.1rem;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
	transition: all 0.3s ease;
	text-align: center;
}

.whatsapp-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-note {
	margin-top: 1rem;
	font-size: 0.85rem;
	color: var(--text-gray);
	font-style: italic;
}

/* Pricing Section on Home */
.pricing-section {
	padding: 4rem 5%;
	background: var(--white);
	margin-top: 0;
}

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

.section-title {
	font-size: 2.5rem;
	font-weight: 800;
	text-align: center;
	margin-bottom: 1rem;
	color: var(--text-dark);
}

.section-subtitle {
	text-align: center;
	font-size: 1.1rem;
	color: var(--text-gray);
	margin-bottom: 3rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Responsive Marketing Content */
@media (max-width: 768px) {
	.feature-item {
		padding: 1.2rem;
		gap: 1rem;
	}
	
	.feature-icon {
		width: 60px;
		height: 60px;
		font-size: 2rem;
	}
	
	.feature-text h3 {
		font-size: 1.1rem;
	}
	
	.feature-text p {
		font-size: 0.9rem;
	}
	
	.cta-button {
		width: 100%;
		padding: 1rem 2rem;
		font-size: 1rem;
	}
	
	/* WhatsApp Section Responsive */
	.whatsapp-section {
		padding: 3rem 5%;
		margin-top: 2rem;
	}
	
	.whatsapp-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding: 2rem;
		text-align: center;
	}
	
	.whatsapp-icon {
		width: 100px;
		height: 100px;
		margin: 0 auto;
	}
	
	.whatsapp-icon svg {
		width: 60px;
		height: 60px;
	}
	
	.whatsapp-title {
		font-size: 1.5rem;
	}
	
	.whatsapp-description {
		font-size: 1rem;
	}
	
	.whatsapp-features {
		grid-template-columns: 1fr;
		gap: 0.8rem;
		text-align: left;
	}
	
	.whatsapp-cta {
		width: 100%;
		padding: 1rem 2rem;
		font-size: 1rem;
	}
	
	.pricing-section {
		padding: 3rem 5%;
		margin-top: 0;
	}
	
	.section-title {
		font-size: 2rem;
	}
	
	.section-subtitle {
		font-size: 1rem;
		margin-bottom: 2rem;
	}
}

/* About Content */
.about-content {
	max-width: 100%;
}

/* Terms Link */
.terms-link {
	color: var(--primary-yellow-dark);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border-bottom: 2px solid transparent;
	padding-bottom: 2px;
}

.terms-link:hover {
	color: var(--primary-yellow);
	border-bottom-color: var(--primary-yellow);
}

/* Terms of Use Styles */
.terms-section {
	font-size: 1.05rem;
	color: var(--text-dark);
	line-height: 1.8;
	max-width: 100%;
}

.terms-section p {
	margin-bottom: 1.2rem;
	text-align: justify;
}

.terms-section ul {
	list-style-type: disc;
	margin-left: 1.5rem;
	margin-bottom: 1rem;
	line-height: 1.8;
}

.terms-section ul li {
	margin-bottom: 0.5rem;
	color: var(--text-dark);
}

.terms-section a {
	color: var(--primary-yellow-dark);
	text-decoration: none;
	font-weight: 600;
	border-bottom: 1px solid transparent;
	transition: all 0.3s ease;
}

.terms-section a:hover {
	color: var(--primary-yellow);
	border-bottom-color: var(--primary-yellow);
}

.terms-section .terms-heading {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--primary-yellow-dark);
	margin-top: 2rem;
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--primary-yellow-light);
}

.terms-section .terms-heading:first-child {
	margin-top: 0;
}

.terms-section strong {
	color: var(--text-dark);
	font-weight: 600;
}

/* Section Title - improved */
.hero-pricing-left .section-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--primary-yellow-dark);
	margin-bottom: 2rem;
	text-align: left;
}

@media (max-width: 768px) {
	.terms-section {
		font-size: 0.95rem;
		line-height: 1.7;
	}
	
	.terms-section .terms-heading {
		font-size: 1.1rem;
		margin-top: 1.5rem;
	}
	
	.hero-pricing-left .section-title {
		font-size: 1.8rem;
		text-align: center;
	}
	
	.terms-section p {
		text-align: left;
	}
}