/* Ace Conversion Engine — shared smart-form styling.
   Kept neutral/minimal so it inherits the existing site's fonts/colors;
   adjust variables below to match ace-va.net's exact brand palette. */

:root {
	--ace-primary: #0b6cf0;
	--ace-primary-dark: #0850b3;
	--ace-text: #1a1a1a;
	--ace-border: #d7dce1;
	--ace-error: #d93025;
	--ace-success: #1a7f37;
}

.ace-lead-form {
	max-width: 480px;
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
	font-family: inherit;
}

.ace-lead-form label {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--ace-text);
	display: block;
	margin-bottom: 0.25rem;
}

.ace-lead-form input,
.ace-lead-form select,
.ace-lead-form textarea {
	width: 100%;
	padding: 0.65rem 0.8rem;
	border: 1px solid var(--ace-border);
	border-radius: 6px;
	font-size: 1rem;
	box-sizing: border-box;
}

.ace-lead-form input:focus,
.ace-lead-form select:focus,
.ace-lead-form textarea:focus {
	outline: none;
	border-color: var(--ace-primary);
	box-shadow: 0 0 0 3px rgba(11, 108, 240, 0.15);
}

.ace-lead-form button[type="submit"] {
	background: var(--ace-primary);
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 0.85rem 1.5rem;
	font-size: 1.05rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s ease;
}

.ace-lead-form button[type="submit"]:hover:not(:disabled) {
	background: var(--ace-primary-dark);
}

.ace-lead-form button[type="submit"]:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.ace-form-error {
	color: var(--ace-error);
	font-size: 0.9rem;
	margin: 0;
}

.ace-form-success {
	color: var(--ace-success);
	font-size: 1.1rem;
	font-weight: 600;
	text-align: center;
	padding: 1.5rem 0;
}

/* honeypot field — hidden from real users, catches bots that fill every field */
.ace-lead-form .ace-hp-field {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* WhatsApp floating button */
.ace-whatsapp-float {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 60px;
	height: 60px;
	background: #25d366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
	z-index: 9999;
	text-decoration: none;
}

.ace-whatsapp-float svg {
	width: 32px;
	height: 32px;
	fill: #fff;
}

.ace-whatsapp-float:hover {
	transform: scale(1.08);
	transition: transform 0.15s ease;
}

/* Landing page shared layout */
.ace-landing {
	max-width: 640px;
	margin: 0 auto;
	padding: 3rem 1.5rem;
}

.ace-landing__hero h1 {
	font-size: 2rem;
	margin-bottom: 0.75rem;
}

.ace-landing__hero p {
	font-size: 1.1rem;
	color: #555;
	margin-bottom: 2rem;
}

.ace-landing__note {
	margin-top: 1.5rem;
	font-size: 0.9rem;
}

.ace-cta-button {
	display: inline-block;
	background: var(--ace-primary);
	color: #fff;
	padding: 0.85rem 1.75rem;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	margin-top: 1rem;
}

.ace-cta-button:hover {
	background: var(--ace-primary-dark);
}

/* Trust indicators / stats */
.ace-stats {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2.5rem;
	padding: 2.5rem 1rem;
	text-align: center;
}

.ace-stats__item {
	display: flex;
	flex-direction: column;
}

.ace-stats__number {
	font-size: 2.25rem;
	font-weight: 700;
	color: var(--ace-primary);
}

.ace-stats__label {
	font-size: 0.95rem;
	color: #555;
	margin-top: 0.25rem;
}

/* Pricing */
.ace-pricing {
	padding: 3rem 1.5rem;
	text-align: center;
}

.ace-pricing h2 {
	margin-bottom: 2rem;
}

.ace-pricing__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
}

.ace-pricing__card {
	flex: 1 1 260px;
	max-width: 300px;
	border: 1px solid var(--ace-border);
	border-radius: 10px;
	padding: 2rem 1.5rem;
	text-align: left;
}

.ace-pricing__card--featured {
	border-color: var(--ace-primary);
	box-shadow: 0 4px 20px rgba(11, 108, 240, 0.15);
	transform: scale(1.03);
}

.ace-pricing__price {
	font-size: 2rem;
	font-weight: 700;
	margin: 0.5rem 0 1.25rem;
}

.ace-pricing__price span {
	font-size: 1rem;
	font-weight: 400;
	color: #777;
}

.ace-pricing__card ul {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem;
}

.ace-pricing__card li {
	padding: 0.4rem 0;
	border-bottom: 1px solid #eee;
}

/* Calendly embed section */
.ace-calendly {
	padding: 3rem 1.5rem;
	text-align: center;
}
