.demo-section {
	display: flex;
	gap: 80px;
	align-items: flex-start;
	justify-content: space-between;
	min-height: 80vh;
}

.left-content {
	width: 100%;
	max-width: 585px;
}

.c-masthead__subtitle {
	font-size: 22px;
	font-weight: 700;
	color: #112B38;
	margin-bottom: 20px;
}

.c-masthead__title {
	margin-bottom: 60px;
}


.testimonial {
	border-radius: 24px;
	background: #F2F2F2;
	padding: 25px;
	position: relative;
}

.company-name {
	font-size: 1.5rem;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 15px;
	font-family: 'Georgia', serif;
}

.testimonial-quote {
	color: #112B38;
	font-size: 22px;
	font-weight: 700;
	line-height: 150%;
	margin-bottom: 10px;
}

.testimonial-text {
	color: #112B38;
	font-size: 16px;
	line-height: 175%;
	margin-bottom: 20px;
}

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

.author-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: #ddd;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	color: #666;
}

.author-info {
	display: block;
	background-color: initial;
	margin: 0;
}

.author-info h4 {
	color: #112B38;
	font-size: 16px;
	font-weight: 700;
	line-height: 137%;
	margin-bottom: 2px;
}

.author-info p {
	color: #112B38;
	font-size: 16px;
	line-height: 137%;
	margin-bottom: 0;
}

.right-content {
	width: 100%;
	max-width: 778px;
	border-radius: 24px;
	background: #112B38;
	padding: 40px;
	color: white;
}

.form-title {
	font-size: 25px;
	font-weight: 700;
	line-height: 140%;
	margin-bottom: 40px;
}

.demo-slider {
	text-align: left;
	width: 100%;
	margin-bottom: 40px;
}

.slider-question {
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%;
	margin-bottom: 14px;
}

.slider-container {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
	width: calc(100% - 90px);
	position: relative;
}

.slider {
	-webkit-appearance: none;
	width: 100%;
	height: 12px;
	background: #e0e0e0;
	border-radius: 5px;
	border: none;
	outline: none;
	transition: opacity .2s, background .2s;
	position: relative;
	flex: 1;
}

.slider::-webkit-slider-runnable-track {
	height: 12px;
	background: transparent;
	border-radius: 5px;
	position: relative;
}

.slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 36px;
	height: 36px;
	margin-top: -14px;
	background: #112B38;
	cursor: pointer;
	border-radius: 50%;
	border: 4px solid #fff;
	position: relative;
	z-index: 2;
	transition: all .2s;
}

.slider::-moz-range-track {
	height: 8px;
	background: transparent;
	border-radius: 5px;
	position: relative;
	border: none;
}

.slider::-moz-range-thumb {
	margin-top: -8px;
	width: 24px;
	height: 24px;
	background: white;
	cursor: pointer;
	border-radius: 50%;
	border: 2px solid #333;
	transition: all .2s;
}

.slider::-ms-track {
	height: 12px;
	background: transparent;
	border-color: transparent;
	color: transparent;
	border: none;
}

.slider::-ms-fill-lower {
	background: #3ed9cc;
	border-radius: 5px;
}

.slider::-ms-fill-upper {
	background: #e0e0e0;
	border-radius: 5px;
}

.slider.active::-webkit-slider-thumb {
	background: white;
	border-color: #3ed9cc;
	transform: scale(1.1);
}

.slider.active::-moz-range-thumb {
	background: white;
	border-color: #3ed9cc;
	transform: scale(1.1);
}

.slider.active::-ms-thumb {
	background: white;
	border-color: #3ed9cc;
}

.slider-filled-track {
	position: absolute;
	top: 49%;
	left: 0;
	height: 12px;
	background: #3ed9cc;
	border-radius: 5px;
	z-index: 1;
	transform: translateY(-50%);
	transition: width 0.2s ease;
}

.slider-value {
	font-size: 30px;
	font-weight: 600;
	letter-spacing: -2.1px;
	color: white;
	margin: 0;
	min-width: 60px;
	text-align: right;
	position: absolute;
	right: -90px;
}

.email-section {
	margin-bottom: 40px;
}

.email-label {
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%;
	margin-bottom: 8px;
}

.email-input {
	border-radius: 10px !important;
	border: 1px solid #CCC;
	background: #FFF;
	width: 100%;
	height: 56px;
	padding: 0 16px;
	color: rgba(17, 43, 56, 1);
	font-size: 20px;
	line-height: normal;
}

.email-input::placeholder {
	color: rgba(17, 43, 56, 0.60);
}

.submit-button {
	width: 100%;
	background-color: #3ed9cc;
	color: #112B38;
	border: none;
	padding: 15px 30px;
	border-radius: 8px;
	font-size: 20px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s;
	text-decoration: none;
	display: inline-block;
	text-align: center;
}

.submit-button:hover {
	background-color: #35c4b8;
}

.submit-button:disabled {
	background-color: #ccc;
	cursor: not-allowed;
}

.email-error {
	color: #ff6b6b;
	font-size: 0.9rem;
	margin-top: 5px;
	display: none;
}

.email-input.error {
	border: 2px solid #ff6b6b;
}

@media only screen and (max-width: 768px) {
	.demo-section {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.left-content {
		padding-right: 0;
	}

	.main-headline {
		font-size: 2.2rem;
	}

	.slider-value {
		gap: 15px;
	}

	.slider-value {
		font-size: 2.5rem;
		min-width: 50px;
	}

	.slider-question {
		font-size: 0.9rem;
	}
  
  
  /* Calendly Popup Custom Styles - Higher specificity to override Calendly's styles */
        body .calendly-overlay {
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            width: 100vw !important;
            height: 100vh !important;
            background-color: rgba(0, 0, 0, 0.8) !important;
            z-index: 9999 !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
        }

        body .calendly-popup {
            position: relative !important;
            width: 90% !important;
            max-width: 800px !important;
            height: 90% !important;
            max-height: 600px !important;
            background: white !important;
            border-radius: 12px !important;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
            overflow: hidden !important;
        }

        body .calendly-popup-content {
            width: 100% !important;
            height: 100% !important;
            border-radius: 12px !important;
            overflow: hidden !important;
        }

        body .calendly-popup-content iframe {
            border-radius: 12px !important;
            border: none !important;
        }

        body .calendly-popup-close {
            position: absolute !important;
            top: 15px !important;
            right: 15px !important;
            z-index: 10000 !important;
            width: 40px !important;
            height: 40px !important;
            background: rgba(255, 255, 255, 0.9) !important;
            border: none !important;
            border-radius: 50% !important;
            cursor: pointer !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            font-size: 20px !important;
            font-weight: bold !important;
            color: #333 !important;
            transition: all 0.2s ease !important;
        }

        body .calendly-popup-close:hover {
            background: white !important;
            transform: scale(1.1) !important;
        }

        body .calendly-popup-close::before {
            content: "×" !important;
            font-size: 24px !important;
            line-height: 1 !important;
        }

        body .calendly-close-overlay {
            position: absolute !important;
            top: 0 !important;
            left: 0 !important;
            width: 100% !important;
            height: 100% !important;
            z-index: 1 !important;
        }

        body .calendly-spinner {
            position: absolute !important;
            top: 50% !important;
            left: 50% !important;
            transform: translate(-50%, -50%) !important;
            z-index: 2 !important;
        }

        body .calendly-bounce1, 
        body .calendly-bounce2, 
        body .calendly-bounce3 {
            width: 12px !important;
            height: 12px !important;
            background-color: #3ed9cc !important;
            border-radius: 100% !important;
            display: inline-block !important;
            animation: calendly-bounce 1.4s infinite ease-in-out both !important;
        }

        body .calendly-bounce1 {
            animation-delay: -0.32s !important;
        }

        body .calendly-bounce2 {
            animation-delay: -0.16s !important;
        }

        @keyframes calendly-bounce {
            0%, 80%, 100% {
                transform: scale(0);
            }
            40% {
                transform: scale(1);
            }
        }

        /* Mobile responsive */
        @media (max-width: 768px) {
            body .calendly-popup {
                width: 95% !important;
                height: 95% !important;
                max-height: none !important;
            }
            
            body .calendly-popup-close {
                top: 10px !important;
                right: 10px !important;
                width: 35px !important;
                height: 35px !important;
            }
        }

        @media only screen and (max-width: 768px) {
            .demo-section {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .left-content {
                padding-right: 0;
            }

            .main-headline {
                font-size: 2.2rem;
            }

            .slider-container {
                gap: 15px;
            }
            
            .slider-value {
                font-size: 2.5rem;
                min-width: 50px;
            }
            
            .slider-question {
                font-size: 0.9rem;
            }
        }