/*
Theme Name: GeeksVille Block
Theme URI: https://geeksville.co
Author: GeeksVille
Author URI: https://geeksville.co
Description: Custom lightweight block theme for GeeksVille Technologies with branded colors, broadband packages, and lead CTAs.
Version: 1.0.0
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
Text Domain: geeksville-block
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* Modern enhancements */
:root {
	--gs-shadow: 0 10px 40px rgba(16, 24, 40, 0.08);
	--gs-shadow-lg: 0 20px 60px rgba(16, 24, 40, 0.12);
	--gs-shadow-hover: 0 16px 48px rgba(216, 30, 36, 0.15);
	--gs-gradient: linear-gradient(135deg, #d81e24 0%, #f5b400 50%, #1c3e7c 100%);
	--gs-gradient-soft: linear-gradient(135deg, rgba(216, 30, 36, 0.08), rgba(245, 180, 0, 0.08), rgba(28, 62, 124, 0.08));
	--gs-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modern Space Grotesk + JetBrains Mono fonts */
body {
	font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.gs-mono, .gs-tech-text, .gs-speed {
	font-family: 'JetBrains Mono', 'SF Mono', monospace;
}

/* Ensure packages section has clean stacking context */
#packages {
	position: relative;
	z-index: 1;
}

/* Smooth scroll */
html {
	scroll-behavior: smooth;
}

body {
	background: var(--wp--preset--color--surface);
	overflow-x: hidden;
}

/* Sticky header */
header.wp-block-template-part {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	transition: var(--gs-transition);
	box-shadow: 0 2px 20px rgba(16, 24, 40, 0.06);
}

/* Animated fade-in on scroll */
.gs-animate {
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.gs-animate-delay-1 { animation-delay: 0.1s; }
.gs-animate-delay-2 { animation-delay: 0.2s; }
.gs-animate-delay-3 { animation-delay: 0.3s; }

/* Hero gradient overlay - modern tech look */
.gs-hero .wp-block-cover__background {
	background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(28, 62, 124, 0.85) 40%, rgba(139, 92, 246, 0.7) 70%, rgba(236, 72, 153, 0.6) 100%) !important;
}

.gs-hero h1 {
	font-weight: 800 !important;
	letter-spacing: -0.03em !important;
	line-height: 1.05 !important;
}

.gs-hero p {
	letter-spacing: -0.01em;
}

.gs-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.02em;
}

.gs-hero-badge::before {
	content: "";
	width: 8px;
	height: 8px;
	background: #22c55e;
	border-radius: 50%;
	animation: pulse 2s infinite;
}

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

/* Cards with hover effects */
.gs-card {
	background: var(--wp--preset--color--white);
	border: 1px solid var(--wp--preset--color--neutral-300);
	border-radius: 20px;
	box-shadow: var(--gs-shadow);
	padding: 28px;
	transition: var(--gs-transition);
	position: relative;
	overflow: hidden;
}

.gs-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gs-gradient);
	opacity: 0;
	transition: var(--gs-transition);
}

.gs-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--gs-shadow-hover);
	border-color: transparent;
}

.gs-card:hover::before {
	opacity: 1;
}

/* Service icons */
.gs-icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	background: var(--gs-gradient-soft);
	margin-bottom: 16px;
	transition: var(--gs-transition);
}

.gs-icon svg {
	width: 28px;
	height: 28px;
	stroke: var(--wp--preset--color--primary);
	stroke-width: 1.5;
	fill: none;
}

.gs-card:hover .gs-icon {
	background: var(--gs-gradient);
}

.gs-card:hover .gs-icon svg {
	stroke: #fff;
}

/* Pricing cards */
.gs-pricing-card {
	background: var(--wp--preset--color--white);
	border: 2px solid var(--wp--preset--color--neutral-300);
	border-radius: 24px;
	padding: 32px 28px;
	text-align: center;
	transition: var(--gs-transition);
	position: relative;
	z-index: 10;
	display: flex;
	flex-direction: column;
}

.gs-pricing-card > a,
.gs-pricing-card .wp-block-button__link {
	display: inline-block !important;
	width: auto !important;
	height: auto !important;
	margin-top: auto;
	align-self: stretch;
	flex-shrink: 0;
}

#packages {
	position: relative;
	z-index: 1;
	isolation: isolate;
}

.gs-grid-3 {
	align-items: stretch;
}

.gs-grid-3 > * {
	display: flex;
	flex-direction: column;
}

.gs-pricing-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--gs-shadow-lg);
	border-color: var(--wp--preset--color--primary);
}

.gs-pricing-card.gs-popular {
	border-color: var(--wp--preset--color--primary);
	background: linear-gradient(180deg, #fff 0%, rgba(216, 30, 36, 0.03) 100%);
}

.gs-popular-badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--gs-gradient);
	color: #fff;
	padding: 8px 20px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	white-space: nowrap;
}

.gs-price {
	font-size: 48px;
	font-weight: 800;
	color: var(--wp--preset--color--neutral-900);
	line-height: 1;
	margin: 16px 0 8px;
}

.gs-price-currency {
	font-size: 20px;
	font-weight: 600;
	vertical-align: super;
}

.gs-price-period {
	font-size: 16px;
	color: var(--wp--preset--color--neutral-700);
	font-weight: 500;
}

.gs-speed {
	font-size: 18px;
	font-weight: 700;
	color: var(--wp--preset--color--accent-blue);
	margin-bottom: 20px;
}

/* Pills and badges */
.gs-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border-radius: 999px;
	background: rgba(248, 113, 113, 0.12);
	color: var(--wp--preset--color--primary);
	font-weight: 600;
	font-size: 14px;
	transition: var(--gs-transition);
}

.gs-pill:hover {
	background: var(--wp--preset--color--primary);
	color: #fff;
}

.gs-grid {
	display: grid;
	gap: 20px;
}

@media (min-width: 768px) {
	.gs-grid-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.gs-grid-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.gs-grid-6 {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}
}

.gs-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: 12px;
	background: rgba(28, 62, 124, 0.08);
	color: var(--wp--preset--color--accent-blue);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.02em;
	transition: var(--gs-transition);
}

.gs-badge:hover {
	background: var(--wp--preset--color--accent-blue);
	color: #fff;
}

/* Coverage area tags */
.gs-area-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 12px 18px;
	border-radius: 14px;
	background: var(--wp--preset--color--white);
	border: 1px solid var(--wp--preset--color--neutral-300);
	color: var(--wp--preset--color--neutral-900);
	font-weight: 600;
	font-size: 14px;
	transition: var(--gs-transition);
	box-shadow: 0 2px 8px rgba(16, 24, 40, 0.04);
}

.gs-area-tag::before {
	content: "";
	width: 8px;
	height: 8px;
	background: #22c55e;
	border-radius: 50%;
}

.gs-area-tag:hover {
	border-color: var(--wp--preset--color--primary);
	box-shadow: var(--gs-shadow);
}

/* Testimonials */
.gs-testimonial {
	background: var(--wp--preset--color--white);
	border-radius: 24px;
	padding: 32px;
	box-shadow: var(--gs-shadow);
	position: relative;
	transition: var(--gs-transition);
}

.gs-testimonial:hover {
	transform: translateY(-4px);
	box-shadow: var(--gs-shadow-lg);
}

.gs-quote-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: var(--gs-gradient-soft);
	margin-bottom: 16px;
}

.gs-quote-icon svg {
	width: 24px;
	height: 24px;
	fill: var(--wp--preset--color--primary);
}

.gs-avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--gs-gradient);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 700;
	font-size: 20px;
	margin-right: 14px;
	flex-shrink: 0;
}

/* FAQ accordion */
details {
	background: var(--wp--preset--color--white);
	border: 1px solid var(--wp--preset--color--neutral-300);
	border-radius: 16px;
	margin-bottom: 12px;
	transition: var(--gs-transition);
	overflow: hidden;
}

details:hover {
	border-color: var(--wp--preset--color--primary);
}

details[open] {
	box-shadow: var(--gs-shadow);
	border-color: var(--wp--preset--color--primary);
}

details summary {
	padding: 20px 24px;
	font-weight: 600;
	font-size: 17px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	list-style: none;
	transition: var(--gs-transition);
}

details summary::-webkit-details-marker {
	display: none;
}

details summary::after {
	content: "+";
	font-size: 24px;
	font-weight: 400;
	color: var(--wp--preset--color--primary);
	transition: var(--gs-transition);
}

details[open] summary::after {
	transform: rotate(45deg);
}

details > p,
details > .wp-block-paragraph {
	padding: 0 24px 20px;
	margin: 0;
	color: var(--wp--preset--color--neutral-700);
	line-height: 1.7;
}

/* Contact form styling */
.gs-form input,
.gs-form textarea,
.gs-form select {
	width: 100%;
	padding: 14px 18px;
	border: 2px solid var(--wp--preset--color--neutral-300);
	border-radius: 14px;
	font-size: 16px;
	font-family: inherit;
	transition: var(--gs-transition);
	background: var(--wp--preset--color--white);
}

.gs-form input:focus,
.gs-form textarea:focus,
.gs-form select:focus {
	outline: none;
	border-color: var(--wp--preset--color--primary);
	box-shadow: 0 0 0 4px rgba(216, 30, 36, 0.1);
}

.gs-form label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	font-size: 14px;
	color: var(--wp--preset--color--neutral-700);
}

.gs-form button {
	background: var(--gs-gradient);
	color: #fff;
	border: none;
	padding: 16px 32px;
	border-radius: 999px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: var(--gs-transition);
	width: 100%;
}

.gs-form button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(216, 30, 36, 0.3);
}

/* Contact icons */
.gs-contact-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 0;
	transition: var(--gs-transition);
}

.gs-contact-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: var(--gs-gradient-soft);
	flex-shrink: 0;
	transition: var(--gs-transition);
}

.gs-contact-icon svg {
	width: 22px;
	height: 22px;
	stroke: var(--wp--preset--color--primary);
	stroke-width: 2;
	fill: none;
}

.gs-contact-item:hover .gs-contact-icon {
	background: var(--gs-gradient);
}

.gs-contact-item:hover .gs-contact-icon svg {
	stroke: #fff;
}

/* WhatsApp floating button */
.gs-whatsapp-float {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 999;
	width: 64px;
	height: 64px;
	background: #25d366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
	transition: var(--gs-transition);
	animation: float 3s ease-in-out infinite;
}

.gs-whatsapp-float:hover {
	transform: scale(1.1);
	box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

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

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

/* Section dividers - wave */
.gs-wave-divider {
	position: relative;
	margin-top: -1px;
}

.gs-wave-divider svg {
	display: block;
	width: 100%;
	height: auto;
}

/* Highlight box */
.gs-highlight {
	background: linear-gradient(135deg, rgba(216, 30, 36, 0.08), rgba(245, 180, 0, 0.08));
	border-radius: 20px;
	padding: 24px 28px;
	border-left: 4px solid var(--wp--preset--color--primary);
}

/* Section headers */
.gs-section-header {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 40px;
}

.gs-section-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border-radius: 999px;
	background: var(--gs-gradient-soft);
	color: var(--wp--preset--color--primary);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 16px;
}

/* Button enhancements */
.wp-block-button__link {
	transition: var(--gs-transition) !important;
}

.wp-block-button__link:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Gradient text */
.gs-gradient-text {
	background: var(--gs-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Trust indicators */
.gs-trust-bar {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
	flex-wrap: wrap;
	padding: 24px;
	background: var(--wp--preset--color--white);
	border-radius: 16px;
	box-shadow: var(--gs-shadow);
}

.gs-trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--wp--preset--color--neutral-700);
	font-weight: 600;
	font-size: 14px;
}

.gs-trust-item svg {
	width: 20px;
	height: 20px;
	stroke: var(--wp--preset--color--primary);
	stroke-width: 2;
	fill: none;
}

/* ========================================
   WPForms Custom Styling
   ======================================== */

/* Form container */
.gs-highlight .wpforms-container {
	width: 100%;
}

.gs-highlight .wpforms-form {
	display: grid;
	gap: 18px;
}

/* Labels */
.gs-highlight .wpforms-form .wpforms-field-label {
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 600;
	font-size: 14px;
	color: var(--wp--preset--color--neutral-900);
	margin-bottom: 8px;
	display: block;
}

.gs-highlight .wpforms-form .wpforms-required-label {
	color: var(--wp--preset--color--primary);
}

/* Input fields */
.gs-highlight .wpforms-form input[type="text"],
.gs-highlight .wpforms-form input[type="email"],
.gs-highlight .wpforms-form input[type="tel"],
.gs-highlight .wpforms-form input[type="url"],
.gs-highlight .wpforms-form input[type="number"],
.gs-highlight .wpforms-form textarea,
.gs-highlight .wpforms-form select {
	width: 100%;
	padding: 14px 18px;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 15px;
	color: var(--wp--preset--color--neutral-900);
	background: #fff;
	border: 2px solid var(--wp--preset--color--neutral-300);
	border-radius: 12px;
	transition: var(--gs-transition);
	outline: none;
}

.gs-highlight .wpforms-form input:focus,
.gs-highlight .wpforms-form textarea:focus,
.gs-highlight .wpforms-form select:focus {
	border-color: var(--wp--preset--color--primary);
	box-shadow: 0 0 0 4px rgba(216, 30, 36, 0.1);
}

.gs-highlight .wpforms-form input::placeholder,
.gs-highlight .wpforms-form textarea::placeholder {
	color: var(--wp--preset--color--neutral-700);
	opacity: 0.6;
}

/* Dropdown select */
.gs-highlight .wpforms-form select {
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234b5563' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 44px;
}

/* Field descriptions */
.gs-highlight .wpforms-form .wpforms-field-description {
	font-size: 13px;
	color: var(--wp--preset--color--neutral-700);
	margin-top: 6px;
}

/* Submit button - Glossy Golden */
.gs-highlight .wpforms-form .wpforms-submit-container {
	margin-top: 8px;
}

.gs-highlight .wpforms-form button[type="submit"],
.gs-highlight .wpforms-form .wpforms-submit {
	width: 100%;
	padding: 16px 28px;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: var(--wp--preset--color--neutral-900);
	background: linear-gradient(180deg, #fcd34d 0%, #f5b400 50%, #d97706 100%);
	border: none;
	border-radius: 999px;
	cursor: pointer;
	transition: var(--gs-transition);
	box-shadow: 0 4px 14px rgba(245, 180, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}

.gs-highlight .wpforms-form button[type="submit"]:hover,
.gs-highlight .wpforms-form .wpforms-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(245, 180, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
	background: linear-gradient(180deg, #fde68a 0%, #fbbf24 50%, #f59e0b 100%);
}

.gs-highlight .wpforms-form button[type="submit"]:active {
	transform: translateY(0);
}

/* Error styling */
.gs-highlight .wpforms-form .wpforms-error {
	border-color: var(--wp--preset--color--primary) !important;
}

.gs-highlight .wpforms-form label.wpforms-error {
	color: var(--wp--preset--color--primary);
	font-size: 13px;
	margin-top: 6px;
}

/* WPForms inline - positioned in form column */
#contact {
	position: relative;
	padding-bottom: 260px;
}

#contact .gs-form-column {
	position: relative;
}

#contact .gs-wpforms-inline {
	position: absolute;
	top: 232px;
	right: 40px;
	width: calc(50% - 80px);
	max-width: 420px;
	background: transparent;
	padding: 0 !important;
	margin: 0;
	z-index: 10;
}

@media (max-width: 900px) {
	#contact .gs-wpforms-inline {
		position: static;
		width: 100%;
		max-width: 100%;
		margin-top: 20px;
		padding: 0 !important;
	}
}

.gs-wpforms-inline .wpforms-container,
.gs-wpforms-wrapper .wpforms-container {
	max-width: 100%;
}

.gs-wpforms-inline .wpforms-form,
.gs-wpforms-wrapper .wpforms-form {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

/* Modern form field labels */
.gs-wpforms-inline .wpforms-field-label,
.gs-wpforms-wrapper .wpforms-field-label {
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 600;
	font-size: 12px;
	color: var(--wp--preset--color--neutral-900);
	margin-bottom: 4px;
	letter-spacing: -0.01em;
}

.gs-wpforms-inline .wpforms-field-description,
.gs-wpforms-wrapper .wpforms-field-description {
	font-size: 10px;
	color: var(--wp--preset--color--neutral-700);
	margin-top: 2px;
}

/* Stretched modern input fields */
.gs-wpforms-inline input[type="text"],
.gs-wpforms-inline input[type="email"],
.gs-wpforms-inline input[type="tel"],
.gs-wpforms-inline textarea,
.gs-wpforms-inline select,
.gs-wpforms-wrapper input[type="text"],
.gs-wpforms-wrapper input[type="email"],
.gs-wpforms-wrapper input[type="tel"],
.gs-wpforms-wrapper textarea,
.gs-wpforms-wrapper select {
	width: 100% !important;
	max-width: 100% !important;
	padding: 10px 14px;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 13px;
	color: var(--wp--preset--color--neutral-900);
	background: #fff;
	border: 1.5px solid var(--wp--preset--color--neutral-300);
	border-radius: 8px;
	transition: var(--gs-transition);
	box-sizing: border-box;
}

.gs-wpforms-inline input:focus,
.gs-wpforms-inline textarea:focus,
.gs-wpforms-inline select:focus,
.gs-wpforms-wrapper input:focus,
.gs-wpforms-wrapper textarea:focus,
.gs-wpforms-wrapper select:focus {
	border-color: var(--wp--preset--color--primary);
	box-shadow: 0 0 0 3px rgba(216, 30, 36, 0.08);
	outline: none;
}

.gs-wpforms-inline input::placeholder,
.gs-wpforms-wrapper input::placeholder {
	color: var(--wp--preset--color--neutral-700);
	opacity: 0.5;
}

/* Custom select dropdown */
.gs-wpforms-inline select,
.gs-wpforms-wrapper select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 40px;
	cursor: pointer;
}

/* Get Started gradient button (matches Most Popular card) */
.gs-wpforms-inline button[type="submit"],
.gs-wpforms-inline .wpforms-submit,
.gs-wpforms-wrapper button[type="submit"],
.gs-wpforms-wrapper .wpforms-submit {
	width: 100%;
	padding: 8px 18px;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	background: var(--gs-gradient);
	border: none;
	border-radius: 999px;
	cursor: pointer;
	transition: var(--gs-transition);
	box-shadow: 0 4px 14px rgba(216, 30, 36, 0.3);
	text-align: center;
	letter-spacing: -0.01em;
	margin-top: 0;
}

.gs-wpforms-inline button[type="submit"]:hover,
.gs-wpforms-inline .wpforms-submit:hover,
.gs-wpforms-wrapper button[type="submit"]:hover,
.gs-wpforms-wrapper .wpforms-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(216, 30, 36, 0.4);
	filter: brightness(1.05);
}
