/* Reset & Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--color-primary: #06b6d4;
	--color-secondary: #4169E1;
	--color-gray-50: #f9fafb;
	--color-gray-100: #f3f4f6;
	--color-gray-200: #e5e7eb;
	--color-gray-300: #d1d5db;
	--color-gray-600: #4b5563;
	--color-gray-700: #374151;
	--color-gray-800: #1f2937;
	--color-text: rgb(110, 118, 131);
	--max-width: 1280px;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
	line-height: 1.5;
	color: #1f2937;
	background: white;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

/* Container */
.container {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 1rem;
}

@media (min-width: 640px) {
	.container {
		padding: 0 1.5rem;
	}
}

/* Gradient Text */
.gradient-text {
	background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Header */
.header {
	background: linear-gradient(to bottom, var(--color-gray-50), white);
	position: sticky;
	top: 0;
	z-index: 40;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
}

@media (min-width: 768px) {
	.header-content {
		padding-top: 1rem;
		padding-bottom: 1rem;
	}
}

.logo {
	height: 1.25rem;
}

@media (min-width: 640px) {
	.logo {
		height: 1.5rem;
	}
}

@media (min-width: 768px) {
	.logo {
		height: 1.75rem;
	}
}

.btn-login {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    color: #5e72e4;
    background-color: #5E72E41A;
    border-radius: 48px;
    border: none;
    transition: background-color 0.3s, color 0.3s;
    display: flex;
    width: fit-content;
    justify-content: center;
	cursor: pointer;
}

.btn-login:hover {
	opacity: 0.8;
}

.btn-login-img {
	height: 2rem;
}

@media (min-width: 640px) {
	.btn-login-img {
		height: 2.25rem;
	}
}

@media (min-width: 768px) {
	.btn-login-img {
		height: 2.5rem;
	}
}

/* Hero Section */
.hero {
	background: linear-gradient(to bottom, var(--color-gray-50), white);
	padding: 2rem 0;
}

@media (min-width: 640px) {
	.hero {
		padding: 2.5rem 0;
	}
}

@media (min-width: 768px) {
	.hero {
		padding: 3rem 0;
	}
}

@media (min-width: 1024px) {
	.hero {
		padding: 4rem 0;
	}
}

.hero-grid {
	display: grid;
	gap: 1.5rem;
	align-items: center;
	text-align: center;
}

@media (min-width: 640px) {
	.hero-grid {
		gap: 2rem;
	}
}

@media (min-width: 768px) {
	.hero-grid {
		gap: 2.5rem;
	}
}

@media (min-width: 1024px) {
	.hero-grid {
		grid-template-columns: repeat(1, 1fr);
		gap: 3rem;
		max-width: 56rem;
		margin: 0 auto;
	}
}

.hero-content {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

@media (min-width: 640px) {
	.hero-content {
		gap: 1rem;
	}
}

@media (min-width: 768px) {
	.hero-content {
		gap: 1.25rem;
	}
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	border: 1px solid var(--color-gray-300);
	border-radius: 9999px;
	padding: 0.25rem 0.625rem;
	width: fit-content;
	background: white;
	font-size: 0.625rem;
	color: var(--color-text);
	margin: 0 auto;
}

@media (min-width: 640px) {
	.badge {
		gap: 0.5rem;
		padding: 0.25rem 0.75rem;
		font-size: 0.75rem;
	}
}

.badge-center {
	margin: 0 auto;
}

.badge-text-mobile {
	display: inline;
}

.badge-text-desktop {
	display: none;
}

@media (min-width: 640px) {
	.badge-text-mobile {
		display: none;
	}

	.badge-text-desktop {
		display: inline;
	}
}

.icon {
	width: 0.75rem;
	height: 0.75rem;
	flex-shrink: 0;
}

@media (min-width: 640px) {
	.icon {
		width: 1rem;
		height: 1rem;
	}
}

.hero-title {
	font-size: 1.5rem;
	line-height: 1.2;
	font-weight: 700;
}

@media (min-width: 640px) {
	.hero-title {
		font-size: 1.875rem;
	}
}

@media (min-width: 768px) {
	.hero-title {
		font-size: 2.25rem;
	}
}

@media (min-width: 1024px) {
	.hero-title {
		font-size: 3rem;
	}
}

.hero-description {
	font-size: 0.875rem;
	color: var(--color-gray-600);
	line-height: 1.625;
}

@media (min-width: 640px) {
	.hero-description {
		font-size: 1rem;
	}
}

@media (min-width: 768px) {
	.hero-description {
		font-size: 1.125rem;
	}
}

.hero-image {
	position: relative;
	height: 15rem;
	border-radius: 0.5rem;
	overflow: hidden;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
	.hero-image {
		height: 17.5rem;
	}
}

@media (min-width: 768px) {
	.hero-image {
		height: 21.875rem;
	}
}

@media (min-width: 1024px) {
	.hero-image {
		height: 28.125rem;
	}
}

.hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Stats Section */
.stats-section {
	background: linear-gradient(to bottom, var(--color-gray-50), white);
	padding: 2rem 0;
}

@media (min-width: 640px) {
	.stats-section {
		padding: 2.5rem 0;
	}
}

@media (min-width: 768px) {
	.stats-section {
		padding: 3rem 0;
	}
}

@media (min-width: 1024px) {
	.stats-section {
		padding: 3.5rem 0;
	}
}

.section-header {
	text-align: center;
	margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
	.section-header {
		margin-bottom: 2rem;
	}
}

@media (min-width: 768px) {
	.section-header {
		margin-bottom: 2.5rem;
	}
}

@media (min-width: 1024px) {
	.section-header {
		margin-bottom: 3rem;
	}
}

.section-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	padding: 0 1rem;
}

@media (min-width: 640px) {
	.section-title {
		font-size: 1.5rem;
		margin-top: 0.75rem;
		margin-bottom: 0.75rem;
	}
}

@media (min-width: 768px) {
	.section-title {
		font-size: 1.875rem;
	}
}

@media (min-width: 1024px) {
	.section-title {
		font-size: 2.25rem;
	}
}

.section-subtitle {
	font-size: 0.75rem;
	color: var(--color-gray-600);
}

@media (min-width: 640px) {
	.section-subtitle {
		font-size: 0.875rem;
	}
}

@media (min-width: 768px) {
	.section-subtitle {
		font-size: 1rem;
	}
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

@media (min-width: 640px) {
	.stats-grid {
		gap: 1.25rem;
	}
}

@media (min-width: 768px) {
	.stats-grid {
		gap: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.stats-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.stat-card {
	text-align: center;
	padding: 0.75rem;
	border-radius: 0.5rem;
	background: white;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	transition: box-shadow 0.3s;
}

@media (min-width: 640px) {
	.stat-card {
		padding: 1rem;
	}
}

.stat-card:hover {
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.stat-number {
	font-size: 1.875rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
	.stat-number {
		font-size: 2.25rem;
		margin-bottom: 0.75rem;
	}
}

@media (min-width: 768px) {
	.stat-number {
		font-size: 3rem;
	}
}

@media (min-width: 1024px) {
	.stat-number {
		font-size: 3.75rem;
	}
}

.stat-description {
	font-size: 0.75rem;
	color: var(--color-gray-600);
	min-height: 2.5rem;
}

@media (min-width: 640px) {
	.stat-description {
		font-size: 0.875rem;
		min-height: 3rem;
	}
}

@media (min-width: 768px) {
	.stat-description {
		font-size: 1rem;
	}
}

.mobile-break {
	display: block;
}

@media (min-width: 640px) {
	.mobile-break {
		display: none;
	}
}

/* Content Sections */
.content-section {
	padding: 2rem 0;
}

@media (min-width: 640px) {
	.content-section {
		padding: 2.5rem 0;
	}
}

@media (min-width: 768px) {
	.content-section {
		padding: 3rem 0;
	}
}

@media (min-width: 1024px) {
	.content-section {
		padding: 3.5rem 0;
	}
}

.section-gradient {
	background: linear-gradient(135deg, rgba(239, 246, 255, 0.3), rgba(207, 250, 254, 0.2), white);
}

.bg-gray {
	background: var(--color-gray-50);
}

.content-grid {
	display: grid;
	gap: 1.5rem;
	align-items: center;
}

@media (min-width: 640px) {
	.content-grid {
		gap: 2rem;
	}
}

@media (min-width: 768px) {
	.content-grid {
		gap: 2.5rem;
	}
}

@media (min-width: 1024px) {
	.content-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 3rem;
	}
}

.content-grid-reverse .order-1 {
	order: 1;
}

.content-grid-reverse .order-2 {
	order: 2;
}

@media (min-width: 1024px) {
	.content-grid-reverse .order-1 {
		order: 2;
	}

	.content-grid-reverse .order-2 {
		order: 1;
	}
}

.content-text {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

@media (min-width: 640px) {
	.content-text {
		gap: 1.25rem;
	}
}

@media (min-width: 768px) {
	.content-text {
		gap: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.content-text {
		gap: 2rem;
	}
}

.content-title {
	font-size: 1.5rem;
	line-height: 1.2;
	font-weight: 700;
}

@media (min-width: 640px) {
	.content-title {
		font-size: 1.875rem;
	}
}

@media (min-width: 768px) {
	.content-title {
		font-size: 2.25rem;
	}
}

@media (min-width: 1024px) {
	.content-title {
		font-size: 3rem;
	}
}

.features-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

@media (min-width: 640px) {
	.features-list {
		gap: 1.25rem;
	}
}

@media (min-width: 768px) {
	.features-list {
		gap: 1.5rem;
	}
}

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
}

@media (min-width: 640px) {
	.feature-item {
		gap: 0.75rem;
	}
}

.check-icon {
	width: 1.25rem;
	height: 1.25rem;
	color: #2563eb;
	margin-top: 0.125rem;
	flex-shrink: 0;
}

@media (min-width: 640px) {
	.check-icon {
		width: 1.5rem;
		height: 1.5rem;
		margin-top: 0.25rem;
	}
}

.feature-content {
	flex: 1;
}

.feature-title {
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: 0.125rem;
}

@media (min-width: 640px) {
	.feature-title {
		font-size: 1.125rem;
		margin-bottom: 0.25rem;
	}
}

@media (min-width: 768px) {
	.feature-title {
		font-size: 1.25rem;
	}
}

.feature-description {
	font-size: 0.75rem;
	color: var(--color-gray-600);
	line-height: 1.625;
}

@media (min-width: 640px) {
	.feature-description {
		font-size: 0.875rem;
	}
}

@media (min-width: 768px) {
	.feature-description {
		font-size: 1rem;
	}
}

.content-image {
	position: relative;
	height: 17.5rem;
	border-radius: 0.5rem;
	overflow: hidden;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
	.content-image {
		height: 20rem;
	}
}

@media (min-width: 768px) {
	.content-image {
		height: 25rem;
	}
}

@media (min-width: 1024px) {
	.content-image {
		height: 28.125rem;
	}
}

.content-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Footer */
.footer {
	background: white;
	border-top: 1px solid var(--color-gray-200);
	padding: 1.5rem 0;
}

@media (min-width: 640px) {
	.footer {
		padding: 2rem 0;
	}
}

@media (min-width: 768px) {
	.footer {
		padding: 2.5rem 0;
	}
}

.footer-info {
	margin-bottom: 1rem;
}

@media (min-width: 640px) {
	.footer-info {
		margin-bottom: 1.5rem;
	}
}

@media (min-width: 768px) {
	.footer-info {
		margin-bottom: 2rem;
	}
}

.footer-logo {
	height: 1rem;
	margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
	.footer-logo {
		height: 1.25rem;
		margin-bottom: 0.75rem;
	}
}

@media (min-width: 768px) {
	.footer-logo {
		height: 1.5rem;
		margin-bottom: 1rem;
	}
}

.footer-contact {
	font-size: 0.75rem;
	color: var(--color-gray-700);
	margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
	.footer-contact {
		font-size: 0.875rem;
		margin-bottom: 0.75rem;
	}
}

@media (min-width: 768px) {
	.footer-contact {
		font-size: 1rem;
	}
}

.footer-contact a {
	transition: color 0.3s;
}

.footer-contact a:hover {
	color: #2563eb;
}

.footer-copyright {
	padding-top: 0.75rem;
	border-top: 1px solid var(--color-gray-200);
	text-align: center;
}

@media (min-width: 640px) {
	.footer-copyright {
		padding-top: 1rem;
	}
}

@media (min-width: 768px) {
	.footer-copyright {
		padding-top: 1.5rem;
	}
}

.footer-copyright p {
	font-size: 0.625rem;
	color: var(--color-gray-600);
}

@media (min-width: 640px) {
	.footer-copyright p {
		font-size: 0.75rem;
	}
}

@media (min-width: 768px) {
	.footer-copyright p {
		font-size: 0.875rem;
	}
}

/* Modal */
.modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 50;
	align-items: center;
	justify-content: center;
	padding: 0.75rem;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(4px);
}

@media (min-width: 640px) {
	.modal {
		padding: 1rem;
	}
}

.modal.active {
	display: flex;
}

.modal-content {
	background: white;
	border-radius: 0.5rem;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	max-width: 80rem;
	width: 100%;
	max-height: 95vh;
	overflow-y: auto;
}

@media (min-width: 640px) {
	.modal-content {
		max-height: 90vh;
	}
}

.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 1rem;
}

@media (min-width: 640px) {
	.modal-header {
		margin-bottom: 1.5rem;
	}
}

.modal-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
	.modal-title {
		font-size: 1.5rem;
		margin-bottom: 0.5rem;
	}
}

@media (min-width: 768px) {
	.modal-title {
		font-size: 1.875rem;
	}
}

@media (min-width: 1024px) {
	.modal-title {
		font-size: 2.25rem;
	}
}

.modal-subtitle {
	font-size: 0.875rem;
	color: var(--color-gray-600);
}

@media (min-width: 640px) {
	.modal-subtitle {
		font-size: 1rem;
	}
}

.modal-close {
	padding: 0.375rem;
	background: none;
	border: none;
	border-radius: 9999px;
	cursor: pointer;
	transition: background-color 0.3s;
	flex-shrink: 0;
}

@media (min-width: 640px) {
	.modal-close {
		padding: 0.5rem;
	}
}

.modal-close:hover {
	background: var(--color-gray-100);
}

.modal-close svg {
	width: 1.25rem;
	height: 1.25rem;
}

@media (min-width: 640px) {
	.modal-close svg {
		width: 1.5rem;
		height: 1.5rem;
	}
}

.modal-body {
	display: grid;
	gap: 1.5rem;
}

.modal-content {
	padding: 1rem;
}

@media (min-width: 640px) {
	.modal-body {
		gap: 2rem;

	}

	.modal-content {
		padding: 1.5rem;
	}
}

@media (min-width: 768px) {

	.modal-content {
		padding: 2rem;
	}
}

@media (min-width: 1024px) {
	.modal-body {
		grid-template-columns: repeat(2, 1fr);
		gap: 3rem;

	}

	.modal-content {
		padding: 2.5rem;
	}
}

/* Contact Form */
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

@media (min-width: 640px) {
	.contact-form {
		gap: 1.25rem;
	}
}

.form-group {
	display: flex;
	flex-direction: column;
}
.form-group:not(:last-child){
	margin-bottom: 20px;
}
.form-checkbox{
	margin-bottom: 20px;
}
.wpcf7-list-item{
	margin: 0;
}
.wpcf7 form .wpcf7-response-output {
	border: none !important;
	margin: 0 !important;
}

.form-group label {
	font-size: 0.75rem;
	font-weight: 500;
	margin-bottom: 0.375rem;
}

@media (min-width: 640px) {
	.form-group label {
		font-size: 0.875rem;
		margin-bottom: 0.5rem;
	}
}

.required {
	color: #ef4444;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 0.625rem 0.75rem;
	font-size: 0.875rem;
	border: 1px solid var(--color-gray-300);
	border-radius: 0.5rem;
	background: var(--color-gray-50);
	outline: none;
	transition: all 0.3s;
}

@media (min-width: 640px) {

	.form-group input,
	.form-group textarea {
		padding: 0.75rem 1rem;
		font-size: 1rem;
	}
}

.form-group input:focus,
.form-group textarea:focus {
	border-color: transparent;
	ring: 2px solid #3b82f6;
	box-shadow: 0 0 0 2px #3b82f6;
}

.form-group textarea {
	resize: none;
}

.form-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
	margin-top: 0.125rem;
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
}

@media (min-width: 640px) {
	.form-checkbox input[type="checkbox"] {
		margin-top: 0.25rem;
	}
}

.form-checkbox label {
	font-size: 0.75rem;
	color: var(--color-gray-600);
}

@media (min-width: 640px) {
	.form-checkbox label {
		font-size: 0.875rem;
	}
}

.form-checkbox a {
	color: #2563eb;
	text-decoration: underline;
}

.btn-submit {
	width: 100%;
	background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
	color: white;
	padding: 0.625rem 1.5rem;
	font-size: 0.875rem;
	font-weight: 500;
	border: none;
	border-radius: 0.5rem;
	cursor: pointer;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
}

.submit-button{
	position: relative;
}

.wpcf7-spinner{
	position: absolute;
	bottom: -60%;
	left: 0;
}

@media (min-width: 640px) {
	.btn-submit {
		padding: 0.75rem 1.5rem;
		font-size: 1rem;
	}
}

.btn-submit:hover {
	background: linear-gradient(to right, #0891b2, #3557c9);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Contact Info */
.contact-info {
	background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
	border-radius: 0.5rem;
	padding: 1.5rem;
	color: white;
}

@media (min-width: 640px) {
	.contact-info {
		padding: 2rem;
	}
}

.contact-info-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
	.contact-info-title {
		font-size: 1.5rem;
		margin-bottom: 1rem;
	}
}

@media (min-width: 768px) {
	.contact-info-title {
		font-size: 1.875rem;
	}
}

.contact-info-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

@media (min-width: 640px) {
	.contact-info-list {
		gap: 1rem;
	}
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
}

@media (min-width: 640px) {
	.contact-info-item {
		gap: 0.75rem;
	}
}

.contact-icon {
	width: 1rem;
	height: 1rem;
	margin-top: 0.125rem;
	flex-shrink: 0;
}

@media (min-width: 640px) {
	.contact-icon {
		width: 1.25rem;
		height: 1.25rem;
		margin-top: 0.25rem;
	}
}

.contact-info-item a {
	font-size: 1rem;
	text-decoration: none;
	word-break: break-all;
}

@media (min-width: 640px) {
	.contact-info-item a {
		font-size: 1.125rem;
	}
}

.contact-info-item a:hover {
	text-decoration: underline;
}