.link-section .ul-section-sub-title {
  display: block !important;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  background-color: #fff;
  border-collapse: collapse;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.table thead {
  background-color: #f44336;
  color: #fff;
  text-align: left;
}

.table thead th {
  padding: 12px 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.table tbody tr {
  transition: background-color 0.2s ease-in-out;
}

.table tbody tr:hover {
  background-color: #f9f9f9;
}

.table td,
.table th {
  padding: 12px 16px;
  border: 1px solid #ddd;
  vertical-align: middle;
}

.table tbody td:first-child {
  font-weight: 500;
  color: #333;
}

.chapter-box {
  background: #fff;
  padding: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border: 1px solid #ddd;
  max-width: 600px;
  line-height: 1.6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin: 20px auto;
  border-radius: 8px;
  background-image: url('your-background-image.png');
  /* Optional: match the patterned background */
  background-size: contain;
}

.chapter-box b {
  font-weight: bold;
}

.chapter-box .label {
  color: #f44336;
  font-weight: bold;
}

.chapter-box .divider {
  border-top: 1px dashed #888;
  margin: 12px 0;
}


/* ===================== TRUSTED BY SECTION ===================== */
.trusted-section {
  background-color: #0d1b2e;
  padding: 30px 0 36px;
  overflow: hidden;
}

.trusted-label {
  text-align: center;
  color: #8a9baf;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-family: 'Segoe UI', sans-serif;
}

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee-scroll 20s linear infinite;
  align-items: center;
}

.marquee-track span {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Segoe UI', sans-serif;
  letter-spacing: 1px;
  white-space: nowrap;
  text-transform: uppercase;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover (optional) */
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}


/* ===================== BENEFITS SECTION ===================== */
.benefits-section {
  background-color: #ffffff;
  padding: 80px 0 90px;
}

.benefits-title {
  font-size: 42px;
  font-weight: 800;
  color: #0d1b2e;
  font-family: 'Segoe UI', sans-serif;
  margin-bottom: 12px;
}

.benefits-subtitle {
  font-size: 16px;
  color: #6b7a8d;
  font-family: 'Segoe UI', sans-serif;
  margin-bottom: 0;
}

/* Card */
.benefit-card {
  background-color: #f5f6f8;
  border-radius: 16px;
  padding: 36px 32px 40px;
  height: 100%;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.benefit-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

/* Icon circle */
.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 28px;
}

/* Icon color variants */
.icon-teal {
  background-color: #d4f4ee;
  color: #1abc9c;
}

.icon-orange {
  background-color: #fdebd0;
  color: #e67e22;
}

.icon-red {
  background-color: #fde8e4;
  color: #e74c3c;
}

.icon-purple {
  background-color: #ebe8fd;
  color: #8e44ad;
}

.icon-cyan {
  background-color: #d6f4f7;
  color: #17a2b8;
}

.icon-green {
  background-color: #d9f5ec;
  color: #27ae60;
}

/* Card text */
.benefit-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #0d1b2e;
  font-family: 'Segoe UI', sans-serif;
  margin-bottom: 12px;
}

.benefit-card-text {
  font-size: 14px;
  color: #6b7a8d;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ===================== PLATFORM SECTION ===================== */
.platform-section {
  background-color: #f5f6f8;
  padding: 80px 0 90px;
}

.platform-title {
  font-size: 40px;
  font-weight: 800;
  color: #0d1b2e;
  font-family: 'Segoe UI', sans-serif;
  margin-bottom: 12px;
}

.platform-subtitle {
  font-size: 16px;
  color: #6b7a8d;
  font-family: 'Segoe UI', sans-serif;
  margin-bottom: 0;
}

/* Card */
.platform-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 36px 32px 40px;
  height: 100%;
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  border: 1px solid #eef0f3;
}

.platform-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.07);
  transform: translateY(-4px);
}

/* Icon */
.platform-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.icon-pink {
  background-color: #fde8f0;
  color: #e91e8c;
}

.icon-purple {
  background-color: #ede8fd;
  color: #7c3aed;
}

.icon-orange {
  background-color: #fdebd0;
  color: #e67e22;
}

.icon-blue {
  background-color: #ddeeff;
  color: #2563eb;
}

.icon-amber {
  background-color: #fef3cd;
  color: #d97706;
}

.icon-violet {
  background-color: #ede8fd;
  color: #8b5cf6;
}

/* Coming badge */
.coming-badge {
  position: absolute;
  top: 28px;
  right: 24px;
  background-color: #e67e22;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  font-family: 'Segoe UI', sans-serif;
}

/* Titles */
.platform-card-title {
  font-size: 22px;
  font-weight: 800;
  color: #0d1b2e;
  font-family: 'Segoe UI', sans-serif;
  margin-bottom: 6px;
}

.platform-card-tagline {
  font-size: 13px;
  font-weight: 600;
  color: #e67e22;
  font-family: 'Segoe UI', sans-serif;
  margin-bottom: 14px;
  line-height: 1.5;
}

.platform-card-text {
  font-size: 14px;
  color: #6b7a8d;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* List */
.platform-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.platform-list li {
  font-size: 13.5px;
  color: #4a5568;
  font-family: 'Segoe UI', sans-serif;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.platform-list li i {
  color: #e67e22;
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Learn More link */
.platform-link {
  font-size: 14px;
  font-weight: 600;
  color: #e67e22;
  text-decoration: none;
  font-family: 'Segoe UI', sans-serif;
  transition: color 0.2s ease;
}

.platform-link:hover {
  color: #c0620f;
}


/* Section */
.occ-section {
  background-color: #f0f2f5;
  padding: 80px 0 90px;
  font-family: 'Segoe UI', sans-serif;
}

.occ-title {
  font-size: 40px;
  font-weight: 800;
  color: #0d1b2e;
  margin-bottom: 12px;
}

.occ-subtitle {
  font-size: 16px;
  color: #6b7a8d;
}

/* ---- TAB BUTTONS ---- */
.occ-tabs-wrapper {
  display: flex;
  justify-content: center;
}

.occ-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.occ-tab {
  background: #ffffff;
  border: 1.5px solid #e2e6ea;
  border-radius: 50px;
  padding: 10px 22px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.25s ease;
  min-width: 160px;
}

.occ-tab:hover {
  border-color: #e67e22;
  color: #e67e22;
}

.occ-tab.active {
  background: #e67e22;
  border-color: #e67e22;
  color: #ffffff;
}

.tab-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.75;
}

.tab-title {
  font-size: 14px;
  font-weight: 700;
}

.occ-tab.active .tab-label,
.occ-tab.active .tab-title {
  color: #ffffff;
  opacity: 1;
}

/* ---- TAB PANES ---- */
.occ-pane {
  display: none;
}

.occ-pane.active {
  display: block;
}

/* ---- DASHBOARD CARD ---- */
.occ-dashboard-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid #eef0f3;
  height: 100%;
}

/* Dashboard header */
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.dash-title {
  font-size: 16px;
  font-weight: 700;
  color: #0d1b2e;
  margin: 0;
}

.dash-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.module-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.module-badge.orange {
  background: #fff0e5;
  color: #e67e22;
  border: 1px solid #e67e22;
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #27ae60;
  background: #eafaf1;
  padding: 4px 10px;
  border-radius: 20px;
}

.live-dot {
  width: 7px;
  height: 7px;
  background: #27ae60;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.time-badge {
  font-size: 12px;
  color: #6b7a8d;
  background: #f5f6f8;
  padding: 4px 10px;
  border-radius: 20px;
}

.dash-btn {
  font-size: 12px;
  color: #0d1b2e;
  background: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 4px 12px;
  cursor: pointer;
}

.dash-btn:hover {
  background: #f5f6f8;
}

/* ---- STAT BOXES ---- */
.stat-box {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #eef0f3;
  position: relative;
}

.stat-box.warning {
  border-color: #fdebd0;
  background: #fffaf5;
}

.stat-label {
  font-size: 10px;
  font-weight: 700;
  color: #8a9baf;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.stat-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 14px;
}

.stat-icon.teal {
  color: #1abc9c;
}

.stat-icon.amber {
  color: #e67e22;
}

.stat-value {
  font-size: 20px;
  font-weight: 800;
  color: #0d1b2e;
  margin: 0;
}

/* ---- ALERT BOX ---- */
.alert-box {
  background: #fffaf5;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #fdebd0;
  height: 100%;
}

.alert-box.info {
  background: #f0faff;
  border-color: #bee3f8;
}

.alert-box.alert-red {
  background: #fff5f5;
  border-color: #fde8e4;
}

.alert-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 8px;
}

.warning-tag {
  background: #fdebd0;
  color: #e67e22;
}

.info-tag {
  background: #bee3f8;
  color: #2b6cb0;
}

.red-tag {
  background: #fde8e4;
  color: #e74c3c;
}

.alert-title {
  font-size: 13px;
  font-weight: 700;
  color: #0d1b2e;
  margin-bottom: 4px;
}

.alert-meta {
  font-size: 12px;
  color: #6b7a8d;
  margin-bottom: 2px;
}

.alert-meta.italic {
  font-style: italic;
}

.alert-action {
  font-size: 12px;
  color: #0d1b2e;
  margin-top: 8px;
  margin-bottom: 0;
}

.action-chip {
  background: #e8f4fd;
  color: #2563eb;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
}

/* ---- RECOMMENDATIONS BOX ---- */
.rec-box {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #eef0f3;
  height: 100%;
}

.rec-label {
  font-size: 10px;
  font-weight: 700;
  color: #8a9baf;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.rec-item {
  font-size: 12.5px;
  color: #4a5568;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.rec-item i {
  color: #e67e22;
  font-size: 11px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ---- MAP PLACEHOLDER ---- */
.map-placeholder {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #eef0f3;
}

.map-placeholder.dark-map {
  background: #0d1b2e;
  border-color: #1e3a5f;
}

.map-title {
  font-size: 13px;
  font-weight: 700;
  color: #0d1b2e;
  margin-bottom: 2px;
}

.map-sub {
  font-size: 11px;
  color: #8a9baf;
  margin-bottom: 12px;
}

.light-text {
  color: #e0e8f0 !important;
}

/* Sensor Map */
.map-visual {
  background: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 10px;
}

.map-inner {
  position: relative;
  height: 140px;
  background: #f0f8f0;
  border: 1.5px dashed #27ae60;
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
}

.map-label-border {
  position: absolute;
  top: 6px;
  left: 8px;
  font-size: 9px;
  color: #27ae60;
  font-weight: 600;
}

.sensor {
  position: absolute;
  font-size: 9px;
  font-weight: 600;
  padding: 3px 6px;
  border-radius: 6px;
  line-height: 1.3;
}

.sensor.good {
  background: #d4f4ee;
  color: #1a7a5e;
}

.sensor.warn {
  background: #fdebd0;
  color: #c05000;
}

.s1 {
  top: 20px;
  left: 30px;
}

.s2 {
  top: 50px;
  left: 130px;
}

.s3 {
  top: 55px;
  left: 200px;
}

.s4 {
  top: 90px;
  left: 60px;
}

.s5 {
  top: 85px;
  right: 30px;
}

.sensor-status {
  display: block;
  font-size: 8px;
  margin-top: 1px;
}

.good-dot {
  color: #27ae60;
}

.warn-dot {
  color: #e67e22;
}

.forecast-bubble {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fffbf0;
  border: 1px solid #e67e22;
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 9px;
  color: #c05000;
  font-weight: 600;
  max-width: 130px;
}

/* Chart */
.map-chart {
  margin-top: 8px;
}

.chart-label {
  font-size: 11px;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 4px;
}

.trend-svg {
  width: 100%;
  height: 60px;
}

.forecast-tag-box {
  background: #fff8e6;
  border: 1px solid #e67e22;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 11px;
  color: #4a5568;
  margin-top: 6px;
}

.ftag-title {
  font-weight: 700;
  color: #c05000;
  margin-bottom: 4px;
  font-size: 11px;
}

.conf {
  color: #27ae60;
  font-weight: 600;
}

/* Satellite image placeholder */
.satellite-img-placeholder {
  background: linear-gradient(135deg, #8b1a4a 0%, #c0392b 30%, #27ae60 60%, #1a5c2e 100%);
  border-radius: 10px;
  height: 200px;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}

.sat-overlay {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sat-note {
  font-size: 10px;
  opacity: 0.7;
}

/* Data flow diagram */
.data-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 0;
  flex-wrap: wrap;
}

.df-node {
  font-size: 11px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  text-align: center;
  min-width: 90px;
}

.blue-node {
  background: #dbeafe;
  color: #1d4ed8;
  border: 1px solid #93c5fd;
}

.purple-node {
  background: #ede9fe;
  color: #6d28d9;
  border: 1px solid #c4b5fd;
}

.pink-node {
  background: #fce7f3;
  color: #be185d;
  border: 1px solid #fbcfe8;
}

.mt-3 {
  margin-top: 10px;
}

.df-node small {
  display: block;
  font-weight: 400;
  opacity: 0.75;
  font-size: 10px;
  margin-top: 2px;
}

.df-center-node {
  background: #fff8f0;
  border: 2px solid #e67e22;
  border-radius: 10px;
  padding: 12px 16px;
  text-align: center;
  flex: 1;
  min-width: 160px;
}

.df-center-title {
  font-size: 13px;
  font-weight: 700;
  color: #c05000;
  margin-bottom: 2px;
}

.df-center-sub {
  font-size: 10px;
  color: #8a9baf;
  margin-bottom: 8px;
}

.df-layer {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
  margin-bottom: 4px;
  font-weight: 600;
}

.orange-layer {
  background: #fdebd0;
  color: #c05000;
}

.df-metrics {
  margin-top: 10px;
  font-size: 11px;
  color: #6b7a8d;
}

.orange-text {
  color: #e67e22;
}

/* Night map */
.nightmap-visual {
  background: #050e1a;
  border-radius: 10px;
  height: 160px;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

.lease-boundary-box {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  border: 2px dashed #27ae60;
  width: 70%;
  height: 120px;
  border-radius: 4px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
  font-size: 9px;
  color: #27ae60;
  font-weight: 700;
  letter-spacing: 1px;
}

.heat-spot {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-op {
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.illegal-camp {
  top: 25px;
  left: 18%;
}

.illegal-pit {
  top: 30px;
  right: 10%;
}

.heat-glow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  filter: blur(8px);
}

.heat-glow.yellow {
  background: radial-gradient(circle, #ffe066, #ff9900);
}

.heat-glow.small-glow {
  width: 20px;
  height: 20px;
}

.heat-glow.orange-glow {
  background: radial-gradient(circle, #ff9900, #cc4400);
}

.heat-glow.red-glow {
  background: radial-gradient(circle, #ff4444, #990000);
}

.spot-label {
  font-size: 9px;
  color: #c8d8e8;
  text-align: center;
  margin-top: 3px;
  font-weight: 600;
}

.spot-label small {
  color: #8a9baf;
  font-weight: 400;
  display: block;
}

.red-label {
  color: #ff8080 !important;
}

.nightmap-results {
  padding: 8px 10px;
  background: #0a1628;
  border-radius: 8px;
  font-size: 11px;
  color: #8a9baf;
}

.nightmap-results p {
  margin-bottom: 4px;
}

.precision-chip {
  display: inline-block;
  background: #c0392b;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  margin-top: 6px;
}

/* ---- RIGHT INFO CARD ---- */
.occ-info-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid #eef0f3;
  height: 100%;
}

.info-title {
  font-size: 24px;
  font-weight: 800;
  color: #0d1b2e;
  margin-bottom: 12px;
}

.info-text {
  font-size: 14px;
  color: #6b7a8d;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Workflow box */
.workflow-box {
  background: #f0faf8;
  border-left: 4px solid #1abc9c;
  border-radius: 0 12px 12px 0;
  padding: 16px;
}

.workflow-label {
  font-size: 11px;
  font-weight: 700;
  color: #1a7a5e;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.workflow-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.workflow-list li {
  font-size: 13px;
  color: #4a5568;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.workflow-list li i {
  font-size: 11px;
  margin-top: 2px;
  flex-shrink: 0;
  color: #8a9baf;
}

.wf-play i {
  color: #1abc9c !important;
}

.wf-done i {
  color: #1abc9c !important;
}

.wf-done {
  color: #1a7a5e !important;
  font-weight: 600;
}

/* ===================== LIFECYCLE SECTION ===================== */
.lifecycle-section {
  background-color: #faf8f5;
  padding: 80px 0 90px;
  font-family: 'Segoe UI', sans-serif;
}

.lifecycle-title {
  font-size: 40px;
  font-weight: 800;
  color: #e67e22;
  margin-bottom: 14px;
}

.lifecycle-subtitle {
  font-size: 16px;
  color: #6b7a8d;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===================== CARDS CONTAINER ===================== */
.lifecycle-cards {
  display: flex;
  align-items: stretch;
  gap: 12px;
  padding: 0 12px;
}

/* ===================== CARD ===================== */
.lc-card {
  /* Default: narrow flex */
  flex: 1;
  min-width: 0;
  border-radius: 20px;
  border: 1.5px solid #eef0f3;
  background: #ffffff;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s ease,
    border-color 0.3s ease;
  position: relative;
}

/* Hovered card gets bigger */
.lifecycle-cards:has(.lc-card:hover) .lc-card {
  flex: 0.6;
}

.lc-card:hover {
  flex: 2 !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
}

/* Per-card hover background + border */
.lc-card[data-card="exploration"]:hover {
  background: linear-gradient(120deg, #fff8f0, #fdebd0);
  border-color: #e67e22;
}

.lc-card[data-card="operations"]:hover {
  background: linear-gradient(120deg, #fff5f0, #fde0d0);
  border-color: #e74c3c;
}

.lc-card[data-card="environmental"]:hover {
  background: linear-gradient(120deg, #f2fbf6, #d4f4e4);
  border-color: #27ae60;
}

.lc-card[data-card="reclamation"]:hover {
  background: linear-gradient(120deg, #f0f7ff, #d4e8ff);
  border-color: #2980b9;
}

/* ===================== INNER: two-column flex ===================== */
.lc-inner {
  display: flex;
  height: 100%;
}

/* ===================== MAIN (left column) ===================== */
.lc-main {
  flex: 0 0 auto;
  width: 100%;
  /* takes full width when detail hidden */
  padding: 32px 22px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* When card hovered, shrink main to give space to detail */
.lc-card:hover .lc-main {
  width: 52%;
  border-right: 1px solid rgba(0, 0, 0, 0.07);
}

/* ===================== DETAIL (right column) ===================== */
.lc-detail {
  flex: 0 0 0;
  /* collapsed */
  width: 0;
  overflow: hidden;
  opacity: 0;
  padding: 32px 0 28px;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease 0.15s,
    padding 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Reveal detail on card hover */
.lc-card:hover .lc-detail {
  flex: 1;
  width: auto;
  opacity: 1;
  padding: 32px 22px 28px 20px;
}

/* ===================== ICON ===================== */
.lc-icon-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  border: 2px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.lc-card:hover .lc-icon-wrap {
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
}

.icon-orange {
  background: #fff3e0;
  color: #e67e22;
  border-color: #f0c080;
}

.icon-red {
  background: #fde8e4;
  color: #e74c3c;
  border-color: #f0a090;
}

.icon-green {
  background: #e8f8f0;
  color: #27ae60;
  border-color: #90d8b0;
}

.icon-blue {
  background: #e8f4ff;
  color: #2980b9;
  border-color: #90c8f0;
}

/* ===================== MAIN TEXT ===================== */
.lc-card-title {
  font-size: 20px;
  font-weight: 800;
  color: #0d1b2e;
  margin-bottom: 12px;
  line-height: 1.3;
  white-space: nowrap;
}

.lc-card-text {
  font-size: 13px;
  color: #6b7a8d;
  line-height: 1.65;
  margin-bottom: 16px;
  flex-grow: 1;
}

/* ===================== LIST ===================== */
.lc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.lc-list li {
  font-size: 12.5px;
  color: #4a5568;
  background: rgba(245, 246, 248, 0.9);
  border-radius: 20px;
  padding: 7px 14px;
  margin-bottom: 7px;
  transition: background 0.3s ease;
}

.lc-list li::before {
  content: "• ";
  font-weight: 700;
}

.lc-card[data-card="exploration"] .lc-list li::before {
  color: #e67e22;
}

.lc-card[data-card="operations"] .lc-list li::before {
  color: #e74c3c;
}

.lc-card[data-card="environmental"].lc-list li::before {
  color: #27ae60;
}

.lc-card[data-card="reclamation"] .lc-list li::before {
  color: #2980b9;
}

.lc-card:hover .lc-list li {
  background: rgba(255, 255, 255, 0.75);
}

/* ===================== DETAIL PANEL ===================== */
.lc-detail-title {
  font-size: 16px;
  font-weight: 700;
  color: #0d1b2e;
  margin-bottom: 18px;
  white-space: nowrap;
}

.lc-stats-row {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.lc-stat {
  flex: 1;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
}

.lc-stat-value {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #e67e22;
  line-height: 1.1;
  margin-bottom: 6px;
  white-space: nowrap;
}

.lc-stat-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  color: #8a9baf;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  line-height: 1.4;
}

.lc-detail-text {
  font-size: 13px;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
  white-space: normal;
}

/* ===================== PROGRESS BAR ===================== */
.lifecycle-progress {
  padding: 0 12px;
}

.progress-track {
  height: 4px;
  background: #eef0f3;
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, #e67e22 0%, #e74c3c 33%, #27ae60 66%, #2980b9 100%);
  border-radius: 2px;
}

/* ===================== CTA ===================== */
.lc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #e67e22;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 44px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  font-family: 'Segoe UI', sans-serif;
}

.lc-cta-btn:hover {
  background: #c0620f;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(230, 126, 34, 0.35);
}

.lc-cta-btn i {
  font-size: 12px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
  .lifecycle-cards {
    flex-direction: column;
  }

  .lifecycle-cards:has(.lc-card:hover) .lc-card {
    flex: 1;
  }

  .lc-card:hover {
    flex: 1 !important;
  }

  .lc-card:hover .lc-main {
    width: 50%;
    border-right: 1px solid rgba(0, 0, 0, 0.07);
  }

  .lc-card:hover .lc-detail {
    padding: 28px 16px 28px 16px;
  }

  .lc-card-title {
    white-space: normal;
  }

  .lc-detail-title {
    white-space: normal;
  }

  .lc-stat-value {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .lifecycle-title {
    font-size: 26px;
  }

  .lc-inner {
    flex-direction: column;
  }

  .lc-card:hover .lc-main {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  }

  .lc-card:hover .lc-detail {
    padding: 16px 20px 24px;
  }
}


/* ===================== SECTION ===================== */
.features-scroll-section {
  background: #0d1b2e;
  font-family: 'Segoe UI', sans-serif;
}

/* ===================== WRAPPER ===================== */
.fs-wrapper {
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

/* ===================== LEFT ===================== */
.fs-left {
  flex: 0 0 45%;
  max-width: 45%;
  padding: 40px 60px 40px 0;
}

/* ===================== RIGHT ===================== */
.fs-right {
  flex: 0 0 55%;
  max-width: 55%;
  /* Sticky container */
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  /* critical for sticky to work */
}

.fs-sticky-panel {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* ===================== IMAGE WRAP ===================== */
.fs-image-wrap {
  width: 100%;
  height: 300px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  background: #0a1628;
}

/* ===================== EACH SLIDE ===================== */
/* All slides stacked, hidden by default */
.fs-img-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}

/* Only the active slide is visible */
.fs-img-slide.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.fs-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

/* Gradient overlay label */
.fs-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(13, 27, 46, 0.92) 0%, transparent 100%);
  padding: 50px 22px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 0 0 20px 20px;
}

.fs-img-badge {
  background: #e67e22;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
  flex-shrink: 0;
}

/* ===================== DOTS ===================== */
.fs-dots {
  display: flex;
  gap: 8px;
}

.fs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.fs-dot.active {
  background: #e67e22;
  transform: scale(1.4);
}

/* ===================== LEFT ITEMS ===================== */
.fs-item {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 16px 0;
}

.fs-item-inner {
  padding-left: 28px;
  border-left: 3px solid #1e3a5f;
  transition: border-color 0.4s ease;
}

.fs-item.active .fs-item-inner {
  border-left-color: #e67e22;
}

.fs-number {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #e67e22;
  letter-spacing: 2px;
  margin-bottom: 12px;
  opacity: 0.4;
  transition: opacity 0.4s ease;
}

.fs-item.active .fs-number {
  opacity: 1;
}

.fs-title {
  font-size: 30px;
  font-weight: 800;
  color: #2a3a50;
  margin-bottom: 16px;
  line-height: 1.3;
  transition: color 0.4s ease;
}

.fs-item.active .fs-title {
  color: #ffffff;
}

.fs-desc {
  font-size: 14px;
  color: #1e2e40;
  line-height: 1.8;
  margin-bottom: 24px;
  transition: color 0.4s ease;
  max-width: 400px;
}

.fs-item.active .fs-desc {
  color: #8a9baf;
}

.fs-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.fs-stat-value {
  font-size: 42px;
  font-weight: 900;
  color: #1a2a40;
  line-height: 1;
  transition: color 0.5s ease, opacity 0.5s ease;
  opacity: 0.2;
}

.fs-item.active .fs-stat-value {
  color: #e67e22;
  opacity: 1;
}

.fs-stat-label {
  font-size: 13px;
  color: #8a9baf;
  font-weight: 500;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
  .fs-wrapper {
    flex-direction: column;
    padding: 40px 20px;
  }

  .fs-left,
  .fs-right {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .fs-right {
    position: sticky;
    top: 0;
    height: 50vh;
    z-index: 10;
  }

  .fs-image-wrap {
    height: 240px;
  }

  .fs-item {
    min-height: 60vh;
  }

  .fs-title {
    font-size: 22px;
  }
}

/* ===================== BESPOKE SECTION ===================== */
.bespoke-section {
  background-color: #f0f2f5;
  padding: 80px 0 90px;
  font-family: 'Segoe UI', sans-serif;
}

.bespoke-title {
  font-size: 42px;
  font-weight: 800;
  color: #0d1b2e;
  margin-bottom: 14px;
}

.bespoke-subtitle {
  font-size: 16px;
  color: #6b7a8d;
  margin-bottom: 0;
}

/* ===================== CARD ===================== */
.bs-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 26px 34px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1.5px solid transparent;
  transition: transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
  cursor: pointer;
}

/* Bottom accent line — hidden by default */
.bs-hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  border-radius: 0 0 16px 16px;
  transition: width 0.4s ease;
}

/* ===================== HOVER ===================== */
.bs-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
}

.bs-card:hover .bs-hover-line {
  width: 100%;
}

/* Per-color hover states */
.bs-card[data-color="teal"]:hover {
  border-color: #1abc9c;
  background: linear-gradient(160deg, #ffffff, #f0fdf9);
}

.bs-card[data-color="orange"]:hover {
  border-color: #e67e22;
  background: linear-gradient(160deg, #ffffff, #fff8f0);
}

.bs-card[data-color="purple"]:hover {
  border-color: #8e44ad;
  background: linear-gradient(160deg, #ffffff, #f8f0ff);
}

.bs-card[data-color="red"]:hover {
  border-color: #e74c3c;
  background: linear-gradient(160deg, #ffffff, #fff5f5);
}

/* Bottom line colors */
.bs-card[data-color="teal"] .bs-hover-line {
  background: linear-gradient(to right, #1abc9c, #16a085);
}

.bs-card[data-color="orange"] .bs-hover-line {
  background: linear-gradient(to right, #e67e22, #d35400);
}

.bs-card[data-color="purple"] .bs-hover-line {
  background: linear-gradient(to right, #8e44ad, #6c3483);
}

.bs-card[data-color="red"] .bs-hover-line {
  background: linear-gradient(to right, #e74c3c, #c0392b);
}

/* ===================== ICON ===================== */
.bs-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bs-card:hover .bs-icon-wrap {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* Icon color variants */
.bs-teal {
  background: #d4f4ee;
  color: #1abc9c;
}

.bs-orange {
  background: #fdebd0;
  color: #e67e22;
}

.bs-purple {
  background: #ebe8fd;
  color: #8e44ad;
}

.bs-red {
  background: #fde8e4;
  color: #e74c3c;
}

/* ===================== TEXT ===================== */
.bs-title {
  font-size: 17px;
  font-weight: 700;
  color: #0d1b2e;
  margin-bottom: 10px;
  line-height: 1.35;
  transition: color 0.3s ease;
}

.bs-card[data-color="teal"]:hover .bs-title {
  color: #16a085;
}

.bs-card[data-color="orange"]:hover .bs-title {
  color: #d35400;
}

.bs-card[data-color="purple"]:hover .bs-title {
  color: #6c3483;
}

.bs-card[data-color="red"]:hover .bs-title {
  color: #c0392b;
}

.bs-text {
  font-size: 13.5px;
  color: #6b7a8d;
  line-height: 1.7;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.bs-card:hover .bs-text {
  color: #4a5568;
}

/* ===================== CTA ===================== */
.bs-cta-text {
  font-size: 16px;
  font-weight: 600;
  color: #0d1b2e;
  margin-bottom: 20px;
}

.bs-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #e67e22;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 44px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  font-family: 'Segoe UI', sans-serif;
}

.bs-cta-btn:hover {
  background: #c0620f;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(230, 126, 34, 0.4);
}

.bs-cta-btn i {
  font-size: 12px;
}


/* ===================== RESULTS SECTION ===================== */
.results-section {
  background: #ffffff;
  padding: 80px 0 70px;
  font-family: 'Segoe UI', sans-serif;
}

.results-title {
  font-size: 40px;
  font-weight: 800;
  color: #0d1b2e;
  margin-bottom: 14px;
}

.results-subtitle {
  font-size: 16px;
  color: #6b7a8d;
  margin-bottom: 0;
}

/* ===================== SLIDER WRAPPER ===================== */
.results-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

/* ===================== ARROWS ===================== */
.results-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #e67e22;
  color: #ffffff;
  border: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(230, 126, 34, 0.35);
  z-index: 2;
}

.results-arrow:hover {
  background: #c0620f;
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(230, 126, 34, 0.5);
}

.results-arrow:disabled {
  background: #e0e0e0;
  color: #aaa;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

/* ===================== TRACK OUTER (overflow hidden) ===================== */
.results-track-outer {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
}

/* ===================== TRACK (flex row of slides) ===================== */
.results-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ===================== EACH SLIDE ===================== */
.results-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 4px 2px;
}

/* ===================== CARD ===================== */
.results-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1.5px solid #e8ecf0;
  padding: 44px 52px 48px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

/* ===================== CARD HEADER ===================== */
.rc-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.rc-logo-wrap {
  flex-shrink: 0;
}

.rc-logo-placeholder {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1.5px solid #e8ecf0;
  min-width: 80px;
}

.logo-text-red {
  color: #c0392b;
  font-size: 13px;
  font-weight: 800;
}

.logo-text-blue {
  color: #1a5276;
  font-size: 14px;
  font-weight: 800;
}

.logo-text-purple {
  color: #6c3483;
  font-size: 14px;
  font-weight: 800;
}

.logo-sub {
  font-size: 8px;
  color: #8a9baf;
  margin-top: 2px;
}

.bold {
  font-size: 15px !important;
}

.rc-company-name {
  font-size: 16px;
  font-weight: 700;
  color: #0d1b2e;
}

.rc-tag {
  background: #fff0e5;
  color: #e67e22;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid #fdd5b0;
}

/* ===================== CARD CONTENT ===================== */
.rc-case-title {
  font-size: 22px;
  font-weight: 800;
  color: #0d1b2e;
  margin-bottom: 20px;
  line-height: 1.4;
}

.rc-challenge,
.rc-solution {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 12px;
}

.rc-challenge strong,
.rc-solution strong {
  color: #0d1b2e;
}

/* ===================== STATS ===================== */
.rc-stats {
  display: flex;
  gap: 0;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid #eef0f3;
}

.rc-stat {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

/* Vertical divider between stats */
.rc-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: #eef0f3;
}

.rc-stat-value {
  display: block;
  font-size: 44px;
  font-weight: 900;
  color: #e67e22;
  line-height: 1.1;
  margin-bottom: 10px;
}

.rc-stat-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #6b7a8d;
  line-height: 1.4;
}

/* ===================== DOTS ===================== */
.results-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.rd {
  width: 28px;
  height: 5px;
  border-radius: 3px;
  background: #d0d5dd;
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
}

.rd.active {
  background: #e67e22;
  width: 44px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 767px) {
  .results-title {
    font-size: 26px;
  }

  .results-card {
    padding: 28px 20px 32px;
  }

  .rc-case-title {
    font-size: 18px;
  }

  .rc-stats {
    flex-direction: column;
    gap: 20px;
  }

  .rc-stat::after {
    display: none;
  }

  .rc-stat-value {
    font-size: 36px;
  }

  .results-arrow {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}


/* ===================== SECURITY SECTION ===================== */
.security-section {
  background: #0d1b2e;
  padding: 80px 0 90px;
  font-family: 'Segoe UI', sans-serif;
}

.sec-title {
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.sec-subtitle {
  font-size: 16px;
  color: #6b8aaa;
  margin-bottom: 0;
  letter-spacing: 0.3px;
}

/* ===================== CERT CARDS ===================== */
.sec-card {
  background: #162436;
  border-radius: 16px;
  padding: 40px 24px 36px;
  text-align: center;
  border: 1px solid #1e3a5f;
  height: 100%;
  transition: background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: default;
}

.sec-card:hover {
  background: #1a2e44;
  border-color: #1abc9c;
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(26, 188, 156, 0.12);
}

/* Icon */
.sec-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  border: 1.5px solid #1e3a5f;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 22px;
  color: #1abc9c;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.sec-card:hover .sec-card-icon {
  border-color: #1abc9c;
  background: rgba(26, 188, 156, 0.08);
}

.sec-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.sec-card-sub {
  font-size: 13px;
  color: #6b8aaa;
  margin: 0;
  letter-spacing: 0.3px;
}

/* ===================== FEATURE LIST ===================== */
.sec-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 15px;
  color: #c8d8e8;
  font-weight: 500;
}

.sec-check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #1abc9c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #1abc9c;
  flex-shrink: 0;
  /* inline-flex for <i> tag */
  display: inline-flex;
}

/* ===================== TRUST BANNER ===================== */
.sec-trust-banner {
  background: #162436;
  border: 1px solid #1e3a5f;
  border-radius: 14px;
  padding: 28px 40px;
  text-align: center;
}

.sec-trust-banner p {
  font-size: 15px;
  color: #8a9baf;
  margin: 0;
}

.sec-trust-link {
  color: #e67e22;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sec-trust-link:hover {
  color: #f39c12;
  text-decoration: underline;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 767px) {
  .sec-title {
    font-size: 26px;
  }

  .sec-card {
    padding: 28px 16px;
  }

  .sec-trust-banner {
    padding: 20px;
  }
}

/* ===================== CTA SECTION ===================== */
.cta-transform-section {
  background: #e67e22;
  padding: 80px 0 90px;
  font-family: 'Segoe UI', sans-serif;
}

/* Heading */
.cta-main-title {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.2;
}

.cta-main-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

/* ===================== PLAN CARD ===================== */
.cta-plan-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 44px 40px 40px;
  height: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

/* Plan title */
.cta-plan-title {
  font-size: 24px;
  font-weight: 800;
  color: #0d1b2e;
  margin-bottom: 28px;
  line-height: 1.3;
}

/* Feature list */
.cta-plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}

.cta-plan-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #4a5568;
  padding: 10px 0;
  border-bottom: 1px solid #f0f2f5;
  font-weight: 500;
}

.cta-plan-list li:last-child {
  border-bottom: none;
}

.cta-plan-list li i {
  color: #e67e22;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Button */
.cta-plan-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: #e67e22;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  font-family: 'Segoe UI', sans-serif;
  letter-spacing: 0.2px;
}

.cta-plan-btn:hover {
  background: #c0620f;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 98, 15, 0.4);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 767px) {
  .cta-main-title {
    font-size: 26px;
  }

  .cta-plan-card {
    padding: 30px 24px;
  }

  .cta-plan-title {
    font-size: 20px;
  }

  .cta-plan-btn {
    font-size: 14px;
    padding: 14px 20px;
  }
}