/* ============================================
   EV Solutions 2 - Figma-accurate
   ============================================ */

:root {
  --ev2-gradient: linear-gradient(90deg, #69eefd 0%, #efc052 54.33%, #f19231 100%);
  --ev2-navy: #0d192e;
  --ev2-orange: #f19231;
  --ev2-cyan: #69eefd;
}

/* ===== HERO ===== */
.ev2-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  max-height: 1080px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ev2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ev2-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ev2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.3) 0%, rgba(37,74,95,0.5) 100%);
}

.ev2-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1208px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.ev2-hero-content h1 {
  text-transform: uppercase;
}

.ev2-hero-small {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 40px);
  line-height: 1.17;
  background: var(--ev2-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ev2-hero-big {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 60px);
  line-height: 1.17;
  background: var(--ev2-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ev2-hero-content p {
  font-size: clamp(1rem, 1.8vw, 30px);
  line-height: 1.38;
  color: #fff;
  max-width: 1180px;
}

.ev2-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  border: 2px solid var(--ev2-cyan);
  border-radius: 73px;
  padding: 5px 20px 5px 5px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 10px;
}

.ev2-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(105, 238, 253, 0.3);
}

.ev2-hero-cta-icon {
  width: 47px;
  height: 47px;
  border-radius: 50%;
}

.ev2-hero-cta span {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #000;
}

/* ===== SHARED ===== */
.ev2-label {
  display: block;
  font-weight: 500;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--ev2-orange);
}

.ev2-label--light {
  color: var(--ev2-orange);
}

.ev2-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 60px);
  line-height: 1.17;
  color: rgba(13, 25, 46, 0.8);
}

/* ===== THE LOGIC ===== */
.ev2-logic {
  padding: 114px 0;
}

.ev2-logic-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.ev2-logic-left .ev2-heading {
  margin-bottom: 30px;
}

.ev2-logic-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ev2-navy);
  margin-bottom: 16px;
}

.ev2-logic-right {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: visible;
}

.ev2-logic-illustration {
  width: 140%;
  max-width: 850px;
}

.ev2-logic-illustration svg {
  width: 100%;
  height: auto;
}

.ev2-logic-alert {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #edfff5;
  border: 2px solid #22c55e;
  border-radius: 19px;
  padding: 20px 30px;
  margin-top: 20px;
}

.ev2-logic-alert-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: #22c55e;
  flex-shrink: 0;
}

.ev2-logic-alert-text {
  font-weight: 500;
  font-size: 20px;
  color: #22c55e;
  line-height: 1.3;
}

/* ===== SMART FEATURES ===== */
.ev2-features {
  background: var(--ev2-navy);
  padding: 91px 0 0;
}

.ev2-features-header {
  text-align: center;
  margin-bottom: 0;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}

.ev2-features-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 60px);
  line-height: 1;
  color: #fff;
  margin-bottom: 11px;
  white-space: nowrap;
}

.ev2-features-sub {
  font-size: clamp(1rem, 1.5vw, 26px);
  color: #fff;
  max-width: 922px;
  margin: 0 auto;
}

/* Cards */
.ev2-features-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-top: 40px;
}

.ev2-features-card {
  position: relative;
  height: 875px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 100px 24px 24px;
}

.ev2-features-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.ev2-features-card-body {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.ev2-features-card-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.2rem, 1.8vw, 30px);
  background: var(--ev2-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ev2-features-card-line {
  width: 115px;
  height: 2px;
  background: rgba(255,255,255,0.3);
}

.ev2-features-card-body p {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  max-width: 393px;
}

/* ===== THE STANDARD ===== */
.ev2-standard {
  padding: 100px 0 80px;
}

.ev2-standard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.ev2-standard-img {
  width: 100%;
  border-radius: 40px;
  box-shadow: 4px 4px 50px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.ev2-standard-content .ev2-heading {
  margin-bottom: 32px;
}

.ev2-standard-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ev2-navy);
  margin-bottom: 12px;
}

.ev2-standard-stats {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 32px;
}

.ev2-stat {
  text-align: center;
}

.ev2-stat-value {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 70px);
  line-height: 0.97;
  background: var(--ev2-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ev2-stat-label {
  display: block;
  font-weight: 500;
  font-size: clamp(12px, 1.2vw, 24px);
  text-transform: uppercase;
  color: var(--ev2-navy);
  margin-top: 12px;
}

.ev2-stat-divider {
  width: 2px;
  height: 128px;
  background: rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

/* ===== CTA ===== */
.ev2-cta {
  background: var(--ev2-navy);
  padding: 100px 0;
  text-align: center;
}

.ev2-cta-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 60px);
  line-height: 1.04;
  color: #fff;
  max-width: 1320px;
  margin: 0 auto 8px;
  white-space: nowrap;
}

.ev2-cta-sub {
  font-size: clamp(1rem, 1.5vw, 26px);
  color: #fff;
  margin-bottom: 48px;
}

.ev2-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 400px;
  height: 82px;
  padding: 0 60px;
  background: var(--ev2-gradient);
  border-radius: 73px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #000;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ev2-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(241, 146, 49, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .ev2-features-card {
    height: 700px;
  }
}

@media (max-width: 1024px) {
  .ev2-hero-content {
    padding: 0 40px;
  }

  .ev2-logic-grid {
    gap: 40px;
  }

  .ev2-features-cards {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 40px auto 0;
  }

  .ev2-features-card {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .ev2-hero {
    height: auto;
    min-height: 80vh;
    padding: 140px 0 80px;
  }

  .ev2-logic {
    padding: 60px 0;
  }

  .ev2-logic-grid {
    grid-template-columns: 1fr;
  }

  .ev2-logic-right {
    order: -1;
  }

  .ev2-standard-grid {
    grid-template-columns: 1fr;
  }

  .ev2-features-card {
    height: 450px;
  }

  .ev2-standard-stats {
    flex-direction: column;
    gap: 24px;
  }

  .ev2-stat-divider {
    width: 128px;
    height: 2px;
  }

  .ev2-cta-btn {
    min-width: auto;
    width: 100%;
    max-width: 400px;
    height: 64px;
    font-size: 18px;
    padding: 0 32px;
  }

  .ev2-logic-alert {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .ev2-hero-small {
    font-size: 1.2rem;
  }

  .ev2-hero-big {
    font-size: 1.6rem;
  }

  .ev2-hero-content p {
    font-size: 1rem;
  }

  .ev2-label {
    font-size: 16px;
  }

  .ev2-features-heading {
    white-space: normal;
  }

  .ev2-cta-heading {
    white-space: normal;
  }
}
