* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}
body {
	font-family: 'Univers', 'Helvetica Neue', Arial, sans-serif;
	background: linear-gradient(135deg, #00959c 0%, #00959c 100%);
	min-height: 100vh;
	padding: 20px;
	color: #333;
}
.container {
	max-width: 1000px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
	overflow: hidden;
}


.error-message {
  color: #d9534f;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}
.invalid {
  border-color: #d9534f!important;
}

#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}
.toast {
  background-color: #d9534f;
  color: white;
  padding: 10px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  animation: fadeInOut 3s forwards;
}
.toast.success {
  background-color: #5cb85c;
}
@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(-10px); }
  10% { opacity: 1; transform: translateY(0); }
  90% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-10px); }
}


.disclaimer{ 	
    font-family: 'Univers', 'Helvetica Neue', Arial, sans-serif;
    color: white;
    font-size: 10px;
    text-align:center;
    padding:8px 9% 0;
    line-height:14px;
}

.header {
	background: linear-gradient(135deg, #00959c 0%, #00959c 100%);
	color: white;
	padding: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-content {
	flex: 1;
	text-align: center;
}
.logo {
	flex-shrink: 0;
	margin-right: 30px;
	max-width: 250px;
}
.logo img{
	max-width: 100%;
}
.logo svg {
	width: 316px;
	height: auto;
	display: block;
}
.header h1 {
	font-size: 2.0rem;
	font-weight: 700;
	margin-bottom: 10px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.header p {
	font-size: 1.1rem;
	opacity: 0.9;
	font-weight: 400;
}
.form-section {
	padding: 40px;
}
.section-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 25px;
	color: #2c3e50;
	border-bottom: 3px solid #00959c;
	padding-bottom: 10px;
}
.form-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	margin-bottom: 30px;
}
.form-group {
	margin-bottom: 20px;
}
.tooltip {
	position: relative;
	display: inline-block;
}
.tooltip .tooltiptext {
	visibility: hidden;
	width: 280px;
	background-color: #2c3e50;
	color: #fff;
	text-align: left;
	border-radius: 8px;
	padding: 12px;
	position: absolute;
	z-index: 1000;
	bottom: 125%;
	left: 50%;
	margin-left: -140px;
	opacity: 0;
	transition: opacity 0.3s;
	font-size: 0.9rem;
	line-height: 1.4;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.tooltip .tooltiptext::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #2c3e50 transparent transparent transparent;
}
.tooltip:hover .tooltiptext {
	visibility: visible;
	opacity: 1;
}
.form-group label {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
	font-weight: 600;
	color: #34495e;
	font-size: 0.95rem;
}
.info-icon {
	margin-left: 8px;
	width: 16px;
	height: 16px;
	background: #00959c;
	border-radius: 50%;
	color: white;
	font-size: 12px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: help;
}
select {
	-webkit-appearance: menulist !important;
	appearance: menulist !important;
}
.form-control {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #e1e8ed;
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: white;
}
.form-control:focus {
	outline: none;
	border-color: #00959c;
	box-shadow: 0 0 0 3px rgba(0, 149, 156, 0.1);
}
 input[type="number"]::-webkit-outer-spin-button,  input[type="number"]::-webkit-inner-spin-button {
 -webkit-appearance: none;
 margin: 0;
}



.currency-input-container {
	position: relative;
	display: unset;
	align-items: center;
}
.currency-symbol {
	position: absolute;
	left: 16px;
	font-weight: 600;
	color: #2c3e50;
	z-index: 1;
	top:0;
	pointer-events: none;
}
.currency-input {
	padding-left: 40px !important;
}
.storage-input-container {
	position: relative;
	display: unset;
	align-items: center;
}
.storage-unit {
	position: absolute;
	right: 16px;
	font-weight: 600;
	color: #7f8c8d;
	pointer-events: none;
	font-size: 0.9rem;
	top:0;
}
.case-study-link {
	color: #007bff;
	text-decoration: underline;
	cursor: pointer;
	font-size: 0.9rem;
	margin-top: 5px;
	display: block;
}
.case-study-link:hover {
	color: #0056b3;
	text-decoration: underline;
}
.calculate-btn {
	background: linear-gradient(135deg, #00959c 0%, #00959c 100%);
	color: white;
	border: none;
	padding: 16px 40px;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	max-width: 300px;
	margin: 30px auto;
	display: block;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.calculate-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(0, 149, 156, 0.3);
}
.results-section {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 40px;
	margin-top: 20px;
}
.results-section h3 {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 30px;
	color: #2c3e50;
	text-align: center;
}
.results-grid-custom {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto auto auto;
	gap: 15px;
}
.result-item {
	background: white;
	padding: 20px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}
.result-item:hover {
	transform: translateY(-2px);
}
.result-item-centered {
	grid-column: 1 / -1;
	text-align: center;
	padding: 30px;
	background: linear-gradient(135deg, #00959c 0%, #00959c 100%);
	color: white;
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(0, 149, 156, 0.3);
}
.result-item-centered .result-value {
	font-size: 3rem;
	font-weight: bold;
	margin-bottom: 10px;
}
.result-item-centered .result-label {
	font-size: 1.2rem;
	opacity: 0.9;
	font-weight: 600;
	color: white;
}
.result-value {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 8px;
	color: #2c3e50;
}
.result-label {
	font-size: 0.9rem;
	color: #7f8c8d;
	font-weight: 500;
}
.efficiency-red {
	color: #e74c3c;
}
.efficiency-yellow {
	color: #f39c12;
}
.efficiency-green {
	color: #27ae60;
}
.hidden {
	display: none;
}
.lead-magnet-section {
	margin-top: 40px;
	padding: 40px;
	background: linear-gradient(135deg, #00959c 0%, #00959c 100%);
	border-radius: 16px;
	text-align: center;
	color: white;
	position: relative;
	overflow: hidden;
}
.lead-magnet-section::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
	animation: shimmer 3s ease-in-out infinite;
}
 @keyframes shimmer {
 0%, 100% {
transform: rotate(0deg);
}
 50% {
transform: rotate(180deg);
}
}
.lead-magnet-content {
	position: relative;
	z-index: 2;
}
.lead-magnet-headline {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 15px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.lead-magnet-subtext {
	font-size: 1.1rem;
	margin-bottom: 10px;
	opacity: 0.95;
}
.lead-magnet-benefits {
	font-size: 0.95rem;
	margin-bottom: 25px;
	opacity: 0.9;
}
.lead-magnet-cta {
	background: linear-gradient(135deg, #54d0b6 0%, #54d0b6 100%);
	color: #fff;
	border: none;
	padding: 18px 45px;
	font-size: 1.2rem;
	font-weight: 600;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
	margin: 0 10px 10px 10px;
	text-decoration: none;
	display: inline-block;
}
.lead-magnet-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(255, 107, 107, 0.5);
	background: #008990;
	text-decoration: none;
	color: white;
}
.savings-cap-notice {
	background: rgba(255, 193, 7, 0.1);
	border: 1px solid #ffc107;
	border-radius: 8px;
	padding: 12px;
	margin-top: 10px;
	font-size: 0.85rem;
	color: #856404;
	text-align: center;
}
.email-popup {
	display: none;
	position: fixed;
	z-index: 10000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(5px);
}
.email-popup-content {
	background-color: white;
	margin: 10% auto;
	padding: 40px;
	border-radius: 20px;
	width: 90%;
	max-width: 500px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	position: relative;
	animation: popupSlideIn 0.3s ease-out;
}
 @keyframes popupSlideIn {
 from {
 opacity: 0;
 transform: translateY(-50px);
}
 to {
 opacity: 1;
 transform: translateY(0);
}
}
.popup-close {
	position: absolute;
	top: 15px;
	right: 20px;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	color: #aaa;
	transition: color 0.3s;
}
.popup-close:hover {
	color: #000;
}
.popup-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #00959c;
	margin-bottom: 20px;
	text-align: center;
}
.popup-subtitle {
	font-size: 1rem;
	color: #666;
	margin-bottom: 25px;
	text-align: center;
	line-height: 1.5;
}
.email-input-group {
	margin-bottom: 20px;
}
.email-input-group label {
	display: block;
	font-weight: 600;
	color: #34495e;
	margin-bottom: 8px;
}
.email-input {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #e1e8ed;
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s ease;
}
.email-input:focus {
	outline: none;
	border-color: #00959c;
	box-shadow: 0 0 0 3px rgba(0, 149, 156, 0.1);
}
.popup-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
	margin-top: 25px;
}
.popup-btn {
	padding: 12px 30px;
	border-radius: 25px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	font-size: 1rem;
}
.popup-btn-primary {
	background: linear-gradient(135deg, #00959c 0%, #00959c 100%);
	color: white;
}
.popup-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 149, 156, 0.3);
}
.popup-btn-secondary {
	background: #f8f9fa;
	color: #666;
	border: 2px solid #e1e8ed;
}
.popup-btn-secondary:hover {
	background: #e9ecef;
}

@media (max-width: 768px) {
.email-popup-content {
	margin: 20% auto;
	padding: 30px 20px;
	width: 95%;
}
.results-section{
    padding:0;
}
.form-section {
  padding: 20px;
}
.lead-magnet-section {
  padding: 30px 15px;
    
}
  
select {
	pointer-events: auto !important;
	z-index: 10;
}
.header {
	flex-direction: column;
	text-align: center;
}
.logo {
	margin-right: 0;
	margin-bottom: 20px;
}
.logo svg {
	width: 310px;
}
.header h1 {
	font-size: 2rem;
}
.form-grid {
	grid-template-columns: 1fr;
}
.results-grid-custom {
	grid-template-columns: 1fr;
}
.lead-magnet-headline {
	font-size: 1.5rem;
}
.lead-magnet-cta {
	padding: 15px 35px;
	font-size: 1.1rem;
}
}
