html,
body {
  overflow-x: hidden;
}

/* ===================================
   Step 0 Height & Overflow Fixes
   =================================== */
body:has(.ev-landing-page) {
  overflow: hidden;
  height: 100vh;
  background-color: #F1F7F4;
}

body:has(.ev-landing-page) .ev-landing-page {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
}

/* ===================================
   TCO Common Classes
   =================================== */

/* Common Slider - Used across all steps */
.tco-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #004922;
  outline: none;
  cursor: pointer;
}

.tco-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #FF8C00;
  border: 2px solid #000000;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.tco-slider::-webkit-slider-thumb:hover {
  transform: scale(1.5);
}

.tco-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #FF8C00;
  border: 2px solid #FFFFFF;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.tco-slider::-moz-range-thumb:hover {
  transform: scale(1.5);
}

/* Common Slider Wrapper */
.tco-slider-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding: 20px;
}

.tco-slider-wrapper-horizontal {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Common Slider Value Display */
.tco-slider-value {
  background-color: #FFFFFF;
  border: 2px solid #CCCCCC;
  border-radius: 6px;
  padding: 5px 10px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  text-align: center;
  width: fit-content;
  align-self: center;
}

.tco-slider-value-display {
  align-self: center;
  background-color: #AAE4C5;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #333333;
  margin-top: 12px;
  padding: 0 20px;
}

/* Common Button Base */
.tco-button {
  display: inline-block;
  background-color: #00A651;
  border-radius: 4px;
  padding: 12px 32px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 166, 81, 0.2);
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
}

.tco-button:hover {
  background-color: #008a42;
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 166, 81, 0.3);
  color: #ffffff;
}

.tco-button:active {
  transform: translateY(0);
}

/* Common Card Base */
.tco-card {
  background-color: #FFFFFF;
  border: 2px solid #CCCCCC;
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s;
  position: relative;
}

.tco-card:hover {
  border-color: #00A651;
}

.tco-card-active {
  background-color: #00A651;
  border-color: #00A651;
}

/* Common Input Field */
.tco-input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  color: #333333;
  background-color: #FFFFFF;
  border: 2px solid #CCCCCC;
  border-radius: 8px;
  transition: border-color 0.3s;
}

.tco-input:hover {
  border-color: #AAAAAA;
}

.tco-input:focus {
  outline: none;
  border-color: #00A651;
}

/* Date Input with Icon */
.tco-input-date {
  padding-right: 45px;
}

.tco-date-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Modal Styles */
.tco-modal-content {
  border-radius: 12px;
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.tco-modal-header {
  border-bottom: 1px solid #E0E0E0;
  padding: 24px 30px;
  background-color: #FFFFFF;
}

.tco-modal-title {
  font-family: 'Titillium Web', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  text-transform: uppercase;
  margin: 0;
}

.tco-modal-body {
  padding: 30px;
  background-color: #FFFFFF;
}

.tco-modal-label {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 8px;
  display: block;
}

.tco-modal-footer {
  border-top: 1px solid #E0E0E0;
  padding: 20px 30px;
  background-color: #FFFFFF;
  justify-content: center;
}

.tco-btn-close {
  opacity: 1;
  background: none;
  border: none;
  font-size: 28px;
  font-weight: 300;
  color: #000000;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
}

.tco-btn-close:hover {
  opacity: 0.7;
  color: #000000;
}

.tco-btn-close span {
  line-height: 1;
}

/* ===================================
   Step 0 Header - Custom Black Header
   =================================== */
.step0-header {
  background-color: #000000;
  height: 70px;
  position: relative;
  z-index: 100;
}

.step0-header-content {
  height: 100%;
  padding: 0 30px;
  display: flex;
  align-items: center;
}

.step0-header-logo {
  display: flex;
  align-items: center;
}

.step0-logo-img {
  height: 40px;
  width: auto;
}

/* Landing Page Styles - New Design */
.ev-landing-page {
  position: relative;
  width: 100%;
  height: calc(100vh - 70px);
  background-color: #004d5a;
  /* Dark teal/deep green */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main Container */
.ev-landing-page .step0-container {
  position: relative;
  width: 100%;
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 2rem 3rem;
  z-index: 1;
}

/* Logo Section */
.ev-landing-page .step0-logo-section {
  z-index: 10;
}

.ev-landing-page .step0-main-logo {
  height: 50px;
  width: auto;
}

/* Tagline Banner */
.ev-landing-page .step0-tagline-banner {
  padding: 8px 24px;
  z-index: 10;
  background-color: #00A651;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  width: 280px;
  text-align: center;
}

.ev-landing-page .step0-tagline-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 1px;
}

/* Headline Section */
.ev-landing-page .step0-headline-section {
  position: absolute;
  top: 8rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}

.ev-landing-page .step0-headline {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ev-landing-page .step0-headline-line1 {
  font-size: 48px;
  color: #ffffff;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.ev-landing-page .step0-headline-line2 {
  font-size: 72px;
  color: #FF8C00;
  /* Orange */
  letter-spacing: 3px;
  font-weight: 900;
}

/* Trucks Section */
.ev-landing-page .step0-trucks-section {
  position: relative;
  width: 100%;
  height: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12rem;
  z-index: 5;
}

/* Side Trucks */
.ev-landing-page .step0-truck-left,
.ev-landing-page .step0-truck-right {
  position: absolute;
  width: 25%;
  max-width: 300px;
  height: auto;
  z-index: 6;
}

.ev-landing-page .step0-truck-left {
  left: 5%;
  bottom: 10%;
}

.ev-landing-page .step0-truck-right {
  right: 5%;
  bottom: 10%;
}

.ev-landing-page .step0-truck-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Central Truck (Holographic Effect) */
.ev-landing-page .step0-truck-center {
  position: relative;
  width: 50%;
  max-width: 600px;
  height: auto;
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ev-landing-page .step0-truck-center-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.6)) drop-shadow(0 0 40px rgba(0, 255, 255, 0.4)) brightness(1.2) contrast(1.1);
  animation: holographic-glow 3s ease-in-out infinite alternate;
}

@keyframes holographic-glow {
  0% {
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.5)) drop-shadow(0 0 30px rgba(0, 255, 255, 0.3)) brightness(1.1) contrast(1.05);
  }

  100% {
    filter: drop-shadow(0 0 25px rgba(0, 255, 255, 0.7)) drop-shadow(0 0 50px rgba(0, 255, 255, 0.5)) brightness(1.3) contrast(1.15);
  }
}

/* CTA Button Section */
.ev-landing-page .step0-cta-section {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.ev-landing-page .step0-cta-button {
  display: inline-block;
  background-color: #3D838F;
  /* Green */
  border-radius: 6px;
  padding: 14px 40px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(61, 131, 143, 0.3);
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  margin-top: 40px;
  margin-bottom: 40px;
}

.ev-landing-page .step0-cta-button:hover {
  background-color: #316c75;
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(61, 131, 143, 0.4);
  color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 1440px) {
  .ev-landing-page .landing-title {
    font-size: 38px;
    line-height: 40px;
  }

  .ev-landing-page .content-column {
    padding: 3rem 2.5rem;
  }
}

@media (max-width: 992px) {

  .ev-landing-page .truck-column,
  .ev-landing-page .content-column {
    height: 100%;
  }

  .ev-landing-page .truck-column img {
    height: 100%;
  }

  .ev-landing-page .landing-title {
    font-size: 34px;
    line-height: 36px;
    margin-bottom: 1.5rem;
  }

  .ev-landing-page .content-column {
    padding: 2.5rem 2rem;
  }

  .ev-landing-page .features-list {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 768px) {

  /* Hide truck column on mobile */
  .ev-landing-page .truck-column {
    display: none !important;
  }

  /* Make content column full width on mobile */
  .ev-landing-page .content-column {
    width: 100% !important;
    height: 100%;
    padding: 2rem 1.5rem;
  }

  .ev-landing-page .landing-title {
    font-size: 30px;
    line-height: 32px;
    margin-bottom: 1.5rem;
  }

  .ev-landing-page .feature-text {
    font-size: 15px;
    line-height: 22px;
  }

  .ev-landing-page .compare-button,
  .btn-submit {
    font-size: 16px;
    padding: 10px 28px;
  }

  .ev-landing-page .feature-icon {
    width: 45px;
    height: 45px;
    margin-right: 1rem;
  }

  .ev-landing-page .feature-icon img {
    width: 24px;
    height: 24px;
  }

  .ev-landing-page .button-wrapper {
    margin-top: 2rem;
  }

  .ev-landing-page .features-list {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .ev-landing-page .landing-title {
    font-size: 26px;
    line-height: 28px;
  }

  .ev-landing-page .feature-text {
    font-size: 14px;
    line-height: 20px;
  }

  .ev-landing-page .compare-button,
  .btn-submit {
    font-size: 14px;
    padding: 10px 24px;
  }

  .ev-landing-page .feature-icon {
    width: 40px;
    height: 40px;
  }

  .ev-landing-page .feature-icon img {
    width: 20px;
    height: 20px;
  }
}

input[type="radio"] {
  display: none;
}

/* ===================================
 Page Wrapper
 =================================== */
.page-wrapper {
  width: 100%;
  min-height: 100vh;
  background-color: #F1F7F4;
}

/* ===================================
 Header
 =================================== */
.page-header {
  background-color: #F1F7F4;
  height: 70px;
  border-bottom: 1px solid #F1F7F4;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  height: 100%;
  padding: 0 30px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  /* height: 40px; */
  height: 60px;
  width: auto;
}

.header-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 400;
}

.breadcrumb-link {
  color: #666666;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb-link:hover {
  color: #00A651;
}

.breadcrumb-separator {
  color: #999999;
}

.breadcrumb-current {
  color: #333333;
  font-weight: 500;
}

/* ===================================
 Main Container
 =================================== */
main.content {
  display: flex;
  justify-content: center;
}

.main-container {
  display: flex;
  min-height: calc(100vh - 70px);
  position: relative;
}

/* ===================================
 Sidebar - Fixed & Sticky
 =================================== */
.sidebar {
  width: 80px;
  min-width: 80px;
  max-width: 80px;
  background-color: transparent;
  position: sticky;
  top: 70px;
  align-self: flex-start;
  height: calc(100vh - 70px);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  gap: 8px;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 10;
}

.sidebar-step {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin: 0;
  background-color: #4F4F4F;
}

.sidebar-step:hover {
  background-color: #3A3A3A;
}

.sidebar-step.active {
  background-color: #F48120;
}

.step-icon {
  width: 24px;
  height: 24px;
  color: #FFFFFF;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* ===================================
 Content Area
 =================================== */
.content {
  flex: 1;
  background-color: transparent;
  padding: 40px 50px;
  overflow-y: auto;
}

.content-inner {
  max-width: 1480px;
  width: 100%;
}

/* ===================================
 Page Title
 =================================== */
.page-title {
  font-family: 'Titillium Web', sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  color: #333333;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

/* ===================================
 Form Section
 =================================== */
.form-section {
  margin-bottom: 50px;
}

.section-title {
  font-family: 'Titillium Web', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #333333;
  margin-bottom: 25px;
  letter-spacing: 0.3px;
}

/* ===================================
 Form Group
 =================================== */
.form-group {
  margin-bottom: 30px;
}

.field-label {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  margin-bottom: 12px;
  display: block;
}

.field-unit {
  color: #777777;
  font-size: 14px;
}

.required {
  color: #DC3545;
  margin-left: 3px;
}

/* ===================================
 Selection Cards (Application Type)
 =================================== */
.selection-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.segment-row {
  grid-template-columns: repeat(2, 1fr);
  max-width: 400px;
}

.selection-card {
  background-color: #FFFFFF;
  border: 2px solid #CCCCCC;
  border-radius: 8px;
  padding: 20px 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.selection-card:hover {
  border-color: #00A651;
}

.selection-card.active {
  background-color: #00A651;
  border-color: #00A651;
}

.selection-card .card-checkmark {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background-color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.selection-card.active .card-checkmark {
  opacity: 1;
}

.selection-card .card-checkmark img {
  width: 30px;
  height: 30px;
  stroke: #00A651;
  display: block;
  margin: auto;
}

.selection-card .card-text {
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  transition: color 0.3s;
}

.selection-card.active .card-text {
  color: #FFFFFF;
  font-weight: 600;
}

/* ===================================
 Gradient Cards
 =================================== */
.gradient-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gradient-card {
  background-color: #FFFFFF;
  border: 2px solid #CCCCCC;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gradient-card:hover {
  border-color: #00A651;
}

.gradient-card.active {
  background-color: #00A651;
  border-color: #00A651;
}


.gradient-card-label {
  display: flex;
  align-items: center;
  width: 100%;
  cursor: pointer;
  position: relative;
  flex-grow: 1;
}

.gradient-card-label .gradient-text {
  flex: 1;
  font-size: 26px;
  font-weight: 600;
  color: #333333;
  z-index: 1;
  transition: color 0.3s;
  padding-left: 20px;
}

.gradient-card.active .gradient-card-label .gradient-text {
  color: #FFFFFF;
}

.gradient-card-label .gradient-img {
  flex: 1;
  width: 50%;
  height: 100px;
  object-fit: cover;
  object-position: center;
  align-self: flex-end;
}

.gradient-slider-wrapper {
  width: 100%;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* gradient-km-display - uses tco-slider-value class in HTML */

.gradient-card.active .gradient-percentage-display {
  border-color: #00A651;
  color: #00A651;
}

/* Gradient slider - uses tco-slider class in HTML */

/* ===================================
 Input Rows
 =================================== */
.input-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.input-row:has(.input-col:nth-child(3)) {
  grid-template-columns: repeat(3, 1fr);
}

.input-col {
  display: flex;
  flex-direction: column;
}

.field-input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  color: #333333;
  background-color: #FFFFFF;
  border: 2px solid #CCCCCC;
  border-radius: 8px;
  transition: border-color 0.3s;
}

.field-input:hover {
  border-color: #AAAAAA;
}

.field-input:focus {
  outline: none;
  border-color: #00A651;
}

/* ===================================
 Step 1 Slider Styles
 =================================== */
.slider-input-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Step1 slider - uses tco-slider class in HTML */

.slider-input-field {
  width: 100px;
  height: 35px;
  padding: 5px 10px;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  color: #333333;
  background-color: #FFFFFF;
  border: 2px solid #CCCCCC;
  border-radius: 8px;
  transition: border-color 0.3s;
  text-align: center;
}

.slider-input-field:hover {
  border-color: #AAAAAA;
}

.slider-input-field:focus {
  outline: none;
  border-color: #00A651;
}

/* ===================================
 Submit Button
 =================================== */
.form-actions {
  margin-top: 40px;
}

/* btn-submit extends tco-button - hover/active styles inherited */

/* ===================================
 Responsive Design
 =================================== */
@media (max-width: 1200px) {
  .content {
    padding: 30px 40px;
  }

  .selection-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .slider-input-wrapper {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 992px) {
  .header-content {
    padding: 0 20px;
  }

  .content {
    padding: 25px 30px;
  }

  .page-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 20px;
  }

  .input-row {
    grid-template-columns: 1fr;
  }

  .input-row:has(.input-col:nth-child(3)) {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sidebar {
    width: 70px;
    min-width: 70px;
    max-width: 70px;
    padding: 20px 0;
    gap: 14px;
  }

  .sidebar-step {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
  }

  .step-icon {
    width: 24px;
    height: 24px;
  }

  .header-breadcrumb {
    font-size: 12px;
  }

  .content {
    padding: 20px;
  }

  .page-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .section-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .selection-row {
    grid-template-columns: 1fr;
  }

  .gradient-row {
    grid-template-columns: 1fr;
  }

  .gradient-card {
    min-height: 180px;
    padding: 15px;
  }

  .gradient-card .gradient-text {
    font-size: 22px;
    padding: 20px 30px;
  }

  .gradient-card .gradient-img {
    height: 100px;
  }

  .gradient-slider-wrapper {
    margin-top: 10px;
  }

  .gradient-km-display {
    font-size: 14px;
    padding: 6px 12px;
  }

  .slider-input-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .btn-submit {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .header-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
    gap: 10px;
  }

  .page-header {
    min-height: 70px;
    height: 85px;
  }

  .logo-img {
    height: 32px;
  }

  .sidebar {
    width: 60px;
    min-width: 60px;
    max-width: 60px;
    padding: 16px 0;
    gap: 12px;
  }

  .sidebar-step {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .step-icon {
    width: 20px;
    height: 20px;
  }

  .content {
    padding: 15px;
  }

  .gradient-card .gradient-text {
    font-size: 20px;
    padding: 15px 20px;
  }
}


/* ===================================
   Step 2 - Vehicle Comparison Styles
   =================================== */

/* Page Header */
.vehicle-comparison-header {
  margin-bottom: 40px;
}

.page-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  margin-top: 12px;
  margin-bottom: 0;
}

/* Vehicle Cards Container */
.vehicle-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

/* Base Vehicle Card */
.vehicle-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 20px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.competitor-card {
  border: 1px solid #CCCCCC;
}

.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Vehicle Badge */
.vehicle-badge {
  padding: 10px 24px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  text-align: center;
  margin: 0;
}

.propel-badge {
  background-color: #00A651;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  width: 180px;
}

.competitor-badge {
  background-color: #00758D;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  width: 200px;
}

/* Vehicle Card Content */
.vehicle-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Propel EV Card Specific */
.propel-card {
  background-color: #2D2D2D;
}

.propel-card .vehicle-card-content {
  background-color: #2D2D2D;
}

.vehicle-battery {
  font-family: 'Titillium Web', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #00E472;
  text-transform: uppercase;
  margin: 0 0 8px 0;
  letter-spacing: 0.5px;
}

.propel-card .vehicle-model {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  margin: 0 0 24px 0;
}

/* Competitor Card Specific */
.competitor-card {
  position: relative;
}

.vehicle-title {
  font-family: 'Titillium Web', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #333333;
  text-transform: uppercase;
  margin: 0 0 8px 0;
  letter-spacing: 0.5px;
}

.vehicle-company {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #666666;
  margin: 0 0 24px 0;
  text-transform: uppercase;
}

/* Delete Competitor Button */
.delete-competitor-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  z-index: 2;
}

.delete-competitor-btn:hover {
  transform: scale(1.1);
}

.delete-competitor-btn svg {
  width: 24px;
  height: 24px;
}

/* Vehicle Image */
.vehicle-image-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  min-height: 200px;
}

.vehicle-image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  width: 85%;
}

/* No Image Placeholder */
.no-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  min-height: 200px;
  background-color: #f5f5f5;
  border: 2px dashed #cccccc;
  border-radius: 8px;
  padding: 20px;
}

.no-image-text {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #999999;
  text-align: center;
}

/* Fuel Consumption */
.vehicle-consumption {
  margin-top: auto;
  padding-top: 20px;
}

.consumption-label {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #CCCCCC;
  margin: 0 0 8px 0;
}

.competitor-card .consumption-label {
  color: #666666;
}

.consumption-value {
  display: flex;
  align-items: baseline;
  gap: 8px;
  justify-content: center;
}

.value-number {
  font-family: 'Titillium Web', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.propel-value {
  color: #00E472;
}

.competitor-value {
  color: #FF8C00;
}

.value-unit {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #CCCCCC;
  text-transform: uppercase;
}

.competitor-card .value-unit {
  color: #666666;
}

/* Vehicle Slider Wrapper */
.vehicle-slider-wrapper {
  margin: 16px 0;
  width: 100%;
}

/* Vehicle Range Section */
.vehicle-range {
  margin-top: 20px;
  text-align: center;
}

.range-label {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #CCCCCC;
  margin: 0 0 8px 0;
}

.competitor-card .range-label {
  color: #666666;
}

.range-value {
  font-family: 'Titillium Web', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.2;
}

.competitor-card .range-value {
  color: #333333;
}

.range-unit {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #CCCCCC;
}

.competitor-card .range-unit {
  color: #666666;
}

/* Add Competitor Card */
.add-competitor-card {
  background-color: transparent;
  border: 3px dashed #CCCCCC;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
}

.add-competitor-card:hover {
  transform: none;
  box-shadow: none;
  border-color: #00A651;
}

.add-competitor-icon {
  margin-bottom: 24px;
}

.add-competitor-icon svg {
  display: block;
}

.add-competitor-title {
  font-family: 'Titillium Web', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  text-transform: uppercase;
  margin: 0 0 30px 0;
  letter-spacing: 0.5px;
  text-align: center;
}

/* Add Competitor Form */
.add-competitor-form {
  width: 100%;
}

.form-field {
  margin-bottom: 20px;
}

.field-label-small {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 8px;
  display: block;
}

.field-select {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: #333333;
  background-color: #FFFFFF;
  border: 2px solid #CCCCCC;
  border-radius: 6px;
  transition: border-color 0.3s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666666' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.field-select:hover {
  border-color: #AAAAAA;
}

.field-select:focus {
  outline: none;
  border-color: #00A651;
}

/* Add Competitor Button */
/* Add Competitor Button - Special variant */
.btn-add-competitor {
  width: 100%;
  padding: 12px 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #FF8C00;
  background-color: transparent;
  border: 2px solid #FF8C00;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

.btn-add-competitor:hover {
  background-color: #FF8C00;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 140, 0, 0.3);
}

.btn-add-competitor:active {
  transform: translateY(0);
}

/* Calculate TCO Button */
.form-actions {
  margin-top: 40px;
  display: flex;
  justify-content: flex-start;
}

/* ===================================
 Responsive Design
 =================================== */
@media (max-width: 1400px) {
  .vehicle-cards-container {
    gap: 20px;
  }

  .vehicle-card {
    min-height: 480px;
  }

  .value-number {
    font-size: 42px;
  }

  .vehicle-battery {
    font-size: 24px;
  }

  .vehicle-title {
    font-size: 24px;
  }
}

@media (max-width: 1200px) {
  .vehicle-cards-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .vehicle-card {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .vehicle-comparison-header {
    margin-bottom: 30px;
  }

  .page-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .page-subtitle {
    font-size: 14px;
  }

  .vehicle-cards-container {
    gap: 24px;
    margin-bottom: 40px;
  }

  .vehicle-card {
    min-height: auto;
  }

  .vehicle-card-content {
    padding: 20px;
  }

  .vehicle-battery,
  .vehicle-title {
    font-size: 22px;
  }

  .value-number {
    font-size: 36px;
  }

  .propel-badge,
  .competitor-badge {
    width: 160px;
    padding: 8px 20px;
    font-size: 12px;
  }

  .add-competitor-card {
    padding: 30px 24px;
  }
}

@media (max-width: 576px) {
  .vehicle-comparison-header {
    margin-bottom: 24px;
  }

  .page-title {
    font-size: 20px;
  }

  .page-subtitle {
    font-size: 13px;
  }

  .vehicle-cards-container {
    gap: 20px;
  }

  .vehicle-card-content {
    padding: 16px;
  }

  .vehicle-battery,
  .vehicle-title {
    font-size: 20px;
  }

  .value-number {
    font-size: 32px;
  }

  .value-unit {
    font-size: 14px;
  }

  .vehicle-image-wrapper {
    min-height: 160px;
    margin: 16px 0;
  }

  .propel-badge,
  .competitor-badge {
    width: 140px;
    padding: 8px 16px;
    font-size: 11px;
  }

  .add-competitor-title {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .btn-add-competitor {
    font-size: 12px;
    padding: 10px 16px;
  }

  .btn-submit {
    width: 100%;
  }
}

/* ===================================
   Step 3 - Executive Summary Styles
   =================================== */

/* Section Subtitle */
.section-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #666666;
  margin-top: 8px;
  margin-bottom: 30px;
}

/* ===================================
 Executive Summary Card
 =================================== */
.executive-summary-card {
  background: #005020;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 8px 24px rgba(0, 116, 58, 0.2);
  margin-bottom: 50px;
  overflow: hidden;
}

/* Top Cost Comparison Row */
.cost-comparison-top-row {
  display: flex;
  align-items: center;
  background-color: #00A54E;
  padding: 32px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.cost-column {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.cost-column-divider {
  width: 1px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.ev-cost-value {
  color: #AAE4C5;
}

.diesel-cost-value {
  color: #FFFFFF;
}

/* Savings Row */
.savings-row {
  display: flex;
  align-items: center;
  background-color: #292929;
  padding: 24px 32px;
  border-top: 1px solid #00E472;
}

.savings-column {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 20px;
}

.savings-column-divider {
  width: 1px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.savings-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.savings-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.savings-content {
  flex: 1;
}

.savings-label {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 6px 0;
}

.savings-value {
  font-family: 'Titillium Web', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #00E472;
  margin: 0;
  line-height: 1.3;
}

.savings-sub {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

/* Benefits Row */
.benefits-row {
  display: flex;
  gap: 0;
  background-color: rgba(0, 0, 0, 0.15);
  padding: 40px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.benefit-card {
  flex: 1;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 0 20px;
}

.benefit-card:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
}

.benefit-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-content {
  flex: 1;
}

.benefit-label {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 6px 0;
}

.benefit-value {
  font-family: 'Titillium Web', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #00E472;
  margin: 0;
  line-height: 1.2;
}

/* ===================================
 Cost Comparison Section (Left)
 =================================== */
.cost-comparison-section {
  padding: 40px;
  background-color: #004922 !important;
}

.benefits-section {
  background-color: #004922 !important;
}

.cost-comparison-main {
  background-color: #00A54E;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  padding: 32px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid #00A54E;
  flex-wrap: wrap;
}

.cost-item {
  flex: 1;
  min-width: 150px;
}

.cost-title {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  margin: 0 0 12px 0;
  letter-spacing: 0.5px;
}

.cost-value-wrapper {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.cost-value {
  font-family: 'Titillium Web', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}

.cost-unit {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.vs-divider {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  padding: 0 16px;
  flex-shrink: 0;
}

.money-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.money-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Metrics Row (Dark Section) */
.metrics-row {
  background-color: #292929;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding: 24px 32px;
  display: flex;
  gap: 5px;
  border: 1px solid #00E472;
}

.metric-item {
  flex: 1;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.metric-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #00E472;
}

.metric-content {
  flex: 1;
}

.metric-label {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 6px 0;
}

.metric-value {
  font-family: 'Titillium Web', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.3;
}

.metric-sub {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

.metric-value-secondary {
  font-family: 'Titillium Web', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #00E472;
  margin: 4px 0 0 0;
  line-height: 1.3;
}

/* ===================================
 Benefits Section (Right)
 =================================== */
.benefits-section {
  background-color: rgba(0, 0, 0, 0.15);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-item img {
  width: 100%;
}

.benefit-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
}

.benefit-content {
  flex: 1;
}

.benefit-label {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 6px 0;
}

.benefit-value {
  font-family: 'Titillium Web', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.2;
}

.co2-text {
  font-size: 18px;
}

.benefit-sub {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

/* ===================================
 Charts Container
 =================================== */
.charts-container {
  margin-bottom: 50px;
}

.chart-title {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 20px 0;
}

.chart-placeholder {
  width: 100%;
  min-height: 350px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.chart-image {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Chart Legend */
.chart-legend {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ev-dot,
.ev-expense-dot {
  background-color: #00A651;
}

.diesel-dot,
.diesel-expense-dot {
  background-color: #00758D;
}

.diesel-dot-2,
.diesel-expense-dot-2 {
  background-color: #8B5CF6;
}

.legend-text {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
}

/* Tenure Slider */
.tenure-slider-wrapper {
  margin-top: 20px;
  padding: 20px;
  background-color: #F5F5F5;
  border-radius: 8px;
}

.tenure-label {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 12px;
  display: block;
}

.tenure-slider {
  width: 100%;
}

.legend-value {
  font-family: 'Titillium Web', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #333333;
}

/* ===================================
 Info Cards Row
 =================================== */
.info-cards-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.info-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.info-card-title {
  font-family: 'Titillium Web', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  text-transform: uppercase;
  margin: 0;
  padding: 24px 24px 20px 24px;
  letter-spacing: 0.5px;
}

/* ===================================
 Fleet Requirements Card
 =================================== */
.fleet-card {
  background-color: #F5F1E8;
}

.fleet-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.fleet-details {
  flex: 1;
}

.fleet-main-label {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #666666;
  margin: 0 0 12px 0;
}

.fleet-size {
  margin-bottom: 24px;
}

.fleet-number {
  font-family: 'Titillium Web', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #333333;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.fleet-unit {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
}

.fleet-metrics {
  display: flex;
  gap: 32px;
}

.fleet-metric-item {
  flex: 1;
}

.metric-item img {
  width: 25px;
}

.fleet-metric-label {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #666666;
  margin: 0 0 6px 0;
}

.fleet-metric-value {
  font-family: 'Titillium Web', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin: 0;
}

.fleet-image {
  flex-shrink: 0;
  /* width: 180px; */
}

.fleet-image img {
  width: 100%;
  height: auto;
  display: block;
}

.fleet-details .fleet-image {
  min-height: 170px;
}

.fleet-infrastructure {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.fleet-infrastructure-label {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #666666;
  margin: 0 0 8px 0;
}

.fleet-infrastructure-value {
  font-family: 'Titillium Web', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  margin: 0;
  line-height: 1.4;
}

.fleet-infrastructure-spec {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #666666;
  margin-top: 4px;
}

/* Utilization Bars */
.utilization-bar-wrapper {
  width: 100%;
  height: 8px;
  background-color: #AFD7C2;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.utilization-bar {
  height: 100%;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.utilization-bar-green {
  background-color: #00A651;
}

.utilization-bar-red {
  background-color: #DC3545;
  position: relative;
}


/* Fleet Card Styling */
.fleet-card-ev {
  background-color: #373737;
}

.fleet-card-ev .fleet-main-label,
.fleet-card-ev .fleet-number,
.fleet-card-ev .fleet-metric-value,
.fleet-card-ev .fleet-infrastructure-value {
  color: #FFFFFF;
}

.fleet-card-ev .fleet-metric-label,
.fleet-card-ev .fleet-unit,
.fleet-card-ev .fleet-infrastructure-label,
.fleet-card-ev .fleet-infrastructure-spec {
  color: rgba(255, 255, 255, 0.7);
}

.fleet-card-diesel {
  background-color: #FFFFFF;
  border: 2px solid #CCCCCC;
}

/* ===================================
 Ecosystem Needs Card
 =================================== */
.ecosystem-card {
  background-color: #F0F8F5;
}

.ecosystem-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.ecosystem-details {
  flex: 1;
}

.ecosystem-main-label {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #666666;
  margin: 0 0 12px 0;
}

.ecosystem-size {
  margin-bottom: 24px;
}

.ecosystem-number {
  font-family: 'Titillium Web', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #333333;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.ecosystem-specs {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ecosystem-spec {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
}

.ecosystem-spec-sub {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #999999;
}

.ecosystem-alternative {
  padding-top: 16px;
}

.alternative-label {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #999999;
  margin: 0 0 8px 0;
}

.alternative-value {
  font-family: 'Titillium Web', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 4px 0;
}

.alternative-spec {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #666666;
  margin: 0;
}

.ecosystem-image {
  flex-shrink: 0;
  width: 180px;
}

.ecosystem-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===================================
 Responsive Design
 =================================== */
@media (max-width: 1400px) {
  .summary-card-inner {
    grid-template-columns: 1.3fr 1fr;
  }

  .cost-value {
    font-size: 42px;
  }

  .benefit-value {
    font-size: 20px;
  }
}

@media (max-width: 1200px) {
  .summary-card-inner {
    grid-template-columns: 1fr;
  }

  .benefits-section {
    padding: 32px 40px;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .benefit-item {
    flex: 1;
    min-width: 200px;
  }

  .info-cards-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .cost-comparison-section {
    padding: 30px;
  }

  .cost-comparison-main {
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
  }

  .vs-divider {
    text-align: center;
    padding: 12px 0;
  }

  .money-icon {
    position: static;
    transform: none;
    margin: 16px auto 0;
  }

  .metrics-row {
    flex-direction: column;
    gap: 5px;
    padding: 20px 24px;
  }

  .benefits-section {
    padding: 24px 30px;
  }

  .fleet-info,
  .ecosystem-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .ecosystem-image {
    width: 140px;
  }
}

@media (max-width: 768px) {
  .executive-summary-card {
    margin-bottom: 40px;
  }

  .cost-comparison-section,
  .benefits-section {
    padding: 24px;
  }

  .cost-value {
    font-size: 36px;
  }

  .benefit-value {
    font-size: 22px;
  }

  .benefit-item {
    min-width: 100%;
  }

  .chart-placeholder {
    min-height: 280px;
  }

  .fleet-number,
  .ecosystem-number {
    font-size: 48px;
  }

  .fleet-metrics {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .cost-comparison-main {
    padding: 20px;
  }

  .cost-value {
    font-size: 32px;
  }

  .metrics-row {
    padding: 16px 20px;
  }

  .metric-value {
    font-size: 18px;
  }

  .benefit-value {
    font-size: 20px;
  }

  .chart-wrapper {
    padding: 16px;
  }

  .chart-placeholder {
    min-height: 220px;
  }

  .info-card-title {
    padding: 20px;
    font-size: 16px;
  }

  .fleet-number,
  .ecosystem-number {
    font-size: 40px;
  }

  .ecosystem-image {
    width: 120px;
  }
}

/* ===================================
   Step 4 - Deployment Plan Styles
   =================================== */

/* ===================================
   Deployment Header
   =================================== */
.deployment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 40px;
}

.deployment-header-left {
  flex: 1;
}

.deployment-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  margin-top: 8px;
  line-height: 1.6;
}

.deployment-header-right {
  flex-shrink: 0;
}

/* Production Hours Input */
.production-hours-input {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.production-label {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
}

.production-unit {
  font-size: 14px;
  color: #797979;
}

.hours-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.hours-input {
  width: 300px;
  height: 48px;
  padding: 0 40px 0 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  background-color: #FFFFFF;
  border: 1px solid #4F4F4F;
  border-radius: 8px;
  appearance: none;
}

.hours-input:focus {
  outline: none;
  border-color: #00A651;
}

.hours-icon {
  position: absolute;
  right: 16px;
  color: #000000;
  pointer-events: none;
}

/* ===================================
   Deployment Metrics Cards
   =================================== */
.deployment-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.metric-card {
  border-radius: 10px;
  padding: 24px 20px;
  border: 1px solid #D7D7D7;
  /* min-height: 140px; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.metric-card-label {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #FFFFFF;
  margin: 0 0 4px 0;
  line-height: 1.2;
}

.metric-card-sublabel {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  margin: 0 0 16px 0;
  opacity: 0.9;
}

.metric-card-value {
  font-family: 'Titillium Web', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  text-transform: uppercase;
  line-height: 1.1;
}

/* Metric Card Colors */
.metric-teal {
  background-color: #005A64;
}

.metric-dark-green {
  background-color: #004922;
}

.metric-green {
  background-color: #00A54E;
}

.metric-gray {
  background-color: #373737;
}

/* ===================================
   Charging Schedule
   =================================== */
.charging-schedule {
  margin-bottom: 40px;
}

.schedule-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.schedule-title {
  font-family: 'Titillium Web', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #333333;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.5px;
}

.schedule-legend {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-green {
  background-color: #00A651;
}

.legend-teal {
  background-color: #005A64;
}

.legend-orange {
  background-color: #F48120;
}

.legend-text {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
}

.legend-text strong {
  font-weight: 700;
}

/* Schedule Timeline */
.schedule-timeline {
  position: relative;
}

/* KIT Rows */
.kit-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  margin-bottom: 16px;
  align-items: center;
}

.kit-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.kit-name {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #333333;
}

.kit-vehicles {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #797979;
}

/* Timeline Bar */
.kit-timeline {
  position: relative;
  display: grid;
  align-items: center;
  gap: 16px;
}

.timeline-bar {
  height: 95px;
  background-color: #CCEDF1;
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}

.timeline-duration {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  white-space: nowrap;
  width: 80px;
  text-align: right;
}

/* Charge Blocks */
.charge-block {
  /* width: 48px; */
  /* height: 48px; */
  /* background-color: #000000; */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

span.charge-time {
  font-size: 13px;
}

.charge-block svg {
  width: 24px;
  height: 24px;
}

/* Run Time Block */
.run-time-block {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 60px;
  background-color: #005A64;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
}

.run-time-block span {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  white-space: nowrap;
}

/* Changeover Bar */
.changeover-bar {
  position: absolute;
  top: -10%;
  width: 8px;
  height: 120%;
  background-color: #F48120;
  border-radius: 4px;
  transform: translateX(-50%);
}

/* Timeline Labels */
.timeline-labels {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  margin-top: 12px;
}

.time-label {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
}

.timeline-labels {
  display: flex;
  padding-left: 155px;
  padding-right: 15px;
  justify-content: space-between;
}

/* ===================================
   Deployment Sliders
   =================================== */
.deployment-sliders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-bottom: 40px;
}

.slider-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.slider-label {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #333333;
}

/* Deployment slider - uses tco-slider class in HTML */

/* slider-value-display - uses tco-slider-value-display class in HTML */

/* ===================================
   Carbon Impact Button
   =================================== */
/* Carbon button extends tco-button with custom padding */
.btn-carbon {
  padding: 14px 40px;
  font-size: 20px;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1400px) {
  .deployment-metrics {
    gap: 16px;
  }

  .metric-card {
    padding: 20px 16px;
  }

  .metric-card-value {
    /* font-size: 26px; */
  }
}

@media (max-width: 1200px) {
  .deployment-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .deployment-sliders {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .deployment-header {
    flex-direction: column;
    gap: 20px;
  }

  .schedule-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .kit-row {
    grid-template-columns: 100px 1fr;
    gap: 12px;
  }

  .kit-name {
    font-size: 20px;
  }

  .kit-vehicles {
    font-size: 16px;
  }

  .timeline-bar {
    height: 50px;
  }

  .charge-block {
    width: 40px;
    height: 40px;
  }

  .charge-block svg {
    width: 20px;
    height: 20px;
  }

  .timeline-labels {
    padding-left: 112px;
  }

  .time-label {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .deployment-metrics {
    grid-template-columns: 1fr;
  }

  .metric-card {
    min-height: auto;
  }

  .schedule-title {
    font-size: 18px;
  }

  .schedule-legend {
    flex-direction: column;
    gap: 12px;
  }

  .kit-row {
    grid-template-columns: 80px 1fr;
    gap: 8px;
  }

  .kit-name {
    font-size: 18px;
  }

  .kit-vehicles {
    font-size: 14px;
  }

  .timeline-bar {
    height: 44px;
  }

  .charge-block {
    width: 32px;
    height: 32px;
  }

  .charge-block svg {
    width: 16px;
    height: 16px;
  }

  .run-time-block {
    height: 44px;
    padding: 0 8px;
  }

  .run-time-block span {
    font-size: 14px;
  }

  .changeover-bar {
    width: 6px;
  }

  .timeline-duration {
    font-size: 14px;
  }

  .timeline-labels {
    padding-left: 88px;
    gap: 8px;
  }

  .time-label {
    font-size: 12px;
  }

  .deployment-sliders {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .btn-carbon {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .deployment-subtitle {
    font-size: 16px;
  }

  .hours-input {
    width: 100px;
  }

  .metric-card-label {
    font-size: 16px;
  }

  .metric-card-sublabel {
    font-size: 12px;
  }

  .metric-card-value {
    font-size: 24px;
  }

  .schedule-title {
    font-size: 16px;
  }

  .legend-text {
    font-size: 14px;
  }

  .kit-row {
    grid-template-columns: 70px 1fr;
  }

  .kit-name {
    font-size: 16px;
  }

  .kit-vehicles {
    font-size: 12px;
  }

  .timeline-bar {
    height: 40px;
  }

  .charge-block {
    width: 28px;
    height: 28px;
  }

  .run-time-block {
    height: 40px;
  }

  .run-time-block span {
    font-size: 12px;
  }

  .timeline-duration {
    font-size: 12px;
  }

  .timeline-labels {
    padding-left: 78px;
  }

  .slider-label {
    font-size: 20px;
  }

  .slider-value-display {
    font-size: 18px;
  }

  .deployment-slider::-webkit-slider-thumb {
    width: 40px;
    height: 40px;
  }

  .deployment-slider::-moz-range-thumb {
    width: 40px;
    height: 40px;
  }
}

/* ========================================
   STEP 5 - CARBON FOOTPRINT STYLES
   ======================================== */

/* Header Section */
.carbon-header-section {
  margin-bottom: 2rem;
}

.carbon-main-title {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 34px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 0.5rem;
}

.carbon-subtitle {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #000;
  margin: 0;
}

/* Carbon Impact Container */
.carbon-impact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* Daily Emissions Card */
.daily-emissions-card {
  background-image: url('/custom/images/green_bg_image.png');
  background-size: cover;
  /* Adjusts image to cover the container */
  background-repeat: no-repeat;
  /* Prevents image from repeating */
  background-position: center;
  /* Centers the image */
  border: 1px solid #00A54E;
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  align-items: center;
}

.emissions-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.emissions-text {
  flex: 1;
}

.emissions-label {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 17px;
  color: #000;
  margin-bottom: 1.5rem;
}

.emissions-value-wrapper {
  margin-bottom: 1rem;
}

.emissions-value {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 34px;
  color: #00A54E;
  display: block;
  margin-bottom: 0.5rem;
}

.emissions-unit {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #4F4F4F;
}

.emissions-badge {
  display: inline-block;
  background-color: #00A54E;
  border-radius: 30px;
  padding: 8px 20px;
}

.badge-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #fff;
}

.emissions-illustration {
  flex-shrink: 0;
  margin-left: 2rem;
}

.tree-img {
  width: 150px;
  height: auto;
  object-fit: contain;
}

/* Impact Metrics Cards */
.impact-metrics-cards {
  display: flex;
  flex-direction: column;
}

.impact-metric-card {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.impact-metric-card.trees-card {
  background-color: #004922;
}

.impact-metric-card.homes-card {
  background-color: #00642F;
}

.impact-metric-card.cars-card {
  background-color: #00823D;
}

.metric-icon-wrapper {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.metric-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.metric-details {
  flex: 1;
}

.metric-number {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 34px;
  color: #fff;
  margin: 0 0 0.25rem 0;
}

.metric-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  margin: 0;
}

.metric-subtext {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}

/* 5-Year Chart Section */
.section-title-carbon {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 34px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 2rem;
}

.carbon-chart-wrapper {
  position: relative;
}

.carbon-chart-wrapper canvas {
  width: 100% !important;
  height: 450px !important;
}

.chart-summary-text {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.summary-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 21px;
  line-height: 20px;
  color: #000;
  margin: 0;
}

.summary-highlight {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 21px;
  color: #00A54E;
}

/* Sustainability Certifications */
.certifications-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.certification-card {
  background: #fff;
  border: 1px solid #00A54E;
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certification-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 165, 78, 0.15);
}

.certification-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cert-icon-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.certification-content {
  flex: 1;
}

.certification-title {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 34px;
  color: #00A54E;
  margin: 0 0 0.75rem 0;
}

.certification-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #4F4F4F;
  margin: 0;
}

/* Action Button */
/* View Financial button extends tco-button */
.btn-view-financial {
  font-size: 20px;
  padding: 15px 40px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .carbon-impact-container {
    grid-template-columns: 1fr;
  }

  .certifications-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .carbon-main-title {
    font-size: 26px;
    line-height: 30px;
  }

  .emissions-content {
    flex-direction: column;
    text-align: center;
  }

  .emissions-illustration {
    margin-left: 0;
    margin-top: 1.5rem;
  }

  .emissions-text {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .carbon-main-title {
    font-size: 24px;
    line-height: 28px;
  }

  .carbon-subtitle {
    font-size: 16px;
  }

  .daily-emissions-card {
    padding: 1.5rem;
  }

  .emissions-value {
    font-size: 40px;
  }

  .impact-metric-card {
    padding: 1.25rem 1.5rem;
  }

  .metric-number {
    font-size: 26px;
  }

  .metric-text {
    font-size: 16px;
  }

  .section-title-carbon {
    font-size: 20px;
  }

  .carbon-chart-wrapper {
    padding: 1.5rem;
  }

  .carbon-chart-wrapper canvas {
    height: 350px !important;
  }

  .summary-text {
    font-size: 18px;
  }

  .certification-card {
    padding: 1.5rem;
  }

  .certification-title {
    font-size: 20px;
  }

  .certification-text {
    font-size: 14px;
    line-height: 18px;
  }
}

@media (max-width: 576px) {
  .carbon-main-title {
    font-size: 22px;
    line-height: 26px;
  }

  .emissions-value {
    font-size: 36px;
  }

  .tree-img {
    width: 120px;
  }

  .metric-icon-wrapper {
    width: 50px;
    height: 50px;
  }

  .metric-icon {
    width: 40px;
    height: 40px;
  }

  .carbon-chart-wrapper canvas {
    height: 300px !important;
  }

  .summary-text {
    font-size: 16px;
    line-height: 24px;
  }
}

/* ========================================
   STEP 6 - DETAILED FINANCIAL ANALYSIS STYLES
   ======================================== */

/* Header Section */
.financial-header-section {
  margin-bottom: 2.5rem;
}

.financial-main-title {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 34px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 0.5rem;
}

.financial-subtitle {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #000;
  margin: 0;
}

/* Section Titles */
.financial-section-title {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 1.5rem;
}

/* Financial Tables */
.financial-table-wrapper {
  margin-bottom: 1.5rem;
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.financial-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-family: 'Roboto', sans-serif;
}

/* Table Headers */
.financial-table thead {
  background-color: #005A64;
}

.financial-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.table-header-left {
  text-align: left;
  width: 30%;
}

.table-header-ev {
  background-color: #004922 !important;
  text-align: center;
  width: 23%;
}

.table-header-competitor {
  text-align: center;
  width: 23%;
}

/* Table Body */
.financial-table tbody tr {
  border-bottom: 1px solid #e5e5e5;
}

.financial-table tbody tr:last-child {
  border-bottom: none;
}

.financial-table td {
  padding: 1rem 1.5rem;
  font-size: 16px;
  line-height: 24px;
}

/* Table Cells */
.table-cell-label {
  color: #333;
  font-weight: 400;
  text-align: left;
}

.table-cell-label-bold {
  color: #000;
  font-weight: 700;
  text-align: left;
}

.table-cell-ev {
  background-color: #00A54E;
  color: #fff;
  font-weight: 500;
  text-align: center;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
}

.table-cell-ev-bold {
  background-color: #00A651;
  color: #fff;
  font-weight: 700;
  text-align: center;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
}

.table-cell-competitor {
  background-color: #fff;
  color: #000;
  font-weight: 400;
  text-align: center;
  border-left: 1px solid #e5e5e5;
}

.table-cell-competitor-bold {
  color: #000;
  font-weight: 700;
  text-align: center;
  border-left: 1px solid #e5e5e5;
}

.negative-value {
  color: #D32F2F !important;
}

/* Total Row */
.table-row-total {
  background-color: #f5f5f5;
}

.table-row-total td {
  border-top: 2px solid #e5e5e5;
}

/* Table Section Headers */
.table-section-header {
  background-color: #f8f9fa;
}

.table-section-title {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #005A64;
  padding: 1rem 1.5rem;
  text-align: left;
  border-top: 2px solid #005A64;
  border-bottom: 1px solid #e5e5e5;
}

.table-row-highlight {
  background-color: #E8F5E9;
}

.table-row-highlight td {
  border-top: 2px solid #00A651;
  border-bottom: 2px solid #00A651;
}

/* Financial Badges */
.financial-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.financial-badges-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.success-badge {
  background-color: #E8F5E9;
  border: 1px solid #00A651;
}

.warning-badge {
  background-color: #FFF3E0;
  border: 1px solid #F48120;
}

.key-benefit-badge {
  background-color: #E8F5E9;
  border: 1px solid #00A651;
  padding: 1.5rem;
}

.key-benefit-box {
  background-color: #E6F6ED;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  border: 1px solid #00A54E;
}

.key-benefit-box .badge-highlight strong {
  font-weight: 700;
}

.badge-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.badge-text {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  margin: 0;
}

.badge-text strong {
  font-weight: 700;
}

.badge-highlight {
  color: #00A651;
  font-weight: 700;
}

.badge-highlight-warning {
  color: #FF4F4F;
  font-weight: 700;
}

/* Depreciation Cards */
.depreciation-cards-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.depreciation-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.ev-depreciation-card {
  background: linear-gradient(135deg, #E8F5E9 0%, #F1F8F4 100%);
  border: 2px solid #00A651;
}

.diesel-depreciation-card {
  background: #fff;
  border: 2px solid #e5e5e5;
}

.depreciation-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.depreciation-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.depreciation-icon-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.depreciation-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #000;
  margin: 0;
}

.ev-depreciation-card .depreciation-title {
  color: #00A651;
}

.diesel-depreciation-card .depreciation-title {
  color: #666;
}

.depreciation-content {
  margin-bottom: 1.5rem;
}

.depreciation-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}

.depreciation-row:last-child {
  border-bottom: none;
}

.highlight-row {
  background-color: rgba(0, 166, 81, 0.05);
  padding: 0.75rem 1rem;
  margin: 0.5rem -1rem -0.5rem -1rem;
  border-radius: 6px;
}

.depreciation-label {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #666;
}

.depreciation-label-bold {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  color: #000;
}

.depreciation-value {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #000;
}

.depreciation-value-highlight {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  color: #00A651;
}

.depreciation-illustration {
  text-align: center;
  margin-top: 1.5rem;
  position: relative;
}

.truck-illustration {
  width: 75%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
}

/* Download Button */
/* Download Report button extends tco-button */
.btn-download-report {
  font-size: 20px;
  padding: 15px 40px;
  box-shadow: 0 4px 12px rgba(0, 166, 81, 0.2);
}

.btn-download-report:hover {
  box-shadow: 0 6px 16px rgba(0, 166, 81, 0.3);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .depreciation-cards-container {
    grid-template-columns: 1fr;
  }

  .financial-badges-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .financial-main-title {
    font-size: 26px;
    line-height: 30px;
  }

  .financial-table th,
  .financial-table td {
    padding: 0.75rem 1rem;
    font-size: 14px;
  }

  .table-header-left {
    width: 35%;
  }

  .table-header-ev,
  .table-header-competitor {
    width: 21%;
  }
}

@media (max-width: 768px) {
  .financial-main-title {
    font-size: 24px;
    line-height: 28px;
  }

  .financial-subtitle {
    font-size: 16px;
  }

  .financial-section-title {
    font-size: 16px;
  }

  /* Make tables scrollable on mobile */
  .financial-table-wrapper {
    overflow-x: scroll;
  }

  .financial-table {
    min-width: 600px;
  }

  .financial-table th,
  .financial-table td {
    padding: 0.5rem 0.75rem;
    font-size: 13px;
  }

  .depreciation-card {
    padding: 1.5rem;
  }

  .depreciation-title {
    font-size: 16px;
  }

  .badge-text {
    font-size: 14px;
  }

  .truck-illustration {
    max-width: 220px;
  }
}

@media (max-width: 576px) {
  .financial-main-title {
    font-size: 22px;
    line-height: 26px;
  }

  .financial-header-section {
    margin-bottom: 2rem;
  }

  .financial-table th,
  .financial-table td {
    padding: 0.5rem;
    font-size: 12px;
  }

  .depreciation-card {
    padding: 1.25rem;
  }

  .depreciation-icon {
    width: 32px;
    height: 32px;
  }

  .depreciation-icon-img {
    width: 20px;
    height: 20px;
  }

  .depreciation-title {
    font-size: 15px;
  }

  .depreciation-label,
  .depreciation-value {
    font-size: 13px;
  }

  .depreciation-value-highlight {
    font-size: 20px;
  }

  .financial-badge {
    padding: 1rem;
  }

  .badge-text {
    font-size: 13px;
    line-height: 20px;
  }

  .btn-download-report {
    font-size: 16px;
    padding: 12px 30px;
  }

  .truck-illustration {
    max-width: 180px;
  }
}

/* Print Styles */
@media print {
  .financial-table {
    page-break-inside: avoid;
  }

  .depreciation-cards-container {
    page-break-inside: avoid;
  }

  .btn-download-report {
    display: none;
  }
}

.compare-now-button {
  width: 130px;
}

.btn-change-battery,
.btn-reselect-propel-ev {
  background: transparent;
  color: #00A651;
  border: 1px solid #00A651;
  border-radius: 4px;
  padding: 6px 16px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-change-battery:hover,
.btn-reselect-propel-ev:hover {
  background-color: #00A651;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 166, 81, 0.2);
}

/* ===================================
   Sticky Configuration Button
   =================================== */
.btn-config-sticky {
  position: fixed;
  right: 0;
  top: 45%;
  transform: translateY(-50%);
  z-index: 1050;
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  min-height: 160px;
  min-width: 50px;
  background-color: #000;
}

.btn-config-sticky:hover {
  box-shadow: -2px 0 12px rgba(0, 0, 0, 0.25);
  right: 2px;
}

.btn-config-sticky .config-icon {
  font-size: 24px;
  line-height: 1;
  display: block;
  background-color: #005A64;
  display: block;
  padding: 10px;
  width: 100%;
}

.btn-config-sticky .config-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 3px;
  line-height: 1.2;
  display: block;
}

/* ===================================
   Configuration Offcanvas - 80% Width
   =================================== */
.offcanvas-end {
  width: 90% !important;
  max-width: 90vw;
}

@media (max-width: 768px) {
  .offcanvas-end {
    width: 100% !important;
    max-width: 100vw;
  }

  .btn-config-sticky {
    padding: 12px 20px;
    font-size: 12px;
  }

  .btn-config-sticky .config-text {
    display: none;
  }

  .btn-config-sticky {
    min-height: unset !important;
  }
}


.executive-summary-card {
  padding: 20px;
  background-color: #013319;
}

.cost-comparison-top-row {
  background-color: #007438;
  border: none;
}

.savings-row {
  background-color: #005020;
  border: none;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.benefits-row {
  background-color: #013319;
}

.step0-truck-link {
  background-color: #0c1e39;
  display: block;
  padding: 20px;
  border-radius: 25px;
  border: 1px solid #fff;
}

.ev-landing-page {
  background: url('/custom/images/hero-bg-3.png') no-repeat center center;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.3);
  /* increase 0.3 to 0.5 for darker */
  background-blend-mode: darken;
}

.step0-logo-img {
  width: 200px;
  height: auto;
}

.step0-app-name-img {
  width: 300px;
  height: auto;
  margin-top: 40px;
}

.step0-hero-text-img {
  width: 45%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@keyframes flipOut {
  100% {
    transform: rotateY(90deg);
    /* Change negative to positive */
    transform-origin: right center;
    /* Change left to right */
  }
}

.battery-options-wrapper {
  margin-top: 1rem;
}

.battery-options-wrapper hr {
  margin: 0.75rem 0;
  opacity: 0.2;
}

.battery-option-card.small-card {
  padding: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.battery-option-card.small-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.battery-option-card.small-card.selected {
  background-color: #00A651;
  color: #ffffff;
}

.battery-option-card.small-card.selected span {
  color: #ffffff;
}

.vehicle-selection-card {
  flex-direction: column;
}

.step0-truck-img {
  width: 50%;
  height: auto;
  object-fit: contain;
}

.step0-container {
  align-items: center;
  padding: 0 !important;
}

@media (max-width: 768px) {
  .main-container {
    display: block;
  }

  aside.sidebar {
    display: block;
    height: auto;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    background-color: #F1F7F4;
    top: 50px;
  }

  .sidebar-wrapper {
    display: flex;
    justify-content: center;
  }

  .page-header {
    max-height: unset;
    min-height: unset;
    height: auto !important;
    margin-bottom: 0 !important;
  }

  .selection-card .card-text {
    font-size: 14px;
  }

  .offcanvas-body .tco-button {
    font-size: 10px;
    line-height: 12px;
  }

  .cost-comparison-top-row {
    flex-direction: column;
  }

  .cost-column {
    width: 100%;
  }

  .cost-column-divider {
    height: 2px;
    width: 100%;
    margin: 10px 0;
  }

  .savings-row {
    flex-direction: column;
  }

  .savings-column {
    width: 100%;
  }

  .savings-column-divider {
    height: 2px;
    width: 100%;
    margin: 10px 0;
  }

  .benefits-row {
    flex-direction: column;
    padding: 0px;
  }

  .benefit-card {
    padding-top: 20px;
    padding-bottom: 20px;
    border-right: none !important;
    border-bottom: 1px solid #ffffff3d;
  }

  .benefit-card:last-child {
    border-bottom: none !important;
  }
}