/* ============================================
   STANDOUT SECTION STYLES
   ============================================ */

/* ============================================
   COLOR CUSTOMIZATION
   Change these colors to customize the standout section
   ============================================ */
:root {
  --standout-bg: #ffffff;                 /* Section background - white */
  --standout-title-color: #0b347a;        /* Section title color - dark blue */
  --standout-subtitle-color: #4a5568;     /* Section subtitle color - gray */
  --feature-icon-bg: #e6f3ff;             /* Feature icon background - light blue */
  --feature-icon-color: #006efe;          /* Feature icon color - bright blue */
  --feature-title-color: #0b347a;         /* Feature title color - dark blue */
  --feature-description-color: #4a5568;   /* Feature description color - gray */
  --image-overlay-color: rgba(0, 110, 254, 0.08); /* Image overlay - blue tint */
}

/* ============================================
   STANDOUT CONTAINER
   ============================================ */
.standout-section {
  position: relative;
  width: 100%;
  padding: 100px 40px;
  background-color: var(--standout-bg);
}

.standout-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.standout-header {
  text-align: center;
  margin-bottom: 70px;
  animation: fadeInUp 600ms ease-out;
}

.standout-title {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--standout-title-color);
  margin: 0 0 20px 0;
  white-space: normal;
}

.standout-subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--standout-subtitle-color);
  margin: 0;
  white-space: normal;
}

/* ============================================
   CONTENT GRID
   ============================================ */
.standout-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: start;
}

/* ============================================
   FEATURES LIST
   ============================================ */
.standout-features {
  animation: fadeInUp 600ms ease-out 200ms backwards;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 28px;
}

/* ============================================
   FEATURE ITEM - MODERN COMPACT DESIGN
   ============================================ */
.feature-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 6px 4px;
  border-radius: 0;
  background-color: transparent;
  border: none;
  transition: color 220ms ease;
  animation: fadeInUp 600ms ease-out backwards;
  animation-delay: calc(var(--feature-index, 0) * 30ms);
}

.feature-item:nth-child(1) { --feature-index: 1; }
.feature-item:nth-child(2) { --feature-index: 2; }
.feature-item:nth-child(3) { --feature-index: 3; }
.feature-item:nth-child(4) { --feature-index: 4; }
.feature-item:nth-child(5) { --feature-index: 5; }
.feature-item:nth-child(6) { --feature-index: 6; }
.feature-item:nth-child(7) { --feature-index: 7; }
.feature-item:nth-child(8) { --feature-index: 8; }
.feature-item:nth-child(9) { --feature-index: 9; }
.feature-item:nth-child(10) { --feature-index: 10; }
.feature-item:nth-child(11) { --feature-index: 11; }
.feature-item:nth-child(12) { --feature-index: 12; }
.feature-item:nth-child(13) { --feature-index: 13; }
.feature-item:nth-child(14) { --feature-index: 14; }

.feature-item:hover {
  transform: none;
}

/* Feature Icon */
.feature-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 110, 254, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--feature-icon-color);
  transition: transform 180ms ease;
}

.feature-item:hover .feature-icon {
  transform: translateX(2px);
}

/* Feature Title */
.feature-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  color: #0c1f3f;
  margin: 0;
  transition: color 200ms ease-out;
}

.feature-item:hover .feature-title {
  color: var(--feature-icon-color);
}

/* ============================================
   IMAGE SECTION - VERTICAL IMAGE
   ============================================ */
.standout-image-wrapper {
  position: relative;
  top: 0;
  animation: fadeInUp 600ms ease-out 300ms backwards;
}

.standout-image-container {
  position: relative;
  width: 100%;
  height: 540px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
  border: none;
}

.standout-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  display: none;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Large Tablet */
@media (max-width: 1399px) {
  .standout-content {
    grid-template-columns: 1fr 400px;
    gap: 60px;
  }

  .standout-image-container {
    height: 600px;
  }
}

/* Tablet */
@media (max-width: 1199px) {
  .standout-section {
    padding: 80px 32px;
  }

  .standout-title {
    font-size: 40px;
  }

  .standout-subtitle {
    font-size: 18px;
  }

  .standout-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-grid {
    gap: 16px;
    column-gap: 32px;
  }

  .standout-image-container {
    height: 440px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .standout-section {
    padding: 50px 20px;
  }

  .standout-header {
    margin-bottom: 35px;
  }

  .standout-title {
    font-size: 26px;
    margin-bottom: 12px;
    white-space: normal;
  }

  .standout-subtitle {
    font-size: 14px;
    white-space: normal;
  }

  .standout-content {
    gap: 32px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .feature-item {
    padding: 8px 6px;
    gap: 10px;
    flex-direction: row;
    align-items: center;
  }

  .feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
  }

  .feature-icon svg {
    width: 14px;
    height: 14px;
  }

  .feature-title {
    font-size: 13px;
    line-height: 1.35;
  }

  /* Hide image on mobile to save space */
  .standout-image-wrapper {
    display: none;
  }
}

/* ============================================
   REDUCED MOTION SUPPORT
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .standout-header,
  .standout-features,
  .feature-item,
  .standout-image-wrapper {
    animation: none;
  }

  .feature-item:hover {
    transform: none;
  }

  .feature-item:hover .feature-icon {
    transform: none;
  }

  .standout-image-container:hover .standout-image {
    transform: none;
  }
}
